For golang/go#15554 Also update app target sdk api to 23. Change-Id: Id66b17b4388703e9806cc50def554b3c58606e24 Reviewed-on: https://go-review.googlesource.com/23690 Reviewed-by: David Crawshaw <crawshaw@golang.org> Reviewed-by: Elias Naur <elias.naur@gmail.com>
28 lines
635 B
Groovy
28 lines
635 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.3"
|
|
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 {
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
compile 'com.android.support:appcompat-v7:23.3.0'
|
|
compile project(':ivy')
|
|
}
|