username8817

Untitled

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