-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathbuild.gradle
64 lines (56 loc) · 1.54 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
buildscript {
repositories {
google()
mavenCentral()
maven { url "https://repo.maven.apache.org/maven2" }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.2'
}
}
apply plugin: 'com.android.application'
repositories {
mavenCentral()
maven { url "https://maven.google.com" }
}
android {
namespace 'eu.mrogalski.saidit'
compileSdk 34
defaultConfig{
applicationId "eu.mrogalski.saidit"
minSdk 21
targetSdk 34
versionCode 14
versionName "1.3.39"
}
signingConfigs {
release {
storeFile file("<relative path>")
storePassword "<fill in>"
keyAlias "<fill in>"
keyPassword "<fill in>"
}
}
buildTypes {
release {
minifyEnabled true
proguardFile file('proguard.cfg')
proguardFile getDefaultProguardFile('proguard-android-optimize.txt')
signingConfig signingConfigs.release
}
debug {
//signingConfig signingConfigs.release
}
}
lintOptions {
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}
}
dependencies {
implementation fileTree(dir: 'libs', include: '*.jar')
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.nineoldandroids:library:2.4.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
}