version:1.7.0

fix:0918
add:
This commit is contained in:
2021-09-30 18:28:44 +08:00
parent ecc808f603
commit e41becbdb0
27 changed files with 786 additions and 108 deletions

View File

@@ -1,7 +1,4 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
def appName() {
return "SnInfo"
@@ -18,8 +15,8 @@ android {
applicationId "com.info.sn"
minSdkVersion 24
targetSdkVersion 29
versionCode 70
versionName "1.7.0"
versionCode 73
versionName "1.7.3"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
ndk {
@@ -166,7 +163,7 @@ dependencies {
// implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
compileOnly files('src/main/libs/classes.jar')
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.3.1'
//implementation 'com.android.support:multidex:1.0.3'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
@@ -201,7 +198,7 @@ dependencies {
//implementation 'com.blankj:utilcode:1.26.0'
implementation 'com.arialyy.aria:core:3.8.15'
kapt 'com.arialyy.aria:compiler:3.8.15'
annotationProcessor 'com.arialyy.aria:compiler:3.8.15'
implementation "org.java-websocket:Java-WebSocket:1.4.1"
@@ -222,7 +219,7 @@ dependencies {
implementation 'com.jakewharton:butterknife:10.2.1'
// If you are using Kotlin, replace annotationProcessor with kapt.
// annotationProcessor rootProject.ext.dependencies["butterknife-compiler"]
kapt 'com.jakewharton:butterknife-compiler:10.2.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.1'
}