mirror of
https://github.com/PaiGramTeam/GetToken.git
synced 2024-11-21 14:38:24 +00:00
80 lines
2.3 KiB
Groovy
80 lines
2.3 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'org.jetbrains.kotlin.android'
|
|
id 'org.jetbrains.kotlin.plugin.serialization'
|
|
}
|
|
|
|
android {
|
|
|
|
namespace 'hat.holo.token'
|
|
compileSdk 34
|
|
|
|
defaultConfig {
|
|
applicationId "hat.holo.token"
|
|
minSdk 28
|
|
targetSdk 34
|
|
versionCode 1
|
|
versionName "1.0"
|
|
vectorDrawables {
|
|
useSupportLibrary true
|
|
}
|
|
}
|
|
|
|
signingConfigs {
|
|
release {
|
|
storeFile file('../.github/signkey.jks')
|
|
keyAlias System.getenv("SIGNING_KEY_ALIAS")
|
|
keyPassword System.getenv("SIGNING_KEY_PASSWORD")
|
|
storePassword System.getenv("SIGNING_KEY_PASSWORD")
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
signingConfig signingConfigs.release
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
freeCompilerArgs += [
|
|
"-Xcontext-receivers"
|
|
]
|
|
}
|
|
buildFeatures {
|
|
compose true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion compose_ui_version
|
|
}
|
|
packagingOptions {
|
|
resources {
|
|
excludes += '/META-INF/{AL2.0,LGPL2.1}'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation "androidx.core:core-ktx:1.13.0"
|
|
implementation "androidx.appcompat:appcompat:1.6.1"
|
|
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.7.0"
|
|
implementation "androidx.compose.ui:ui:1.6.6"
|
|
implementation "androidx.compose.material:material:1.6.6"
|
|
implementation "androidx.activity:activity-compose:1.9.0"
|
|
implementation "androidx.constraintlayout:constraintlayout-compose:1.0.1"
|
|
implementation "com.google.accompanist:accompanist-systemuicontroller:0.34.0"
|
|
implementation "com.squareup.okhttp3:okhttp:5.0.0-alpha.14"
|
|
implementation "com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.14"
|
|
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3"
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1"
|
|
compileOnly files("libs/api-82.jar")
|
|
|
|
}
|