1
|
apply plugin: 'com.android.application'
|
2
|
|
3
|
android {
|
4
|
compileSdkVersion 32
|
5
|
|
6
|
defaultConfig {
|
7
|
applicationId "org.distorted.examples"
|
8
|
minSdkVersion 21
|
9
|
targetSdkVersion 32
|
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
|
namespace 'org.distorted.examples'
|
21
|
}
|
22
|
|
23
|
dependencies {
|
24
|
api project(':distorted-library')
|
25
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
26
|
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
|
27
|
implementation 'com.google.android.material:material:1.7.0'
|
28
|
implementation project(path: ':distorted-objectlib')
|
29
|
implementation project(path: ':distorted-puzzle-jsons')
|
30
|
}
|