Better fix for Fix NanoHTTP 2.3.1 bug "BAD REQUEST"...
[louyapi.git] / build.gradle
1 apply plugin: 'com.android.application'
2
3 buildscript {
4     repositories {
5         google()
6         mavenCentral()
7     }
8     dependencies {
9         classpath "com.android.tools.build:gradle:7.0.3"
10     }
11 }
12
13 android {
14     compileSdk 32
15
16     defaultConfig {
17         applicationId "de.cweiske.ouya.louyapi"
18         minSdk 16
19         targetSdk 32
20         versionCode 1
21         versionName "1.0"
22     }
23
24     buildTypes {
25         release {
26             minifyEnabled false
27         }
28     }
29     compileOptions {
30         sourceCompatibility JavaVersion.VERSION_1_6
31         targetCompatibility JavaVersion.VERSION_1_6
32     }
33     compileSdkVersion 16
34 }
35
36 if (project.hasProperty("signingconfigfile")
37     && new File(project.property("signingconfigfile")).exists()) {
38     apply from: project.property("signingconfigfile");
39 }