-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
56 lines (49 loc) · 1.49 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
apply plugin: 'com.android.application'
android {
compileSdk 35
buildToolsVersion = '35.0.0'
defaultConfig {
applicationId 'de.kaiserdragon.iconrequest'
vectorDrawables.generatedDensities = []
minSdkVersion 23
targetSdk 35
versionName '2.5.6'
versionCode 28
}
dependenciesInfo {
// Disables dependency metadata when building APKs.
includeInApk = false
// Disables dependency metadata when building Android App Bundles.
includeInBundle = false
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {}
applicationVariants.all{
variant ->
variant.outputs.each{
output ->
def name ="IconRequest-v${variant.versionName}.apk"
output.outputFileName=name
}
}
}
compileOptions {
encoding = 'UTF-8'
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
namespace 'de.kaiserdragon.iconrequest'
buildFeatures {
buildConfig true
}
}
dependencies {
implementation 'androidx.annotation:annotation:1.9.1'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.core:core:1.15.0'
implementation 'com.google.android.material:material:1.12.0'
}