mirror of
https://github.com/areteruhiro/LIME-beta-hiro.git
synced 2025-02-11 16:01:37 +09:00
58 lines
1.5 KiB
Groovy
58 lines
1.5 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
namespace 'io.github.chipppppppppp.lime'
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
minSdk 24
|
|
targetSdk 33
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
signingConfigs {
|
|
android {
|
|
storeFile file('android.jks')
|
|
storePassword 'android'
|
|
keyAlias 'android'
|
|
keyPassword 'android'
|
|
}
|
|
release {
|
|
storeFile file('release.jks')
|
|
storePassword System.getenv('STORE_PASSWORD')
|
|
keyAlias System.getenv('KEY_ALIAS')
|
|
keyPassword System.getenv('KEY_PASSWORD')
|
|
}
|
|
}
|
|
buildTypes {
|
|
debug {
|
|
minifyEnabled false
|
|
proguardFiles += 'proguard-rules.pro'
|
|
signingConfig signingConfigs.android
|
|
}
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles += 'proguard-rules.pro'
|
|
if (file('release.jks').exists()) {
|
|
signingConfig signingConfigs.release
|
|
}
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'com.google.android.material:material:1.9.0'
|
|
implementation 'androidx.preference:preference:1.2.0'
|
|
implementation 'androidx.browser:browser:1.5.0'
|
|
compileOnly 'de.robv.android.xposed:api:82'
|
|
compileOnly 'de.robv.android.xposed:api:82:sources'
|
|
}
|