username8817

Untitled

Jan 17th, 2026
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 1.31 KB | None | 0 0
  1. plugins {
  2.     alias(libs.plugins.android.application)
  3.     alias(libs.plugins.kotlin.android)
  4. }
  5.  
  6. android {
  7.     namespace = "com.example.project2"
  8.     compileSdk {
  9.         version = release(36)
  10.     }
  11.  
  12.     defaultConfig {
  13.         applicationId = "com.example.project2"
  14.         minSdk = 31
  15.         targetSdk = 36
  16.         versionCode = 1
  17.         versionName = "1.0"
  18.  
  19.         testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
  20.     }
  21.  
  22.     buildTypes {
  23.         release {
  24.             isMinifyEnabled = false
  25.             proguardFiles(
  26.                 getDefaultProguardFile("proguard-android-optimize.txt"),
  27.                 "proguard-rules.pro"
  28.             )
  29.         }
  30.     }
  31.     compileOptions {
  32.         sourceCompatibility = JavaVersion.VERSION_11
  33.         targetCompatibility = JavaVersion.VERSION_11
  34.     }
  35.     kotlinOptions {
  36.         jvmTarget = "11"
  37.     }
  38. }
  39.  
  40. dependencies {
  41.     implementation(project(":storybook"))
  42.     implementation(libs.androidx.core.ktx)
  43.     implementation(libs.androidx.appcompat)
  44.     implementation(libs.material)
  45.     implementation(libs.androidx.activity)
  46.     implementation(libs.androidx.constraintlayout)
  47.     testImplementation(libs.junit)
  48.     androidTestImplementation(libs.androidx.junit)
  49.     androidTestImplementation(libs.androidx.espresso.core)
  50. }
Advertisement
Add Comment
Please, Sign In to add comment