diff options
author | Przemyslaw <prymula76@outlook.com> | 2024-04-18 18:46:24 +0200 |
---|---|---|
committer | Przemyslaw <prymula76@outlook.com> | 2024-04-18 18:46:24 +0200 |
commit | 11818054364b6248be8ff092d2914598f1081dc5 (patch) | |
tree | 361ab82dcba66f79a7cd4f911dc0873a0bf0632a /android/SameGame/app/build.gradle.kts |
Init
Diffstat (limited to 'android/SameGame/app/build.gradle.kts')
-rw-r--r-- | android/SameGame/app/build.gradle.kts | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/android/SameGame/app/build.gradle.kts b/android/SameGame/app/build.gradle.kts new file mode 100644 index 0000000..f5be856 --- /dev/null +++ b/android/SameGame/app/build.gradle.kts @@ -0,0 +1,71 @@ +plugins { + alias(libs.plugins.androidApplication) + alias(libs.plugins.jetbrainsKotlinAndroid) +} + +android { + namespace = "com.example.samegame" + compileSdk = 34 + + defaultConfig { + applicationId = "com.example.samegame" + minSdk = 24 + targetSdk = 34 + versionCode = 1 + versionName = "1.0" + + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + vectorDrawables { + useSupportLibrary = true + } + } + + buildTypes { + release { + isMinifyEnabled = 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" + } + buildFeatures { + compose = true + } + composeOptions { + kotlinCompilerExtensionVersion = "1.5.1" + } + packaging { + resources { + excludes += "/META-INF/{AL2.0,LGPL2.1}" + } + } +} + +dependencies { + + implementation(libs.androidx.core.ktx) + implementation(libs.androidx.lifecycle.runtime.ktx) + implementation(libs.androidx.activity.compose) + implementation(platform(libs.androidx.compose.bom)) + implementation(libs.androidx.ui) + implementation(libs.androidx.ui.graphics) + implementation(libs.androidx.ui.tooling.preview) + implementation(libs.androidx.material3) + implementation("androidx.cardview:cardview:1.0.0") + implementation("androidx.constraintlayout:constraintlayout:2.2.0-alpha13") + // To use constraintlayout in compose + implementation("androidx.constraintlayout:constraintlayout-compose:1.1.0-alpha13") + testImplementation(libs.junit) + androidTestImplementation(libs.androidx.junit) + androidTestImplementation(libs.androidx.espresso.core) + androidTestImplementation(platform(libs.androidx.compose.bom)) + androidTestImplementation(libs.androidx.ui.test.junit4) + debugImplementation(libs.androidx.ui.tooling) + debugImplementation(libs.androidx.ui.test.manifest) + +}
\ No newline at end of file |