Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- plugins {
- alias(libs.plugins.android.library)
- alias(libs.plugins.kotlin.android)
- }
- android {
- namespace = "com.example.storybook"
- compileSdk {
- version = release(36)
- }
- defaultConfig {
- minSdk = 31
- testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
- consumerProguardFiles("consumer-rules.pro")
- }
- buildTypes {
- release {
- isMinifyEnabled = false
- proguardFiles(
- getDefaultProguardFile("proguard-android-optimize.txt"),
- "proguard-rules.pro"
- )
- }
- }
- compileOptions {
- sourceCompatibility = JavaVersion.VERSION_11
- targetCompatibility = JavaVersion.VERSION_11
- }
- kotlinOptions {
- jvmTarget = "11"
- }
- }
- dependencies {
- implementation(libs.androidx.core.ktx)
- implementation(libs.androidx.appcompat)
- implementation(libs.material)
- testImplementation(libs.junit)
- androidTestImplementation(libs.androidx.junit)
- androidTestImplementation(libs.androidx.espresso.core)
- implementation("dev.abd3lraouf:pocketbase-kotlin:1.0.0")
- }
Advertisement
Add Comment
Please, Sign In to add comment