Update dependencies (#1680)

This commit is contained in:
LoveSy 2022-02-13 03:38:46 +08:00 committed by GitHub
parent 5ab4c98fc5
commit 26f414ff03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 4 deletions

View File

@ -282,7 +282,7 @@ public class SettingsFragment extends BaseFragment {
language.setEntries(entries.toArray(new CharSequence[0]));
language.setEntryValues(lstLang);
if (TextUtils.isEmpty(tag) || SYSTEM.equals(tag)) {
language.setSummary(getString(rikka.material.R.string.follow_system));
language.setSummary(getString(rikka.core.R.string.follow_system));
} else {
var locale = Locale.forLanguageTag(tag);
language.setSummary(!TextUtils.isEmpty(locale.getScript()) ? locale.getDisplayScript(userLocale) : locale.getDisplayName(userLocale));

View File

@ -24,8 +24,8 @@ buildscript {
google()
mavenCentral()
}
val navVersion by extra("2.5.0-alpha01")
val agpVersion by extra("7.1.0")
val navVersion by extra("2.5.0-alpha02")
val agpVersion by extra("7.1.1")
dependencies {
classpath("com.android.tools.build:gradle:$agpVersion")
classpath("org.eclipse.jgit:org.eclipse.jgit:6.0.0.202111291000-r")

View File

@ -44,7 +44,6 @@ import org.lsposed.lspd.util.Utils;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;