GoGoGo/app/build.gradle
dependabot[bot] 161aaeeb7f
chore(deps): bump com.squareup.okhttp3:okhttp from 4.12.0 to 5.3.2
Bumps [com.squareup.okhttp3:okhttp](https://github.com/square/okhttp) from 4.12.0 to 5.3.2.
- [Changelog](https://github.com/square/okhttp/blob/master/CHANGELOG.md)
- [Commits](https://github.com/square/okhttp/compare/parent-4.12.0...parent-5.3.2)

---
updated-dependencies:
- dependency-name: com.squareup.okhttp3:okhttp
  dependency-version: 5.3.2
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-18 17:04:05 +00:00

133 lines
4.5 KiB
Groovy

plugins {
id "com.android.application"
// 谷歌官方推荐的用于隐藏地图 KEY 的插件 https://developers.google.com/maps/documentation/places/android-sdk/secrets-gradle-plugin?hl=zh-cn
id "com.google.android.libraries.mapsplatform.secrets-gradle-plugin"
}
android {
ndkVersion = '26.2.11394342'
compileSdk = 32
buildToolsVersion = '36.0.0'
namespace = 'com.zcshou.gogogo'
signingConfigs {
debug {
storeFile file('..\\keystore\\GoGoGo.jks')
storePassword 'GoGoGo'
keyAlias 'GoGoKey'
keyPassword 'GoGoGo'
}
release {
storeFile file('..\\keystore\\GoGoGo.jks')
storePassword 'GoGoGo'
keyAlias 'GoGoKey'
keyPassword 'GoGoGo'
}
}
defaultConfig {
applicationId "com.zcshou.gogogo"
minSdkVersion 27
//noinspection ExpiredTargetSdkVersion
targetSdkVersion 32
versionCode 1123
versionName '1.12.3' // https://semver.org/lang/zh-CN/
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
resourceConfigurations += ['zh', 'zh-rCN', 'en', 'en-rUS']
ndk {
//noinspection ChromeOsAbiSupport
abiFilters "arm64-v8a"
}
signingConfig = signingConfigs.release
}
buildTypes {
release {
// Enables code shrinking, obfuscation, and optimization for only
// your project's release build type.
minifyEnabled = true
// Enables resource shrinking, which is performed by the
// Android Gradle plugin.
shrinkResources = true
// Includes the default ProGuard rules files that are packaged with
// the Android Gradle plugin. To learn more, go to the section about
// R8 configuration files.
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig = signingConfigs.release
multiDexEnabled = true
}
debug {
signingConfig = signingConfigs.debug
}
}
// 要存取 secret value 必須要使用到一個 BuildScript 的類別,默认会从 local.properties 中获取
buildFeatures {
buildConfig = true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
packagingOptions {
jniLibs {
excludes += ['lib/armeabi/**']
}
resources {
excludes += ['lib/armeabi/**']
}
}
sourceSets {
main {
jniLibs.srcDirs = ['libs']
}
}
dependenciesInfo {
includeInApk = false
includeInBundle = false
}
// 指定输出的可执行程序的名字
applicationVariants.configureEach { variant ->
variant.outputs.configureEach { output ->
def outputFile = output.outputFile
if (outputFile != null && outputFile.name.endsWith('.apk')) {
def fileName
if (variant.buildType.name == 'release') {
fileName = "Go_${defaultConfig.versionName}_arm64-v8a_release.apk"
} else {
fileName = "Go_${defaultConfig.versionName}_arm64-v8a_debug.apk"
}
outputFileName=fileName
}
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
// AppCompat 1.5.1 开始显式依赖于 Lifecycle 2.5.1 和 SavedState 1.2.0
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.preference:preference:1.2.1'
implementation 'com.google.android.material:material:1.7.0'
implementation 'com.squareup.okhttp3:okhttp:5.3.2'
implementation 'com.elvishew:xlog:1.11.1'
implementation 'io.noties.markwon:core:4.6.2'
implementation files('libs/BaiduLBS_Android.jar')
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.3.0'
androidTestImplementation 'androidx.test:runner:1.7.0'
androidTestImplementation('androidx.test.espresso:espresso-core:3.7.0', {
exclude group: 'com.android.support', module: 'support-annotations'
})
}