Skip to content

Commit

Permalink
♻️ :: Apply build-logic(app)
Browse files Browse the repository at this point in the history
  • Loading branch information
audgns10 committed Oct 7, 2024
1 parent a92c259 commit 99d2d3a
Showing 1 changed file with 7 additions and 40 deletions.
47 changes: 7 additions & 40 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,56 +1,23 @@
plugins {
alias(libs.plugins.android.application)
id("expo.android.application")
id("expo.android.hilt")
}

android {
namespace = "com.school_of_company.expo_android"
compileSdk = 34

defaultConfig {
applicationId = "com.school_of_company.expo_android"
minSdk = 24
targetSdk = 34
versionCode = 1
versionName = "1.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
useSupportLibrary = true
}
}

buildTypes {
release {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
buildFeatures {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.15"
}
packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
excludes += "META-INF/DEPENDENCIES"
}
}
}

dependencies {
// todo : Add Other Project Implementation -> ex) implementation(project(":core:___")) / (project(":feature:____"))

implementation(libs.androidx.core.ktx)
implementation(libs.androidx.lifecycle.runtime.ktx)
implementation(libs.androidx.activity.compose)
implementation(platform(libs.androidx.compose.bom))
testImplementation(libs.junit)
androidTestImplementation(platform(libs.androidx.compose.bom))
implementation(libs.junit)
androidTestImplementation(libs.androidx.test.ext)
implementation(libs.app.update.ktx)
}

0 comments on commit 99d2d3a

Please sign in to comment.