From 88ce99d87889cdf953af611ef09d7a12b6d23747 Mon Sep 17 00:00:00 2001 From: Eddy Pedroni Date: Tue, 30 Dec 2025 10:13:11 +0100 Subject: Add Android app wrapper around web interface --- android/app/build.gradle.kts | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 android/app/build.gradle.kts (limited to 'android/app/build.gradle.kts') diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts new file mode 100644 index 0000000..2d7d091 --- /dev/null +++ b/android/app/build.gradle.kts @@ -0,0 +1,42 @@ +plugins { + alias(libs.plugins.android.application) +} + +android { + namespace = "com.zeroxf7.solotool" + compileSdk { + version = release(36) + } + + defaultConfig { + applicationId = "com.zeroxf7.solotool" + minSdk = 31 + targetSdk = 36 + versionCode = 1 + versionName = "1.0" + + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + } + + buildTypes { + release { + isMinifyEnabled = false + proguardFiles( + getDefaultProguardFile("proguard-android-optimize.txt"), + "proguard-rules.pro" + ) + } + } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_11 + targetCompatibility = JavaVersion.VERSION_11 + } +} + +dependencies { + implementation(libs.appcompat) + implementation(libs.material) + testImplementation(libs.junit) + androidTestImplementation(libs.ext.junit) + androidTestImplementation(libs.espresso.core) +} \ No newline at end of file -- cgit v1.2.3