plugins { id 'com.android.library' id 'org.jetbrains.kotlin.android' id 'maven-publish' } ext { GROUP_ID = 'com.gami.android' ARTIFACT_ID = 'frame-util' VERSION = '1.0.1' } if (project.FRAME_DEBUG != "true") { apply from: "../../publish.gradle" } android { namespace 'com.adealink.frame.util' compileSdk libs.versions.compileSdk.get().toInteger() defaultConfig { minSdk libs.versions.minSdk.get().toInteger() targetSdk libs.versions.targetSdk.get().toInteger() testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles "consumer-rules.pro" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_17 targetCompatibility JavaVersion.VERSION_17 } kotlinOptions { jvmTarget = JavaVersion.VERSION_17.majorVersion } } dependencies { //kotlin implementation libs.kotlinx.coroutines.core implementation libs.kotlinx.coroutines.android //androidx implementation libs.androidx.core implementation libs.androidx.core.ktx implementation libs.androidx.appcompat //google implementation libs.play.feature.delivery implementation libs.play.feature.delivery.ktx implementation libs.google.lib.phone.number //io implementation libs.okio //library implementation libs.relinker //frame compileOnly project(":frame:data") compileOnly project(":frame:zero") compileOnly project(":frame:base") compileOnly project(":frame:zero") compileOnly project(":external:AndroidAutoSize") //test testImplementation libs.junit androidTestImplementation libs.androidx.junit androidTestImplementation libs.androidx.espresso.core }