diff options
| author | Claudomator Agent <agent@claudomator> | 2026-03-10 08:55:00 +0000 |
|---|---|---|
| committer | Claudomator Agent <agent@claudomator> | 2026-03-10 08:55:00 +0000 |
| commit | 1541a823312a55cb42625265d08ea77f92c0f926 (patch) | |
| tree | 16a0b9678c5d50f615dd79ba31af9cea1c832a3e /android-app/app | |
chore: initial commit
Diffstat (limited to 'android-app/app')
| -rw-r--r-- | android-app/app/build.gradle | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/android-app/app/build.gradle b/android-app/app/build.gradle new file mode 100644 index 0000000..968b305 --- /dev/null +++ b/android-app/app/build.gradle @@ -0,0 +1,58 @@ +plugins { + id 'com.android.application' + id 'org.jetbrains.kotlin.android' +} + +android { + namespace 'com.example.androidapp' + compileSdk 34 + + defaultConfig { + applicationId "com.example.androidapp" + minSdk 24 + targetSdk 34 + versionCode 1 + versionName "1.0" + + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + + kotlinOptions { + jvmTarget = '1.8' + } + + sourceSets { + main { + kotlin.srcDirs = ['src/main/kotlin', 'src/main/java'] + } + test { + kotlin.srcDirs = ['src/test/kotlin', 'src/test/java'] + } + androidTest { + kotlin.srcDirs = ['src/androidTest/kotlin', 'src/androidTest/java'] + } + } +} + +dependencies { + implementation 'androidx.core:core-ktx:1.12.0' + implementation 'androidx.appcompat:appcompat:1.6.1' + implementation 'com.google.android.material:material:1.11.0' + implementation 'androidx.constraintlayout:constraintlayout:2.1.4' + + testImplementation 'junit:junit:4.13.2' + androidTestImplementation 'androidx.test.ext:junit:1.1.5' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' +} |
