| plugins { |
| alias(libs.plugins.androidApplication) |
| alias(libs.plugins.kotlinAndroid) |
| alias(libs.plugins.composeCompiler) |
| } |
| |
| android { |
| namespace = "com.example.myapplication2" |
| compileSdk = 33 |
| |
| defaultConfig { |
| applicationId = "com.example.myapplication2" |
| minSdk = 24 |
| targetSdk = 33 |
| 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 |
| } |
| packaging { |
| resources { |
| excludes += "/META-INF/{AL2.0,LGPL2.1}" |
| } |
| } |
| } |
| |
| dependencies { |
| } |