Skip to content

Commit

Permalink
upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler committed May 24, 2024
1 parent 6f8c501 commit e713c9a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 18 deletions.
28 changes: 14 additions & 14 deletions Android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ android {
versionCode pkg.config.version_code
}

splits {
abi {
enable true
reset()
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
universalApk true
}
}
// splits {
// abi {
// enable true
// reset()
// include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
// universalApk true
// }
// }

applicationVariants.configureEach { variant ->
variant.outputs.configureEach { output ->
Expand All @@ -40,6 +40,7 @@ android {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
multiDexEnabled true
buildConfigField "long", "BUILD_DATE", "${cur_time}"
}
debug {
resValue "string", "app_name", "${app_name} Debug"
Expand All @@ -48,6 +49,7 @@ android {
minifyEnabled false
multiDexEnabled false
applicationIdSuffix '.debug'
buildConfigField "long", "BUILD_DATE", "${cur_time}"
}
}
compileOptions {
Expand All @@ -63,8 +65,6 @@ android {
productFlavors {
'default' {
dimension 'type'

buildConfigField "long", "BUILD_DATE", "${cur_time}"
}
}
}
Expand All @@ -75,16 +75,16 @@ repositories {
}

dependencies {
implementation "androidx.browser:browser:1.7.0"
implementation 'androidx.browser:browser:1.8.0'
implementation "androidx.appcompat:appcompat:1.6.1"
implementation 'androidx.core:core:1.13.0-alpha04'
implementation 'androidx.webkit:webkit:1.9.0'
implementation 'androidx.core:core:1.13.1'
implementation 'androidx.webkit:webkit:1.11.0'

implementation "com.github.topjohnwu.libsu:core:5.2.1"
implementation "com.github.topjohnwu.libsu:io:5.2.1"

implementation 'org.apache.cordova:framework:12.0.1'

implementation 'com.squareup.okhttp3:okhttp:4.12.0'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@
import android.os.StrictMode;
import android.util.Log;
import android.webkit.ConsoleMessage;
import android.webkit.WebChromeClient;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;

import androidx.core.view.WindowCompat;

Expand Down
1 change: 1 addition & 0 deletions Android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@
android.useAndroidX=true
android.enableJetifier=true
org.gradle.daemon=false
android.suppressUnsupportedCompileSdk=34
4 changes: 2 additions & 2 deletions Android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat Jan 27 14:48:14 CET 2024
#Fri May 24 20:42:08 CEST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit e713c9a

Please sign in to comment.