pbakondy / cordova-plugin-sim

:cherries: A cordova plugin to get the device's SIM data (carrier name, mcc mnc, country code, telephonenumber, etc)
MIT License
163 stars 100 forks source link

Empty window.plugins within Phonegap Developer App #12

Closed ghost closed 8 years ago

ghost commented 8 years ago

I did cordova plugin add cordova-plugin-sim and it was successfully installed without any errors.

But inside my project window.plugins.sim does not exist.

There is only a window.plugins.insomnia which seems to be empty.

Do i have to add some other configuration?

pbakondy commented 8 years ago

No other configuration needed. The object should exist, I could not reproduce the error. What is your environment? Android / iOS?

ghost commented 8 years ago

It works when i run the app with Android Studio on my phone and in the released apk it works fine too. It just does not work with phonegap serve and the Phonegap Android Developer App (wich is very practical, except a missing JavaScript debugger). Other plugins like sim do not work too there. One of many unnecessary problems you get into when you start with phonegap :/

pbakondy commented 8 years ago

Why are you expecting to have sim data when you run your app in browser? Do a platform check and use it only on Android.

ghost commented 8 years ago

Not in browser, it runs on the phone within Phonegap Developer App. Some plugins work (like access phone contacts) and some do not.

pbakondy commented 8 years ago

Can you tell me what is the return value of the cordova device plugin?

ghost commented 8 years ago

[phonegap] [console.log] { available: true, platform: 'Android', version: '5.1.1', uuid: 'aaa57b0bf3ed728', cordova: '4.1.1', model: 'SM-G903F', manufacturer: 'samsung' }

pbakondy commented 8 years ago

This plugin will not work with PhoneGap Developer App. There is a predefined list of supported plugins for this tester application: http://docs.phonegap.com/references/developer-app/troubleshoot-faq/

If you're using a plugin in your project that is not shown in this list, it will not work with the PhoneGap Developer App out of the box. However, you can create your own custom build of the PhoneGap Developer app locally and include any other plugins there. We recommend always checking for the existence of any plugin in your code first before using it to avoid errors in testing in general.

If you are using PhoneGap CLI I would recommend using the following commands (requires connecting your device with USB cable):

phonegap platform add android
phonegap run android
ghost commented 8 years ago

The run android is not working with usb but usb is working with android studio. big thanx for your explanations!