VERY IMPORTANT: If your version of Cordova is lower than 6.0.0, you will be unable to install more than one application with Pushwoosh plugin on the same Android device:
https://code.google.com/p/analytics-issues/issues/detail?id=784As a workaround you can add the following code to your
build.gradle:android { defaultConfig.applicationId = "your.package.id" }This bug was fixed in Cordova 6.0.0.
--
-- You received this message because you are subscribed to the Google
Groups "phonegap" group.
To post to this group, send email to phon...@googlegroups.com
To unsubscribe from this group, send email to
phonegap+u...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/phonegap?hl=en?hl=en
For more info on PhoneGap or to download the code go to www.phonegap.com
---
You received this message because you are subscribed to the Google Groups "phonegap" group.
To unsubscribe from this group and stop receiving emails from it, send an email to phonegap+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to a topic in the Google Groups "phonegap" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/phonegap/bIef9FU1RJY/unsubscribe.
To unsubscribe from this group and all its topics, send an email to phonegap+u...@googlegroups.com.
If you need to customize build.gradle, rather than edit directly, you should create
a sibling file named build-extras.gradle. This file will be included by the main
build.gradle when present. Here's an example:
# Example build-extras.gradle
# This file is included at the beginning of `build.gradle`
ext.cdvDebugSigningPropertiesFile = '../../android-debug-keys.properties'
# When set, this function allows code to run at the end of `build.gradle`
ext.postBuildExtras = {
android.buildTypes.debug.applicationIdSuffix = '.debug'
}Note that plugins can also include build-extras.gradle files via:
<framework src="some.gradle" custom="true" type="gradleReference" />So you can try that or create a simple plugin that doesn't have any code, just the gradleReference part.
android {But doesn't seem to be setting the parameter at all. Probably doing something wrong on my end...
defaultConfig.applicationId = "com.typeform.antelope"
}