-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Usage plugin on mac #4
Comments
Hi @valix85, |
Can you tell me about what can i do with config.xml file? Can you post me a
|
Config.xml is not related to this issue, you need to register plugin there if you use PhoneGap Build. Unfortunately, I don't have a demo app, sorry. |
Hi, can i insert and use plugin in my phonegap app?
I create a new app in phonegap with command line
-> phonegap create app6
in this folder (->cd app6) i have installed your plugin with command line
-> phonegap plugin add https://github.com/Paldom/UniqueDeviceID.git
(in all phonegap framework, not in local)
then i have edit index.html stored in www folder.
After script cordova.js , afeter script js/index.js and afer app.inizialize(); i wrote this (always into script tags):
function success(uuid){
alert(uuid);
};
window.plugins.uniqueDeviceID.get(success, fail);
i save and run with:
-> phonegap run ios
simulator start on mac, app start and device ready blink, but anything do about uuid.
Can i do for use your plugin ?
thank you very much
The text was updated successfully, but these errors were encountered: