First version that starts a permanently running HTTP server
[louyapi.git] / build.gradle
diff --git a/build.gradle b/build.gradle
new file mode 100644 (file)
index 0000000..ec8dcb7
--- /dev/null
@@ -0,0 +1,34 @@
+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
+}