1 @Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
<lambda>null2 plugins {
3     alias(libs.plugins.androidLibrary)
4 }
5 
<lambda>null6 android {
7     namespace = "com.github.google.bumble"
8     compileSdk = 34
9 
10     defaultConfig {
11         minSdk = 26
12 
13         testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
14         consumerProguardFiles("consumer-rules.pro")
15     }
16 
17     buildTypes {
18         release {
19             isMinifyEnabled = false
20             proguardFiles(
21                 getDefaultProguardFile("proguard-android-optimize.txt"),
22                 "proguard-rules.pro"
23             )
24         }
25     }
26     compileOptions {
27         sourceCompatibility = JavaVersion.VERSION_1_8
28         targetCompatibility = JavaVersion.VERSION_1_8
29     }
30 }
31 
32 dependencies {
33 
34     implementation(libs.appcompat)
35     implementation(libs.material)
36     testImplementation(libs.junit)
37     androidTestImplementation(libs.androidx.test.ext.junit)
38     androidTestImplementation(libs.espresso.core)
39 }