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