1
|
apply plugin: 'com.android.application'
|
2
|
|
3
|
android {
|
4
|
compileSdkVersion 29
|
5
|
|
6
|
defaultConfig {
|
7
|
applicationId "org.distorted.examples"
|
8
|
minSdkVersion 21
|
9
|
targetSdkVersion 29
|
10
|
versionCode 1
|
11
|
versionName "1.0"
|
12
|
}
|
13
|
|
14
|
buildTypes {
|
15
|
release {
|
16
|
minifyEnabled false
|
17
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
18
|
}
|
19
|
}
|
20
|
}
|
21
|
|
22
|
dependencies {
|
23
|
api project(':distorted-library')
|
24
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
25
|
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
|
26
|
implementation 'com.google.android.material:material:1.1.0'
|
27
|
}
|