-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (38 loc) · 917 Bytes
/
build.gradle
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
31
32
33
34
35
36
37
38
39
40
41
42
43
apply plugin: 'com.android.application'
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
}
}
allprojects {
repositories {
jcenter()
google()
}
}
android {
compileSdkVersion 30
defaultConfig {
applicationId "gms.angusgaming.anguspaint"
minSdkVersion 19
targetSdkVersion 30
versionCode 3
versionName "0.3"
}
compileOptions {
targetCompatibility = 1.8
sourceCompatibility = 1.8
}
buildToolsVersion = '29.0.2'
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.13.1'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.github.yukuku:ambilwarna:2.0.1'
}