122 lines
3.6 KiB
Kotlin
122 lines
3.6 KiB
Kotlin
plugins {
|
|
id("com.android.application")
|
|
id("org.jetbrains.kotlin.android")
|
|
id("kotlin-kapt")
|
|
id("kotlinx-serialization")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.bnyro.wallpaper"
|
|
compileSdk = 34
|
|
|
|
defaultConfig {
|
|
applicationId = "com.bnyro.wallpaper"
|
|
minSdk = 21
|
|
targetSdk = 34
|
|
versionCode = 26
|
|
versionName = "8.1"
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
vectorDrawables {
|
|
useSupportLibrary = true
|
|
}
|
|
|
|
javaCompileOptions {
|
|
annotationProcessorOptions {
|
|
arguments += mapOf("room.schemaLocation" to "$projectDir/schemas")
|
|
}
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = true
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
debug {
|
|
isDebuggable = true
|
|
applicationIdSuffix = ".debug"
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
isCoreLibraryDesugaringEnabled = true
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
|
|
buildFeatures {
|
|
compose = true
|
|
buildConfig = true
|
|
}
|
|
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = "1.4.2"
|
|
}
|
|
|
|
packaging {
|
|
resources {
|
|
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Core
|
|
implementation("androidx.core:core-ktx:1.12.0")
|
|
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0")
|
|
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.7.0")
|
|
implementation("androidx.work:work-runtime-ktx:2.9.0")
|
|
implementation("androidx.documentfile:documentfile:1.0.1")
|
|
|
|
// UI
|
|
implementation("androidx.activity:activity-compose:1.8.2")
|
|
implementation("androidx.compose.ui:ui:1.6.5")
|
|
implementation("androidx.compose.ui:ui-tooling-preview:1.6.5")
|
|
implementation("androidx.navigation:navigation-compose:2.7.7")
|
|
|
|
// Design libraries
|
|
implementation("androidx.compose.material3:material3:1.2.1")
|
|
implementation("androidx.compose.material:material-icons-core:1.6.5")
|
|
implementation("androidx.compose.material:material-icons-extended:1.6.5")
|
|
implementation("androidx.palette:palette-ktx:1.0.0")
|
|
|
|
// Retrofit
|
|
implementation("com.squareup.retrofit2:retrofit:2.11.0")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1")
|
|
implementation("com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter:1.0.0")
|
|
implementation("com.squareup.okhttp3:logging-interceptor:4.12.0")
|
|
|
|
// Coil
|
|
implementation("io.coil-kt:coil-compose:2.6.0")
|
|
|
|
// Renderscript
|
|
implementation(project(":renderscript-toolkit"))
|
|
|
|
// Room
|
|
implementation("androidx.room:room-runtime:2.6.1")
|
|
implementation("androidx.room:room-ktx:2.6.1")
|
|
kapt("androidx.room:room-compiler:2.6.1")
|
|
|
|
// Local image parsing
|
|
implementation("androidx.exifinterface:exifinterface:1.3.7")
|
|
|
|
// Testing
|
|
testImplementation("junit:junit:4.13.2")
|
|
androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
|
|
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.6.5")
|
|
debugImplementation("androidx.compose.ui:ui-tooling:1.6.5")
|
|
debugImplementation("androidx.compose.ui:ui-test-manifest:1.6.5")
|
|
|
|
// Desugaring
|
|
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.4")
|
|
} |