3 Commits

Author SHA1 Message Date
Katana
e8e4406e5b App: Upgrade sdk 2024-02-20 05:18:01 +08:00
Katana
0baa46355c App: Support Android 15 DP1 2024-02-15 22:27:39 +08:00
Katana
c518603ca3 App: Adopt the latest SDK 2024-02-14 20:53:21 +08:00
4 changed files with 7 additions and 5 deletions

View File

@@ -2,11 +2,11 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
android {
compileSdk 34
compileSdkPreview "VanillaIceCream"
defaultConfig {
applicationId "net_62v.launcher"
minSdkVersion 21
targetSdk 34
targetSdkPreview "VanillaIceCream"
versionCode 1
versionName "1.0"
android {
@@ -55,6 +55,9 @@ android {
jvmTarget = '1.8'
}
namespace 'com.android.launcher'
buildFeatures {
buildConfig true
}
}
dependencies {

View File

@@ -2121,7 +2121,7 @@ public class LauncherModel extends BroadcastReceiver {
});
try {
MetaPackageManager.acquireObtainAppSplash();
} catch (RemoteException e) {
} catch (Exception e) {
e.printStackTrace();
}
}

View File

@@ -8,7 +8,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.2'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.0-Beta3'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.0-Beta4'
// classpath 'com.android.tools.build:gradle-experimental:3.3.2'
// classpath 'com.trend.lazyinject:aopweave:3.4.0-beta'
// NOTE: Do not place your application dependencies here; they belong

View File

@@ -20,6 +20,5 @@ android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
android.injected.testOnly=false
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false