fix: 更改底层适应kotlin
更改底层适应kotlin
This commit is contained in:
parent
fa09b9c5a1
commit
e02cf3de04
@ -1,9 +1,6 @@
|
||||
plugins {
|
||||
alias(libs.plugins.androidApplication)
|
||||
alias(libs.plugins.jetbrainsKotlinAndroid)
|
||||
|
||||
// id ("com.google.devtools.ksp") version "1.9.0-1.0.13"
|
||||
// id("therouter")
|
||||
}
|
||||
|
||||
android {
|
||||
@ -46,6 +43,7 @@ android {
|
||||
|
||||
dependencies {
|
||||
|
||||
implementation(libs.androidx.core.ktx)
|
||||
implementation(libs.appcompat)
|
||||
implementation(libs.material)
|
||||
implementation(libs.activity)
|
||||
|
20
app/proguard-rules.pro
vendored
20
app/proguard-rules.pro
vendored
@ -25,22 +25,4 @@
|
||||
# need add for Fragment page route
|
||||
# -keep public class * extends android.app.Fragment
|
||||
# -keep public class * extends androidx.fragment.app.Fragment
|
||||
# -keep public class * extends android.support.v4.app.Fragment
|
||||
|
||||
-keep class androidx.annotation.Keep
|
||||
-keep @androidx.annotation.Keep class * {*;}
|
||||
-keepclassmembers class * {
|
||||
@androidx.annotation.Keep *;
|
||||
}
|
||||
-keepclasseswithmembers class * {
|
||||
@androidx.annotation.Keep <methods>;
|
||||
}
|
||||
-keepclasseswithmembers class * {
|
||||
@androidx.annotation.Keep <fields>;
|
||||
}
|
||||
-keepclasseswithmembers class * {
|
||||
@androidx.annotation.Keep <init>(...);
|
||||
}
|
||||
-keepclasseswithmembers class * {
|
||||
@com.therouter.router.Autowired <fields>;
|
||||
}
|
||||
# -keep public class * extends android.support.v4.app.Fragment
|
@ -2,7 +2,6 @@
|
||||
plugins {
|
||||
alias(libs.plugins.androidApplication) apply false
|
||||
alias(libs.plugins.jetbrainsKotlinAndroid) apply false
|
||||
// id("cn.therouter.agp8") version "1.2.1" apply false
|
||||
}
|
||||
|
||||
buildscript {
|
||||
@ -14,6 +13,5 @@ buildscript {
|
||||
dependencies {
|
||||
//noinspection UseTomlInstead
|
||||
classpath("io.objectbox:objectbox-gradle-plugin:4.0.0")
|
||||
// classpath("cn.therouter:plugin:1.2.2")
|
||||
}
|
||||
}
|
@ -15,6 +15,8 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
|
||||
# Android operating system, and which are packaged with your app's APK
|
||||
# https://developer.android.com/topic/libraries/support-library/androidx-rn
|
||||
android.useAndroidX=true
|
||||
# Kotlin code style for this project: "official" or "obsolete":
|
||||
kotlin.code.style=official
|
||||
# Enables namespacing of each library's R class so that its R class includes only the
|
||||
# resources declared in the library itself and none from the library's dependencies,
|
||||
# thereby reducing the size of the R class for that library
|
||||
|
@ -15,8 +15,10 @@ okhttp = "4.12.0"
|
||||
preference = "1.2.1"
|
||||
window = "1.3.0"
|
||||
kotlin = "1.9.0"
|
||||
coreKtx = "1.13.1"
|
||||
|
||||
[libraries]
|
||||
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
||||
emoji2 = { module = "androidx.emoji2:emoji2", version.ref = "emoji2" }
|
||||
glide = { module = "com.github.bumptech.glide:glide", version.ref = "glide" }
|
||||
gson = { module = "com.google.code.gson:gson", version.ref = "gson" }
|
||||
|
Loading…
Reference in New Issue
Block a user