|
|
@@ -0,0 +1,44 @@
|
|
|
+plugins {
|
|
|
+ alias(libs.plugins.android.library)
|
|
|
+ alias(libs.plugins.kotlin.android)
|
|
|
+}
|
|
|
+
|
|
|
+android {
|
|
|
+ namespace = "com.grkj.ui_base"
|
|
|
+ compileSdk = 35
|
|
|
+
|
|
|
+ defaultConfig {
|
|
|
+ minSdk = 24
|
|
|
+
|
|
|
+ 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)
|
|
|
+ implementation(libs.androidx.activity)
|
|
|
+ implementation(libs.androidx.constraintlayout)
|
|
|
+ implementation(project(":shared"))
|
|
|
+ testImplementation(libs.junit)
|
|
|
+}
|