mirror of
https://github.com/KitsunePie/AppErrorsTracking.git
synced 2025-09-01 08:45:16 +08:00
- Update Kotlin version to 1.7.0 - Update Gradle dependencies - Merge legacy code
72 lines
2.1 KiB
Groovy
72 lines
2.1 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'org.jetbrains.kotlin.android'
|
|
id 'com.google.devtools.ksp' version '1.7.0-1.0.6'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.fankes.apperrorstracking'
|
|
compileSdk 32
|
|
|
|
signingConfigs {
|
|
debug {
|
|
storeFile file('../keystore/public')
|
|
storePassword '123456'
|
|
keyAlias 'public'
|
|
keyPassword '123456'
|
|
v1SigningEnabled true
|
|
v2SigningEnabled true
|
|
}
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "com.fankes.apperrorstracking"
|
|
minSdk 27
|
|
targetSdk 32
|
|
versionCode rootProject.ext.appVersionCode
|
|
versionName rootProject.ext.appVersionName
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled rootProject.ext.enableR8
|
|
shrinkResources rootProject.ext.enableR8
|
|
zipAlignEnabled rootProject.ext.enableR8
|
|
signingConfig signingConfigs.debug
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '11'
|
|
freeCompilerArgs = [
|
|
'-Xno-param-assertions',
|
|
'-Xno-call-assertions',
|
|
'-Xno-receiver-assertions'
|
|
]
|
|
}
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
lintOptions {
|
|
checkReleaseBuilds false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'de.robv.android.xposed:api:82'
|
|
implementation 'com.highcapable.yukihookapi:api:1.0.92'
|
|
ksp 'com.highcapable.yukihookapi:ksp-xposed:1.0.92'
|
|
implementation "com.github.topjohnwu.libsu:core:3.1.2"
|
|
implementation 'androidx.core:core-ktx:1.8.0'
|
|
implementation 'androidx.appcompat:appcompat:1.4.2'
|
|
implementation 'com.google.android.material:material:1.6.1'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
|
} |