|
1 | 1 | plugins { |
2 | | - alias(libs.plugins.android.application) |
3 | | - alias(libs.plugins.kotlin.android) |
4 | | - alias(libs.plugins.kotlin.compose) |
| 2 | + alias(libs.plugins.com.android.application) |
| 3 | + alias(libs.plugins.org.jetbrains.kotlin.android) |
| 4 | + alias(libs.plugins.jetpack.compose.compiler) |
| 5 | + alias(libs.plugins.tuk.android.application) |
| 6 | + alias(libs.plugins.tuk.android.application.compose) |
5 | 7 | } |
6 | 8 |
|
7 | 9 | android { |
8 | 10 | namespace = "com.plottwist.tuk" |
9 | | - compileSdk = 36 |
10 | | - |
11 | | - defaultConfig { |
12 | | - applicationId = "com.plottwist.tuk" |
13 | | - minSdk = 26 |
14 | | - targetSdk = 36 |
15 | | - versionCode = 1 |
16 | | - versionName = "1.0" |
17 | | - |
18 | | - testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" |
19 | | - } |
20 | | - |
21 | | - buildTypes { |
22 | | - release { |
23 | | - isMinifyEnabled = false |
24 | | - proguardFiles( |
25 | | - getDefaultProguardFile("proguard-android-optimize.txt"), |
26 | | - "proguard-rules.pro" |
27 | | - ) |
28 | | - } |
29 | | - } |
30 | | - compileOptions { |
31 | | - sourceCompatibility = JavaVersion.VERSION_11 |
32 | | - targetCompatibility = JavaVersion.VERSION_11 |
33 | | - } |
34 | | - kotlinOptions { |
35 | | - jvmTarget = "11" |
36 | | - } |
37 | | - buildFeatures { |
38 | | - compose = true |
39 | | - } |
40 | 11 | } |
41 | 12 |
|
42 | 13 | dependencies { |
43 | | - |
44 | | - implementation(libs.androidx.core.ktx) |
45 | | - implementation(libs.androidx.lifecycle.runtime.ktx) |
46 | | - implementation(libs.androidx.activity.compose) |
47 | | - implementation(platform(libs.androidx.compose.bom)) |
48 | | - implementation(libs.androidx.ui) |
49 | | - implementation(libs.androidx.ui.graphics) |
50 | | - implementation(libs.androidx.ui.tooling.preview) |
51 | | - implementation(libs.androidx.material3) |
52 | 14 | testImplementation(libs.junit) |
53 | | - androidTestImplementation(libs.androidx.junit) |
54 | | - androidTestImplementation(libs.androidx.espresso.core) |
55 | | - androidTestImplementation(platform(libs.androidx.compose.bom)) |
56 | | - androidTestImplementation(libs.androidx.ui.test.junit4) |
57 | | - debugImplementation(libs.androidx.ui.tooling) |
58 | | - debugImplementation(libs.androidx.ui.test.manifest) |
59 | 15 | } |
0 commit comments