mirror of
https://github.com/fumiama/simple-dict-android.git
synced 2026-06-05 08:40:25 +08:00
111 lines
3.4 KiB
Groovy
111 lines
3.4 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'kotlin-android'
|
|
id 'kotlin-android-extensions'
|
|
id 'AndResGuard'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
buildToolsVersion "30.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "top.fumiama.simpledict"
|
|
minSdkVersion 26
|
|
targetSdkVersion 30
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
signingConfigs {
|
|
winrelease {
|
|
storeFile file('C:/Users/spayi/OneDrive/swc/developer/android_key/open_key')
|
|
storePassword 'fumiama'
|
|
keyAlias 'default'
|
|
keyPassword 'fumiama'
|
|
v1SigningEnabled true
|
|
v2SigningEnabled true
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
winrelease {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
signingConfig signingConfigs.winrelease
|
|
}
|
|
/*debug{
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}*/
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
implementation 'androidx.core:core-ktx:1.3.2'
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
implementation 'com.google.android.material:material:1.3.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.3'
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.3.3'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
|
implementation 'com.lapism:search:2.4.1@aar'
|
|
}
|
|
|
|
andResGuard {
|
|
// mappingFile = file("./resource_mapping.txt")
|
|
mappingFile = null
|
|
use7zip = true
|
|
useSign = true
|
|
// It will keep the origin path of your resources when it's true
|
|
keepRoot = false
|
|
// If set, name column in arsc those need to proguard will be kept to this value
|
|
fixedResName = "arg"
|
|
// It will merge the duplicated resources, but don't rely on this feature too much.
|
|
// it's always better to remove duplicated resource from repo
|
|
mergeDuplicatedRes = true
|
|
whiteList = [
|
|
"R.drawable.load",
|
|
// your icon
|
|
"R.drawable.icon",
|
|
// for fabric
|
|
"R.string.com.crashlytics.*",
|
|
// for google-services
|
|
"R.string.google_app_id",
|
|
"R.string.gcm_defaultSenderId",
|
|
"R.string.default_web_client_id",
|
|
"R.string.ga_trackingId",
|
|
"R.string.firebase_database_url",
|
|
"R.string.google_api_key",
|
|
"R.string.google_crash_reporting_api_key",
|
|
"R.font.*"
|
|
]
|
|
compressFilePattern = [
|
|
"*.png",
|
|
"*.jpg",
|
|
"*.jpeg",
|
|
"*.gif",
|
|
"resources.arsc"
|
|
]
|
|
sevenzip {
|
|
artifact = 'com.tencent.mm:SevenZip:1.2.20'
|
|
//path = "/usr/local/bin/7za"
|
|
}
|
|
} |