--- a/ui/build.gradle.kts Thu Apr 13 17:28:56 2023 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,61 +0,0 @@
-plugins {
- id("com.android.library")
- kotlin("android")
- id("com.geekorum.build.source-license-checker")
-}
-
-android {
- namespace = "com.geekorum.aboutoss.ui"
- compileSdk = 33
-
- defaultConfig {
- minSdk = 28
-
- 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_1_8
- targetCompatibility = JavaVersion.VERSION_1_8
- }
- kotlinOptions {
- jvmTarget = "1.8"
- }
-
- buildFeatures {
- compose = true
- }
-
- composeOptions {
- kotlinCompilerExtensionVersion = libs.versions.androidx.compose.compiler.get()
- }
-}
-
-dependencies {
- implementation(project(":ui:common"))
- implementation(platform(libs.androidx.compose.bom))
- implementation(libs.androidx.compose.material)
- implementation(libs.androidx.lifecycle.viewmodel)
- implementation(libs.androidx.activity)
- implementation(libs.androidx.activity.compose)
- implementation(libs.androidx.navigation.compose)
- implementation(libs.geekdroid) {
- //TODO get rid of dagger platform in geekdroid
- exclude("com.google.dagger", "dagger-platform")
- }
-
- implementation(libs.appcompat)
- testImplementation(libs.junit)
- androidTestImplementation(libs.androidx.test.ext.junit)
- androidTestImplementation(libs.espresso.core)
-}
\ No newline at end of file