From c648e4144b83d214ed4abcb5e3a6766f7d152260 Mon Sep 17 00:00:00 2001 From: NekoInverter <42698724+NekoInverter@users.noreply.github.com> Date: Mon, 29 Jun 2020 19:10:17 +0800 Subject: [PATCH] Fixes --- app/build.gradle | 8 ++++++-- .../org/meowcat/edxposed/manager/xposed/Enhancement.java | 2 +- build.gradle | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index c77f4519..f6007653 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -23,6 +23,10 @@ android { keyPassword pwd != null ? pwd : System.getenv("ALIAS_PASS") } } + lintOptions { + disable 'MissingTranslation' + disable 'ExtraTranslation' + } compileSdkVersion 29 buildToolsVersion "29.0.3" defaultConfig { @@ -60,7 +64,7 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation 'androidx.appcompat:appcompat:1.2.0-rc01' + implementation 'androidx.appcompat:appcompat:1.3.0-alpha01' implementation 'androidx.browser:browser:1.2.0' implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta6' implementation "androidx.recyclerview:recyclerview:1.2.0-alpha03" @@ -68,7 +72,7 @@ dependencies { implementation 'com.github.bumptech.glide:glide:4.11.0' implementation "com.github.topjohnwu.libsu:core:2.5.1" implementation 'com.google.android.gms:play-services-oss-licenses:17.0.0' - implementation 'com.google.android.material:material:1.2.0-alpha06' + implementation 'com.google.android.material:material:1.2.0-beta01' implementation 'com.google.code.gson:gson:2.8.6' implementation 'com.takisoft.preferencex:preferencex:1.1.0' implementation 'com.takisoft.preferencex:preferencex-colorpicker:1.1.0' diff --git a/app/src/main/java/org/meowcat/edxposed/manager/xposed/Enhancement.java b/app/src/main/java/org/meowcat/edxposed/manager/xposed/Enhancement.java index d96be712..6606ce5b 100644 --- a/app/src/main/java/org/meowcat/edxposed/manager/xposed/Enhancement.java +++ b/app/src/main/java/org/meowcat/edxposed/manager/xposed/Enhancement.java @@ -105,7 +105,7 @@ public class Enhancement implements IXposedHookLoadPackage { } private static List readModulesList(final String filename) { - XposedBridge.log("EdXpMgrEx: Reading modules list " + filename + "..."); + XposedBridge.log("EdXposedManager: Reading modules list " + filename + "..."); final StrictMode.ThreadPolicy oldPolicy = StrictMode.allowThreadDiskReads(); try { final File listFile = new File(filename); diff --git a/build.gradle b/build.gradle index e998aa72..fa36b030 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:4.0.0-rc01' + classpath 'com.android.tools.build:gradle:4.0.0' classpath 'com.google.android.gms:oss-licenses-plugin:0.10.2' // NOTE: Do not place your application dependencies here; they belong