1
0
Fork 0
golang-golang-x-mobile/example/ivy/android/app/build.gradle

26 lines
560 B
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
android {
compileSdkVersion 30
defaultConfig {
applicationId 'org.golang.ivy'
minSdkVersion 15
targetSdkVersion 30
versionCode 4
versionName '1.4.0'
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation files('ivy.aar')
}