forked from Minecraft/blocktopograph
24 lines
600 B
Groovy
24 lines
600 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
targetSdkVersion 29
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
namespace 'com.qozix.tileview'
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'androidx.annotation:annotation:1.0.2'
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
|
testImplementation 'junit:junit:4.12'
|
|
}
|