diff options
| author | Eddy Pedroni <epedroni@pm.me> | 2025-12-30 10:13:11 +0100 |
|---|---|---|
| committer | Eddy Pedroni <epedroni@pm.me> | 2025-12-30 10:13:11 +0100 |
| commit | 88ce99d87889cdf953af611ef09d7a12b6d23747 (patch) | |
| tree | e998849e710adaf1da5410096f1b3408784658d4 /android/app/build.gradle.kts | |
| parent | c77a8b5fb6a86dae2c9a97796067a5740e112a0d (diff) | |
Add Android app wrapper around web interface
Diffstat (limited to 'android/app/build.gradle.kts')
| -rw-r--r-- | android/app/build.gradle.kts | 42 |
1 files changed, 42 insertions, 0 deletions
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 |
