summaryrefslogtreecommitdiffstats
path: root/mathjaxandroid/build.gradle
diff options
context:
space:
mode:
authorThomas <tschneider.ac@gmail.com>2023-01-16 13:56:25 +0100
committerThomas <tschneider.ac@gmail.com>2023-01-16 13:56:25 +0100
commit458463088350ee148e711841a52174edc06c7b9a (patch)
treed143a15f5a8e186c3878760a26d83f9930edbdd9 /mathjaxandroid/build.gradle
parent72a79766b890c3168a4a995b92fabed25188b68a (diff)
do maths
Diffstat (limited to 'mathjaxandroid/build.gradle')
-rw-r--r--mathjaxandroid/build.gradle24
1 files changed, 24 insertions, 0 deletions
diff --git a/mathjaxandroid/build.gradle b/mathjaxandroid/build.gradle
new file mode 100644
index 000000000..8b6987f6d
--- /dev/null
+++ b/mathjaxandroid/build.gradle
@@ -0,0 +1,24 @@
+apply plugin: 'com.android.library'
+apply plugin: 'kotlin-android'
+android {
+ compileSdkVersion 33
+
+ defaultConfig {
+ minSdkVersion 8
+ targetSdkVersion 33
+ versionCode 2
+ versionName "0.2"
+ }
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ }
+ }
+}
+
+dependencies {
+ implementation fileTree(dir: 'libs', include: ['*.jar'])
+ implementation 'androidx.appcompat:appcompat:1.6.0'
+}
+