forked from cweiske/louyapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
39 lines (34 loc) · 807 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
apply plugin: 'com.android.application'
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.3"
}
}
android {
compileSdk 32
defaultConfig {
applicationId "de.cweiske.ouya.louyapi"
minSdk 16
targetSdk 32
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_6
targetCompatibility JavaVersion.VERSION_1_6
}
compileSdkVersion 16
}
if (project.hasProperty("signingconfigfile")
&& new File(project.property("signingconfigfile")).exists()) {
apply from: project.property("signingconfigfile");
}