We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Generator will manage phonegap integration
grunt.loadNpmTasks('grunt-contrib-compress'); grunt.loadNpmTasks('grunt-shell'); grunt.loadNpmTasks('grunt-phonegap-build');
compress: { bin: { options: { archive: 'dist/upload.zip' }, files: [ {src: ['config.xml'], dest: '.'}, {expand : true, cwd: 'bin/', src: ['**/*.*'], dest: '.'} ] }, build: { options: { archive: 'dist/upload.zip' }, files: [ {src: ['config.xml'], dest: '.'}, {expand : true, cwd: 'build/', src: ['**/*.*'], dest: '.'} ] } }, "phonegap-build": { release: { options: { archive: "dist/upload.zip", "appId": "<%=credential.phonegap.appId %>", "user": { "token": "<%=credential.phonegap.token %>" },keys: { ios: { "password": "<%=credential.phonegap.keys.ios.password %>" }, android: { "key_pw": "<%=credential.phonegap.keys.android.key_pw %>", "keystore_pw": "<%=credential.phonegap.keys.android.keystore_pw %>" } }, download: { //ios: './dist/app.ipa', android: './dist/app.apk' }, pollRate : 10 } } }, shell: { install: { options: { stderr: true }, command: [ 'adb install -r ./dist/app.apk' ].join('&&') }, androidLog: { options: { stderr: true }, command: [ 'adb logcat CordovaLog:* GCMBaseIntentService:* GCMBroadcastReceiver:* PluginManager:* *:S' ].join('&&') } },
{ "phonegap": { "appId": "", "token": "", "keys": { "ios": { "password": "" }, "android": { "key_pw": "", "keystore_pw": "" } } }
Add config.xml
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Generator will manage phonegap integration
package.json
Gruntfile.js
grunt.loadNpmTasks('grunt-contrib-compress');
grunt.loadNpmTasks('grunt-shell');
grunt.loadNpmTasks('grunt-phonegap-build');
Credential.json
Config.xml
Add config.xml
The text was updated successfully, but these errors were encountered: