android-multiple-image-picker
android-multiple-image-picker copied to clipboard
Error after adding module to my project
Hi,
After adding this module to my project I'm getting a gradle error:
"Build script error unsupported gradle dsl method was found release()" you can see my question on StackOverflow: http://stackoverflow.com/questions/24990837/build-script-error-unsupported-gradle-dsl-method-was-found-release
Hi eitangabay, I've tried modifying like this, and it works:
- release { - runProguard false - proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' + }
This is my temporary fix only. I'm using gradle 2.2.1 on Mac OS X 10.10.1. Yet, I'm still debugging how to integrate this into my android application project. The gradle successfully built an apk but seems that the class com/giljulio/imagepicker/ui/ImagePickerActivity is still not found. Regards, Simon