Also, modernize the build.gradle configurations to work with recent Android plugin (>=3.0.0) https://developer.android.com/studio/build/gradle-plugin-3-0-0-migration.html Update golang/go#21594 Change-Id: Ic2162db7367b60ad873149ab62767f36481fa80f Reviewed-on: https://go-review.googlesource.com/86795 Reviewed-by: Elias Naur <elias.naur@gmail.com>
27 lines
625 B
Groovy
27 lines
625 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
defaultConfig {
|
|
applicationId 'org.golang.ivy'
|
|
minSdkVersion 15
|
|
targetSdkVersion 23
|
|
versionCode 3
|
|
versionName '1.0.2'
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
productFlavors {
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'com.android.support:appcompat-v7:23.3.0'
|
|
implementation project(':ivy')
|
|
}
|