المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : تركيب / حذف / استخدام بلجن cordova plugin - الكوردوفا و الفون جاب



Rise Company
25-07-2017, 14:12
تثبيت / حذف / تفعيل / اشهر بلجن cordova plugin - الكوردوفا و الفون جاب
الكوردوفا و الفون جاب Phone Gap / Cordova

لتركيب اى خاصية تريدها لتطبيقك سيتطلب اضافة بلجن plugin فهناك اكثر من 2500 اضافة

مكتبة بلجن كوردوفا هنا cordova plugins (https://cordova.apache.org/plugins/) , مكتبة بلجن فون جاب هنا phonegap-plugins (http://phonegap-plugins.com/platforms/)

تثبيت بلجن install plugin:


cordova plugin add <nameplugin>

حذف بلجن remove plugin:


cordova plugin rm <nameplugin>

لكل اضافه اسم خاص بها يمكنك استخدم هذا الاسم فى تركيب الاضافه ولكل اضافه كود وطريقه تنفيذ من الممكن ان تختلف عن الاخرى , بمجرد تركيب الاضافه واستخدام api في كود javascript

تفعيل بلجن function plugin:

تعتمد على الجاف سكربت javascript , تاكد اولا من وجود الكود التالى داخل ملف index.html
السطر الاول للاتصال بمكتبة كوردوفا و الثانى جميع الفنكشن function تضع داخله



<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript" src="cordova.js"></script>

ملحوظة هامة : يرجى مراعاه ترتيب الكود حيث يوضع سطر cordova.js فى اخر سطور <script> حتى يعمل.

كلاهما يجب ان يكونوا داخل اى مشروع.

اشهر البلجن Plugins

Battery Status (https://github.com/apache/cordova-plugin-battery-status)
Camera (https://github.com/apache/cordova-plugin-camera)
Contacts (https://github.com/apache/cordova-plugin-contacts)
Device Info (https://github.com/apache/cordova-plugin-device)
Device Motion (accelerometer) (https://github.com/apache/cordova-plugin-device-motion)
Device Orientation (compass) (https://github.com/apache/cordova-plugin-device-orientation)
Dialogs (notification) (https://github.com/apache/cordova-plugin-dialogs)
File (https://github.com/apache/cordova-plugin-file)
File Transfer (https://github.com/apache/cordova-plugin-file-transfer)
Geolocation (https://github.com/apache/cordova-plugin-geolocation)
Globalization (https://github.com/apache/cordova-plugin-globalization)
InAppBrowser (https://github.com/apache/cordova-plugin-inappbrowser)
Media (https://github.com/apache/cordova-plugin-media)
Media Capture (https://github.com/apache/cordova-plugin-media-capture)
Network Information (https://github.com/apache/cordova-plugin-network-information)
Splash Screen (https://github.com/apache/cordova-plugin-splashscreen)
Status Bar (https://github.com/apache/cordova-plugin-statusbar)
Whitelist (https://github.com/apache/cordova-plugin-whitelist)
Vibration

(https://github.com/apache/cordova-plugin-vibration)جميع الاكواد فى المرفقات