I have 2 Android apps with 5 Android modules (Android library project). Total 7 Eclipse projects. I want to enable Gradle build for them. I added build.gradle
i
You can use your build.gradle
in root, or you can define some values in gradle.properties
in root folder to achieve your scope.
For example:
root/build.gradle
:
ext {
compileSdkVersion = 19
buildToolsVersion = "19.0.3"
}
module/build.gradle
:
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
}
OR using properties
root/gradle.properties
:
VERSION_NAME=1.0.1
VERSION_CODE=11
module/build.gradle
:
android {
defaultConfig {
versionName project.VERSION_NAME
versionCode Integer.parseInt(project.VERSION_CODE)
}