Is there any specific need to use the version of libraries in the dependencies for graddle on Android? At the moment the heyzap library requires 9.4.0 of the play-services library.
then the whole graddle build crashes with transformClassesWithDexForDebug error. Even multidex or Google-Support library installed don't help in that case.
The fix is to use + instead of version for the dependencies in the graddle project. I'll post a pull request for this but if there's a serious reason, please explain.
Is there any specific need to use the version of libraries in the dependencies for graddle on Android? At the moment the heyzap library requires 9.4.0 of the play-services library.
src: https://github.com/Heyzap/heyzap-cordova/blob/master/src/android/heyzap.gradle
If a project uses different plugins with for example such a project property:
then the whole graddle build crashes with
transformClassesWithDexForDebug
error. Even multidex or Google-Support library installed don't help in that case.The fix is to use + instead of version for the dependencies in the graddle project. I'll post a pull request for this but if there's a serious reason, please explain.