2
0
mirror of synced 2025-02-24 23:38:22 +00:00
mobile/example/ivy/android/app/build.gradle
Hana Kim 069be623eb example: update android examples to use 0.2.10 plugin
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>
2018-01-09 15:14:44 +00:00

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')
}