1
0
mirror of https://github.com/fumiama/android-base16384.git synced 2026-06-12 14:10:39 +08:00
1. 修复指针越界
2. 修复整数溢出
3. 修复内存泄漏
This commit is contained in:
fumiama
2021-10-29 00:22:29 +08:00
parent 6c09d647d0
commit 06e85077c3
20 changed files with 132 additions and 119 deletions

View File

@@ -5,15 +5,14 @@ apply plugin: 'kotlin-kapt'
//apply plugin: 'AndResGuard'
android {
compileSdkVersion 30
buildToolsVersion "30.0.2"
compileSdkVersion 31
defaultConfig {
applicationId "top.fumiama.base16384"
minSdkVersion 23
targetSdkVersion 30
versionCode 14
versionName '3.1'
targetSdkVersion 31
versionCode 15
versionName '3.2'
resConfigs "zh", "en"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -60,11 +59,11 @@ android {
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.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}