mirror of
https://github.com/Katana-Official/SPatch-Update.git
synced 2026-03-19 04:59:45 +08:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
637e8cb53e | ||
|
|
cb600041a9 | ||
|
|
e76b07bfcb | ||
|
|
28ac4f808c | ||
|
|
f6d1423d49 | ||
|
|
6f3cfa9e16 | ||
|
|
e8e4406e5b | ||
|
|
0baa46355c | ||
|
|
c518603ca3 |
@@ -2,11 +2,11 @@ apply plugin: 'com.android.application'
|
||||
apply plugin: 'kotlin-android'
|
||||
|
||||
android {
|
||||
compileSdk 34
|
||||
compileSdk 35
|
||||
defaultConfig {
|
||||
applicationId "net_62v.launcher"
|
||||
minSdkVersion 21
|
||||
targetSdk 34
|
||||
targetSdk 35
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
android {
|
||||
@@ -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'
|
||||
}
|
||||
|
||||
1
app/proguard-rules.pro
vendored
1
app/proguard-rules.pro
vendored
@@ -2,6 +2,7 @@
|
||||
-optimizationpasses 7
|
||||
-allowaccessmodification
|
||||
-keep class android.** { *; }
|
||||
-keep class de.** { *; }
|
||||
-keepclassmembers class * {
|
||||
native <methods>;
|
||||
}
|
||||
|
||||
@@ -2121,7 +2121,7 @@ public class LauncherModel extends BroadcastReceiver {
|
||||
});
|
||||
try {
|
||||
MetaPackageManager.acquireObtainAppSplash();
|
||||
} catch (RemoteException e) {
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,10 +7,8 @@ buildscript {
|
||||
google()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:8.2.2'
|
||||
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.0-Beta3'
|
||||
// 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.6.0-alpha07'
|
||||
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.0'
|
||||
// NOTE: Do not place your application dependencies here; they belong
|
||||
// in the individual module build.gradle files
|
||||
}
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user