Repo created
This commit is contained in:
parent
ef295a34d2
commit
bbab4c6180
352 changed files with 14422 additions and 1 deletions
78
android/build.gradle.kts
Normal file
78
android/build.gradle.kts
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
plugins {
|
||||
alias(libs.plugins.android.application)
|
||||
alias(libs.plugins.kotlin.android)
|
||||
alias(libs.plugins.compose.compiler)
|
||||
}
|
||||
|
||||
group = "com.inspiredandroid.linuxcommandbibliotheca"
|
||||
|
||||
dependencies {
|
||||
implementation(project(":common"))
|
||||
implementation(libs.androidx.activity.compose)
|
||||
implementation(libs.androidx.material)
|
||||
implementation(libs.androidx.navigation.compose)
|
||||
implementation(libs.accompanist.appcompat.theme)
|
||||
implementation(libs.accompanist.systemuicontroller)
|
||||
implementation(libs.androidx.lifecycle.viewmodel.compose)
|
||||
implementation(libs.androidx.preference)
|
||||
implementation(libs.androidx.ui.tooling.preview)
|
||||
implementation(libs.androidx.material.icons.core)
|
||||
|
||||
implementation(libs.koin.core)
|
||||
implementation(libs.koin.android)
|
||||
implementation(libs.koin.androidx.compose)
|
||||
implementation(libs.androidx.foundation)
|
||||
implementation(libs.kotlinx.collections.immutable)
|
||||
|
||||
androidTestImplementation(libs.androidx.ui.test.junit4)
|
||||
debugImplementation(libs.androidx.ui.test.manifest)
|
||||
debugImplementation(libs.androidx.ui.tooling)
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdk = 36
|
||||
defaultConfig {
|
||||
applicationId = "com.inspiredandroid.linuxcommandbibliotheca"
|
||||
minSdk = 24
|
||||
targetSdk = 36
|
||||
versionCode =
|
||||
libs.versions.androidVersionCode
|
||||
.get()
|
||||
.toInt()
|
||||
versionName = libs.versions.appVersion.get()
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
getByName("release") {
|
||||
isMinifyEnabled = true
|
||||
proguardFiles(
|
||||
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||
"proguard-rules.pro",
|
||||
)
|
||||
}
|
||||
getByName("debug") {
|
||||
isMinifyEnabled = false
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets["main"].assets.setSrcDirs(listOf("../assets"))
|
||||
|
||||
buildFeatures {
|
||||
compose = true
|
||||
buildConfig = true
|
||||
}
|
||||
|
||||
compileOptions {
|
||||
sourceCompatibility = JavaVersion.VERSION_17
|
||||
targetCompatibility = JavaVersion.VERSION_17
|
||||
}
|
||||
kotlinOptions {
|
||||
jvmTarget = "17"
|
||||
}
|
||||
|
||||
lint {
|
||||
abortOnError = false
|
||||
}
|
||||
namespace = "com.inspiredandroid.linuxcommandbibliotheca"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue