7 Commits

Author SHA1 Message Date
Katana
28ac4f808c Upgrade dependency 2024-04-01 12:25:27 +08:00
Katana
f6d1423d49 App: Upgrade to latest AGP 2024-03-05 22:12:02 +08:00
Katana
6f3cfa9e16 App: Optimized for all devices 2024-02-28 01:31:11 +08:00
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
Katana
9eb797d28d App: Upgrade app dependency 2024-02-04 01:11:01 +08:00
5 changed files with 8 additions and 8 deletions

View File

@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
android {
compileSdk 34
compileSdkPreview "VanillaIceCream"
defaultConfig {
applicationId "net_62v.launcher"
minSdkVersion 21
@@ -55,11 +55,13 @@ android {
jvmTarget = '1.8'
}
namespace 'com.android.launcher'
buildFeatures {
buildConfig true
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation fileTree(include: ['*.aar'], dir: 'libs')
implementation "androidx.annotation:annotation:1.7.1"
implementation 'com.jakewharton.android.repackaged:dalvik-dx:11.0.0_r3'
}

View File

@@ -2,6 +2,7 @@
-optimizationpasses 7
-allowaccessmodification
-keep class android.** { *; }
-keep class de.** { *; }
-keepclassmembers class * {
native <methods>;
}

View File

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

View File

@@ -7,10 +7,8 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.1'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.0-Beta2'
// classpath 'com.android.tools.build:gradle-experimental:3.3.2'
// classpath 'com.trend.lazyinject:aopweave:3.4.0-beta'
classpath 'com.android.tools.build:gradle:8.3.1'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.0-Beta5'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}

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