| apply plugin: 'com.android.application' | |
| repositories { | |
| flatDir { | |
| dirs '.' | |
| } | |
| } | |
| 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 'com.android.support:appcompat-v7:23.3.0' | |
| implementation (name:'ivy', ext:'aar') | |
| } |