Added drag and drop to Android

This commit is contained in:
2025-12-08 12:55:55 -07:00
parent c836a18d7c
commit 5e815353cb
24 changed files with 241 additions and 19 deletions

View File

@@ -1,3 +1,5 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.kotlin.android)
@@ -13,8 +15,8 @@ android {
applicationId = "com.atridad.magiccounter"
minSdk = 31
targetSdk = 36
versionCode = 2
versionName = "1.2.0"
versionCode = 3
versionName = "1.3.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
@@ -34,9 +36,7 @@ android {
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "17"
}
kotlin { compilerOptions { jvmTarget.set(JvmTarget.JVM_17) } }
java {
toolchain {