mirror of
https://github.com/Kurocon/projectivy-booru-wallpaper-provider.git
synced 2025-06-04 23:20:20 +00:00
51 lines
1.4 KiB
Plaintext
51 lines
1.4 KiB
Plaintext
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
|
|
|
plugins {
|
|
id("com.android.application")
|
|
id("org.jetbrains.kotlin.android")
|
|
}
|
|
|
|
android {
|
|
namespace = "nl.kurocon.plugin.wallpaperprovider.booru"
|
|
compileSdk = 35
|
|
|
|
defaultConfig {
|
|
applicationId = "nl.kurocon.plugin.wallpaperprovider.booru"
|
|
minSdk = 23
|
|
targetSdk = 35
|
|
versionCode = 2
|
|
versionName = "1.1"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = true
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
kotlin {
|
|
compilerOptions {
|
|
jvmTarget.set(JvmTarget.JVM_17)
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("androidx.core:core-ktx:1.13.1")
|
|
implementation("androidx.leanback:leanback:1.2.0-alpha04")
|
|
implementation("androidx.appcompat:appcompat:1.7.0")
|
|
implementation("com.google.android.material:material:1.12.0")
|
|
implementation("androidx.preference:preference-ktx:1.2.1")
|
|
implementation("com.google.code.gson:gson:2.11.0")
|
|
implementation("com.squareup.okhttp3:okhttp:4.12.0")
|
|
implementation("org.json:json:20210307")
|
|
implementation(project(":api"))
|
|
} |