github.com/SahandAslani/gomobile@v0.0.0-20210909130135-2cb2d44c09b2/example/ivy/android/app/build.gradle (about) 1 apply plugin: 'com.android.application' 2 3 repositories { 4 flatDir { 5 dirs '.' 6 } 7 } 8 9 android { 10 compileSdkVersion 23 11 defaultConfig { 12 applicationId 'org.golang.ivy' 13 minSdkVersion 15 14 targetSdkVersion 23 15 versionCode 3 16 versionName '1.0.2' 17 } 18 buildTypes { 19 release { 20 minifyEnabled true 21 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 22 } 23 } 24 productFlavors { 25 } 26 } 27 28 dependencies { 29 implementation 'com.android.support:appcompat-v7:23.3.0' 30 implementation (name:'ivy', ext:'aar') 31 }