apply plugin: 'com.android.library' | |
apply plugin: 'kotlin-android' | |
android { | |
compileSdkVersion 18 | |
defaultConfig { | |
minSdkVersion 9 | |
targetSdkVersion 16 | |
versionCode 1 | |
versionName "1.0" | |
} | |
buildTypes { | |
release { | |
minifyEnabled false | |
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.txt' | |
consumerProguardFiles "other.pro" | |
} | |
} | |
} | |
dependencies { | |
implementation 'androidx.appcompat:appcompat:1.0.2' | |
api fileTree(dir: 'libs', include: ['*.jar']) | |
} |