-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
42 lines (37 loc) · 898 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
apply plugin: 'com.android.application'
// only required because aapt2 is not found otherwise
// - see https://stackoverflow.com/a/50290877/282601
allprojects {
repositories {
google()
mavenCentral()
}
}
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.2'
}
}
android {
namespace 'de.cweiske.headphoneindicator'
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
res.srcDirs = ['res']
}
}
defaultConfig {
minSdkVersion 19
compileSdkVersion 34
targetSdkVersion 34
}
}
if (project.hasProperty("signingconfigfile")
&& new File(project.property("signingconfigfile")).exists()) {
apply from: project.property("signingconfigfile")
}