47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
plugins {
 | 
						|
    alias(libs.plugins.android.application)
 | 
						|
    alias(libs.plugins.kotlin.android)
 | 
						|
}
 | 
						|
 | 
						|
android {
 | 
						|
    namespace = "com.example.adidreader"
 | 
						|
    compileSdk = 35
 | 
						|
 | 
						|
    defaultConfig {
 | 
						|
        applicationId = "com.example.adidreader"
 | 
						|
        minSdk = 30
 | 
						|
        targetSdk = 35
 | 
						|
        versionCode = 1
 | 
						|
        versionName = "1.0"
 | 
						|
 | 
						|
        testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
 | 
						|
    }
 | 
						|
 | 
						|
    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)
 | 
						|
    implementation(libs.play.services.ads.identifier)
 | 
						|
    testImplementation(libs.junit)
 | 
						|
    androidTestImplementation(libs.androidx.junit)
 | 
						|
    androidTestImplementation(libs.androidx.espresso.core)
 | 
						|
} |