From cfd30aa14ee9f4f5a3df31c38141ca4cc60d3564 Mon Sep 17 00:00:00 2001
From: Herbert Reiter <4941275-moasda@users.noreply.gitlab.com>
Date: Sat, 4 Jan 2020 19:43:49 +0100
Subject: [PATCH] Initial check-in
---
app/app.iml | 2 +-
app/build.gradle | 33 +++++++++++++++++++++++++++++++++
2 files changed, 34 insertions(+), 1 deletion(-)
create mode 100644 app/build.gradle
diff --git a/app/app.iml b/app/app.iml
index 6e42112..52b816e 100644
--- a/app/app.iml
+++ b/app/app.iml
@@ -92,7 +92,6 @@
-
@@ -129,5 +128,6 @@
+
\ No newline at end of file
diff --git a/app/build.gradle b/app/build.gradle
new file mode 100644
index 0000000..df01dd5
--- /dev/null
+++ b/app/build.gradle
@@ -0,0 +1,33 @@
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion 29 // 29 = Android 10
+ defaultConfig {
+ applicationId "net.moasdawiki.app"
+ minSdkVersion 26 // 26 = Oreo 8.0
+ targetSdkVersion 29 // should be same as compileSdkVersion
+ versionCode 14
+ versionName "2.1.0.0"
+ archivesBaseName = "moasdawiki-" + versionName + "-" + versionCode
+ }
+ sourceSets {
+ main{
+ java {
+ exclude "net/moasdawiki/plugin/sync/SynchronizationPlugin*"
+ }
+ }
+ }
+ compileOptions {
+ sourceCompatibility = 1.8
+ targetCompatibility = 1.8
+ }
+}
+
+dependencies {
+ implementation 'net.moasdawiki:moasdawiki-server:2.1.0'
+ implementation fileTree(include: ['*.jar'], dir: 'libs')
+ implementation 'androidx.appcompat:appcompat:1.1.0'
+ implementation 'androidx.preference:preference:1.1.0'
+ compileOnly 'org.jetbrains:annotations:18.0.0'
+ testImplementation 'org.testng:testng:6.14.3'
+}