blob: 14f5614e67a7593210aa5b869a2d3394ebb30540 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
buildscript {
repositories {
jcenter()
}
}
apply plugin: 'com.android.library'
dependencies {
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
}
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
minSdkVersion 18
targetSdkVersion 28
}
buildTypes {
release {
zipAlignEnabled true
minifyEnabled true
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
|