mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-11-10 01:53:28 +01:00
2
.flutter
2
.flutter
Submodule .flutter updated: 300451adae...54e66469a9
@@ -92,20 +92,6 @@ repositories {
|
|||||||
maven { url 'https://jitpack.io' }
|
maven { url 'https://jitpack.io' }
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
|
||||||
def shizuku_version = '13.1.5'
|
|
||||||
implementation "dev.rikka.shizuku:api:$shizuku_version"
|
|
||||||
implementation "dev.rikka.shizuku:provider:$shizuku_version"
|
|
||||||
|
|
||||||
def hidden_api_version = '4.3.1'
|
|
||||||
implementation "dev.rikka.tools.refine:runtime:$hidden_api_version"
|
|
||||||
implementation "dev.rikka.hidden:compat:$hidden_api_version"
|
|
||||||
compileOnly "dev.rikka.hidden:stub:$hidden_api_version"
|
|
||||||
implementation "org.lsposed.hiddenapibypass:hiddenapibypass:4.3"
|
|
||||||
|
|
||||||
implementation "com.github.topjohnwu.libsu:core:5.2.2"
|
|
||||||
}
|
|
||||||
|
|
||||||
ext.abiCodes = ["x86_64": 1, "armeabi-v7a": 2, "arm64-v8a": 3]
|
ext.abiCodes = ["x86_64": 1, "armeabi-v7a": 2, "arm64-v8a": 3]
|
||||||
import com.android.build.OutputFile
|
import com.android.build.OutputFile
|
||||||
android.applicationVariants.all { variant ->
|
android.applicationVariants.all { variant ->
|
||||||
|
|||||||
@@ -1,44 +0,0 @@
|
|||||||
package dev.imranr.obtainium
|
|
||||||
|
|
||||||
import android.util.Xml
|
|
||||||
import org.xmlpull.v1.XmlPullParser
|
|
||||||
import java.io.File
|
|
||||||
import java.io.FileInputStream
|
|
||||||
|
|
||||||
class DefaultSystemFont {
|
|
||||||
fun get(): String {
|
|
||||||
return try {
|
|
||||||
val file = File("/system/etc/fonts.xml")
|
|
||||||
val fileStream = FileInputStream(file)
|
|
||||||
parseFontsFileStream(fileStream)
|
|
||||||
} catch (e: Exception) {
|
|
||||||
e.message ?: "Unknown fonts.xml parsing exception"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun parseFontsFileStream(fileStream: FileInputStream): String {
|
|
||||||
fileStream.use { stream ->
|
|
||||||
val parser = Xml.newPullParser()
|
|
||||||
parser.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, false)
|
|
||||||
parser.setInput(stream, null)
|
|
||||||
parser.nextTag()
|
|
||||||
return parseFonts(parser)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun parseFonts(parser: XmlPullParser): String {
|
|
||||||
while (!((parser.next() == XmlPullParser.END_TAG) && (parser.name == "family"))) {
|
|
||||||
if ((parser.eventType == XmlPullParser.START_TAG) && (parser.name == "font")
|
|
||||||
&& (parser.getAttributeValue(null, "style") == "normal")
|
|
||||||
&& (parser.getAttributeValue(null, "weight") == "400")) {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
parser.next()
|
|
||||||
val fontFile = parser.text.trim()
|
|
||||||
if (fontFile == "") {
|
|
||||||
throw NoSuchFieldException("The font filename couldn't be found in fonts.xml")
|
|
||||||
}
|
|
||||||
return "/system/fonts/$fontFile"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,179 +1,5 @@
|
|||||||
package dev.imranr.obtainium
|
package dev.imranr.obtainium
|
||||||
|
|
||||||
import android.content.Intent
|
|
||||||
import android.content.IntentSender
|
|
||||||
import android.content.pm.IPackageInstaller
|
|
||||||
import android.content.pm.IPackageInstallerSession
|
|
||||||
import android.content.pm.PackageInstaller
|
|
||||||
import android.content.pm.PackageManager
|
|
||||||
import android.net.Uri
|
|
||||||
import android.os.Build
|
|
||||||
import android.os.Bundle
|
|
||||||
import android.os.Process
|
|
||||||
import androidx.annotation.NonNull
|
|
||||||
import com.topjohnwu.superuser.Shell
|
|
||||||
import dev.imranr.obtainium.util.IIntentSenderAdaptor
|
|
||||||
import dev.imranr.obtainium.util.IntentSenderUtils
|
|
||||||
import dev.imranr.obtainium.util.PackageInstallerUtils
|
|
||||||
import dev.imranr.obtainium.util.ShizukuSystemServerApi
|
|
||||||
import io.flutter.embedding.android.FlutterActivity
|
import io.flutter.embedding.android.FlutterActivity
|
||||||
import io.flutter.embedding.engine.FlutterEngine
|
|
||||||
import io.flutter.plugin.common.MethodChannel
|
|
||||||
import io.flutter.plugin.common.MethodChannel.Result
|
|
||||||
import java.io.IOException
|
|
||||||
import java.util.concurrent.CountDownLatch
|
|
||||||
import org.lsposed.hiddenapibypass.HiddenApiBypass
|
|
||||||
import rikka.shizuku.Shizuku
|
|
||||||
import rikka.shizuku.Shizuku.OnRequestPermissionResultListener
|
|
||||||
import rikka.shizuku.ShizukuBinderWrapper
|
|
||||||
|
|
||||||
class MainActivity: FlutterActivity() {
|
class MainActivity: FlutterActivity()
|
||||||
private var nativeChannel: MethodChannel? = null
|
|
||||||
private val SHIZUKU_PERMISSION_REQUEST_CODE = (10..200).random()
|
|
||||||
|
|
||||||
private fun shizukuCheckPermission(result: Result) {
|
|
||||||
try {
|
|
||||||
if (Shizuku.isPreV11()) { // Unsupported
|
|
||||||
result.success(-1)
|
|
||||||
} else if (Shizuku.checkSelfPermission() == PackageManager.PERMISSION_GRANTED) {
|
|
||||||
result.success(1)
|
|
||||||
} else if (Shizuku.shouldShowRequestPermissionRationale()) { // Deny and don't ask again
|
|
||||||
result.success(0)
|
|
||||||
} else {
|
|
||||||
Shizuku.requestPermission(SHIZUKU_PERMISSION_REQUEST_CODE)
|
|
||||||
result.success(-2)
|
|
||||||
}
|
|
||||||
} catch (_: Exception) { // If shizuku not running
|
|
||||||
result.success(-1)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private val shizukuRequestPermissionResultListener = OnRequestPermissionResultListener {
|
|
||||||
requestCode: Int, grantResult: Int ->
|
|
||||||
if (requestCode == SHIZUKU_PERMISSION_REQUEST_CODE) {
|
|
||||||
val res = if (grantResult == PackageManager.PERMISSION_GRANTED) 1 else 0
|
|
||||||
nativeChannel!!.invokeMethod("resPermShizuku", mapOf("res" to res))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun shizukuInstallApk(apkFileUri: String, result: Result) {
|
|
||||||
val uri = Uri.parse(apkFileUri)
|
|
||||||
var res = false
|
|
||||||
var session: PackageInstaller.Session? = null
|
|
||||||
try {
|
|
||||||
val iPackageInstaller: IPackageInstaller =
|
|
||||||
ShizukuSystemServerApi.PackageManager_getPackageInstaller()
|
|
||||||
val isRoot = Shizuku.getUid() == 0
|
|
||||||
// The reason for use "com.android.shell" as installer package under adb
|
|
||||||
// is that getMySessions will check installer package's owner
|
|
||||||
val installerPackageName = if (isRoot) packageName else "com.android.shell"
|
|
||||||
var installerAttributionTag: String? = null
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
|
|
||||||
installerAttributionTag = attributionTag
|
|
||||||
}
|
|
||||||
val userId = if (isRoot) Process.myUserHandle().hashCode() else 0
|
|
||||||
val packageInstaller = PackageInstallerUtils.createPackageInstaller(
|
|
||||||
iPackageInstaller, installerPackageName, installerAttributionTag, userId)
|
|
||||||
val params =
|
|
||||||
PackageInstaller.SessionParams(PackageInstaller.SessionParams.MODE_FULL_INSTALL)
|
|
||||||
var installFlags: Int = PackageInstallerUtils.getInstallFlags(params)
|
|
||||||
installFlags = installFlags or (0x00000002/*PackageManager.INSTALL_REPLACE_EXISTING*/
|
|
||||||
or 0x00000004 /*PackageManager.INSTALL_ALLOW_TEST*/)
|
|
||||||
PackageInstallerUtils.setInstallFlags(params, installFlags)
|
|
||||||
val sessionId = packageInstaller.createSession(params)
|
|
||||||
val iSession = IPackageInstallerSession.Stub.asInterface(
|
|
||||||
ShizukuBinderWrapper(iPackageInstaller.openSession(sessionId).asBinder()))
|
|
||||||
session = PackageInstallerUtils.createSession(iSession)
|
|
||||||
val inputStream = contentResolver.openInputStream(uri)
|
|
||||||
val openedSession = session.openWrite("apk.apk", 0, -1)
|
|
||||||
val buffer = ByteArray(8192)
|
|
||||||
var length: Int
|
|
||||||
try {
|
|
||||||
while (inputStream!!.read(buffer).also { length = it } > 0) {
|
|
||||||
openedSession.write(buffer, 0, length)
|
|
||||||
openedSession.flush()
|
|
||||||
session.fsync(openedSession)
|
|
||||||
}
|
|
||||||
} finally {
|
|
||||||
try {
|
|
||||||
inputStream!!.close()
|
|
||||||
openedSession.close()
|
|
||||||
} catch (e: IOException) {
|
|
||||||
e.printStackTrace()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
val results = arrayOf<Intent?>(null)
|
|
||||||
val countDownLatch = CountDownLatch(1)
|
|
||||||
val intentSender: IntentSender =
|
|
||||||
IntentSenderUtils.newInstance(object : IIntentSenderAdaptor() {
|
|
||||||
override fun send(intent: Intent?) {
|
|
||||||
results[0] = intent
|
|
||||||
countDownLatch.countDown()
|
|
||||||
}
|
|
||||||
})
|
|
||||||
session.commit(intentSender)
|
|
||||||
countDownLatch.await()
|
|
||||||
res = results[0]!!.getIntExtra(
|
|
||||||
PackageInstaller.EXTRA_STATUS, PackageInstaller.STATUS_FAILURE) == 0
|
|
||||||
} catch (_: Exception) {
|
|
||||||
res = false
|
|
||||||
} finally {
|
|
||||||
if (session != null) {
|
|
||||||
try {
|
|
||||||
session.close()
|
|
||||||
} catch (_: Exception) {
|
|
||||||
res = false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
result.success(res)
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun rootCheckPermission(result: Result) {
|
|
||||||
Shell.getShell(Shell.GetShellCallback(
|
|
||||||
fun(shell: Shell) {
|
|
||||||
result.success(shell.isRoot)
|
|
||||||
}
|
|
||||||
))
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun rootInstallApk(apkFilePath: String, result: Result) {
|
|
||||||
Shell.sh("pm install -r -t " + apkFilePath).submit { out ->
|
|
||||||
val builder = StringBuilder()
|
|
||||||
for (data in out.getOut()) { builder.append(data) }
|
|
||||||
result.success(builder.toString().endsWith("Success"))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun configureFlutterEngine(@NonNull flutterEngine: FlutterEngine) {
|
|
||||||
super.configureFlutterEngine(flutterEngine)
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
|
|
||||||
HiddenApiBypass.addHiddenApiExemptions("")
|
|
||||||
}
|
|
||||||
Shizuku.addRequestPermissionResultListener(shizukuRequestPermissionResultListener)
|
|
||||||
nativeChannel = MethodChannel(
|
|
||||||
flutterEngine.dartExecutor.binaryMessenger, "native")
|
|
||||||
nativeChannel!!.setMethodCallHandler {
|
|
||||||
call, result ->
|
|
||||||
if (call.method == "getSystemFont") {
|
|
||||||
val res = DefaultSystemFont().get()
|
|
||||||
result.success(res)
|
|
||||||
} else if (call.method == "checkPermissionShizuku") {
|
|
||||||
shizukuCheckPermission(result)
|
|
||||||
} else if (call.method == "checkPermissionRoot") {
|
|
||||||
rootCheckPermission(result)
|
|
||||||
} else if (call.method == "installWithShizuku") {
|
|
||||||
val apkFileUri: String? = call.argument("apkFileUri")
|
|
||||||
shizukuInstallApk(apkFileUri!!, result)
|
|
||||||
} else if (call.method == "installWithRoot") {
|
|
||||||
val apkFilePath: String? = call.argument("apkFilePath")
|
|
||||||
rootInstallApk(apkFilePath!!, result)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onDestroy() {
|
|
||||||
super.onDestroy()
|
|
||||||
Shizuku.removeRequestPermissionResultListener(shizukuRequestPermissionResultListener)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,37 +0,0 @@
|
|||||||
package dev.imranr.obtainium.util;
|
|
||||||
|
|
||||||
import android.annotation.SuppressLint;
|
|
||||||
import android.app.Application;
|
|
||||||
import android.os.Build;
|
|
||||||
|
|
||||||
import java.lang.reflect.InvocationTargetException;
|
|
||||||
import java.lang.reflect.Method;
|
|
||||||
|
|
||||||
public class ApplicationUtils {
|
|
||||||
|
|
||||||
private static Application application;
|
|
||||||
|
|
||||||
public static Application getApplication() {
|
|
||||||
return application;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void setApplication(Application application) {
|
|
||||||
ApplicationUtils.application = application;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String getProcessName() {
|
|
||||||
if (Build.VERSION.SDK_INT >= 28)
|
|
||||||
return Application.getProcessName();
|
|
||||||
else {
|
|
||||||
try {
|
|
||||||
@SuppressLint("PrivateApi")
|
|
||||||
Class<?> activityThread = Class.forName("android.app.ActivityThread");
|
|
||||||
@SuppressLint("DiscouragedPrivateApi")
|
|
||||||
Method method = activityThread.getDeclaredMethod("currentProcessName");
|
|
||||||
return (String) method.invoke(null);
|
|
||||||
} catch (ClassNotFoundException | NoSuchMethodException | IllegalAccessException | InvocationTargetException e) {
|
|
||||||
throw new RuntimeException(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
package dev.imranr.obtainium.util;
|
|
||||||
|
|
||||||
import android.content.IIntentReceiver;
|
|
||||||
import android.content.IIntentSender;
|
|
||||||
import android.content.Intent;
|
|
||||||
import android.os.Bundle;
|
|
||||||
import android.os.IBinder;
|
|
||||||
|
|
||||||
public abstract class IIntentSenderAdaptor extends IIntentSender.Stub {
|
|
||||||
|
|
||||||
public abstract void send(Intent intent);
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int send(int code, Intent intent, String resolvedType, IIntentReceiver finishedReceiver, String requiredPermission, Bundle options) {
|
|
||||||
send(intent);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void send(int code, Intent intent, String resolvedType, IBinder whitelistToken, IIntentReceiver finishedReceiver, String requiredPermission, Bundle options) {
|
|
||||||
send(intent);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
package dev.imranr.obtainium.util;
|
|
||||||
|
|
||||||
import android.content.IIntentSender;
|
|
||||||
import android.content.IntentSender;
|
|
||||||
|
|
||||||
import java.lang.reflect.InvocationTargetException;
|
|
||||||
|
|
||||||
public class IntentSenderUtils {
|
|
||||||
|
|
||||||
public static IntentSender newInstance(IIntentSender binder) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException {
|
|
||||||
//noinspection JavaReflectionMemberAccess
|
|
||||||
return IntentSender.class.getConstructor(IIntentSender.class).newInstance(binder);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
package dev.imranr.obtainium.util;
|
|
||||||
|
|
||||||
import android.content.Context;
|
|
||||||
import android.content.pm.IPackageInstaller;
|
|
||||||
import android.content.pm.IPackageInstallerSession;
|
|
||||||
import android.content.pm.PackageInstaller;
|
|
||||||
import android.content.pm.PackageManager;
|
|
||||||
import android.os.Build;
|
|
||||||
|
|
||||||
import java.lang.reflect.InvocationTargetException;
|
|
||||||
|
|
||||||
@SuppressWarnings({"JavaReflectionMemberAccess"})
|
|
||||||
public class PackageInstallerUtils {
|
|
||||||
|
|
||||||
public static PackageInstaller createPackageInstaller(IPackageInstaller installer, String installerPackageName, String installerAttributionTag, int userId) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException {
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
|
|
||||||
return PackageInstaller.class.getConstructor(IPackageInstaller.class, String.class, String.class, int.class)
|
|
||||||
.newInstance(installer, installerPackageName, installerAttributionTag, userId);
|
|
||||||
} else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
|
||||||
return PackageInstaller.class.getConstructor(IPackageInstaller.class, String.class, int.class)
|
|
||||||
.newInstance(installer, installerPackageName, userId);
|
|
||||||
} else {
|
|
||||||
return PackageInstaller.class.getConstructor(Context.class, PackageManager.class, IPackageInstaller.class, String.class, int.class)
|
|
||||||
.newInstance(ApplicationUtils.getApplication(), ApplicationUtils.getApplication().getPackageManager(), installer, installerPackageName, userId);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static PackageInstaller.Session createSession(IPackageInstallerSession session) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException {
|
|
||||||
return PackageInstaller.Session.class.getConstructor(IPackageInstallerSession.class)
|
|
||||||
.newInstance(session);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static int getInstallFlags(PackageInstaller.SessionParams params) throws NoSuchFieldException, IllegalAccessException {
|
|
||||||
return (int) PackageInstaller.SessionParams.class.getDeclaredField("installFlags").get(params);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void setInstallFlags(PackageInstaller.SessionParams params, int newValue) throws NoSuchFieldException, IllegalAccessException {
|
|
||||||
PackageInstaller.SessionParams.class.getDeclaredField("installFlags").set(params, newValue);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,68 +0,0 @@
|
|||||||
package dev.imranr.obtainium.util;
|
|
||||||
|
|
||||||
import android.content.Context;
|
|
||||||
import android.content.pm.IPackageInstaller;
|
|
||||||
import android.content.pm.IPackageManager;
|
|
||||||
import android.content.pm.UserInfo;
|
|
||||||
import android.os.Build;
|
|
||||||
import android.os.IUserManager;
|
|
||||||
import android.os.RemoteException;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
import rikka.shizuku.ShizukuBinderWrapper;
|
|
||||||
import rikka.shizuku.SystemServiceHelper;
|
|
||||||
|
|
||||||
public class ShizukuSystemServerApi {
|
|
||||||
|
|
||||||
private static final Singleton<IPackageManager> PACKAGE_MANAGER = new Singleton<IPackageManager>() {
|
|
||||||
@Override
|
|
||||||
protected IPackageManager create() {
|
|
||||||
return IPackageManager.Stub.asInterface(new ShizukuBinderWrapper(SystemServiceHelper.getSystemService("package")));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
private static final Singleton<IUserManager> USER_MANAGER = new Singleton<IUserManager>() {
|
|
||||||
@Override
|
|
||||||
protected IUserManager create() {
|
|
||||||
return IUserManager.Stub.asInterface(new ShizukuBinderWrapper(SystemServiceHelper.getSystemService(Context.USER_SERVICE)));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
public static IPackageInstaller PackageManager_getPackageInstaller() throws RemoteException {
|
|
||||||
IPackageInstaller packageInstaller = PACKAGE_MANAGER.get().getPackageInstaller();
|
|
||||||
return IPackageInstaller.Stub.asInterface(new ShizukuBinderWrapper(packageInstaller.asBinder()));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static List<UserInfo> UserManager_getUsers(boolean excludePartial, boolean excludeDying, boolean excludePreCreated) throws RemoteException {
|
|
||||||
if (Build.VERSION.SDK_INT >= 30) {
|
|
||||||
return USER_MANAGER.get().getUsers(excludePartial, excludeDying, excludePreCreated);
|
|
||||||
} else {
|
|
||||||
try {
|
|
||||||
return USER_MANAGER.get().getUsers(excludeDying);
|
|
||||||
} catch (NoSuchFieldError e) {
|
|
||||||
return USER_MANAGER.get().getUsers(excludePartial, excludeDying, excludePreCreated);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// method 2: use transactRemote directly
|
|
||||||
/*public static List<UserInfo> UserManager_getUsers(boolean excludeDying) {
|
|
||||||
Parcel data = SystemServiceHelper.obtainParcel(Context.USER_SERVICE, "android.os.IUserManager", "getUsers");
|
|
||||||
Parcel reply = Parcel.obtain();
|
|
||||||
data.writeInt(excludeDying ? 1 : 0);
|
|
||||||
|
|
||||||
List<UserInfo> res = null;
|
|
||||||
try {
|
|
||||||
ShizukuService.transactRemote(data, reply, 0);
|
|
||||||
reply.readException();
|
|
||||||
res = reply.createTypedArrayList(UserInfo.CREATOR);
|
|
||||||
} catch (RemoteException e) {
|
|
||||||
Log.e("ShizukuSample", "UserManager#getUsers", e);
|
|
||||||
} finally {
|
|
||||||
data.recycle();
|
|
||||||
reply.recycle();
|
|
||||||
}
|
|
||||||
return res;
|
|
||||||
}*/
|
|
||||||
}
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
package dev.imranr.obtainium.util;
|
|
||||||
|
|
||||||
public abstract class Singleton<T> {
|
|
||||||
|
|
||||||
private T mInstance;
|
|
||||||
|
|
||||||
protected abstract T create();
|
|
||||||
|
|
||||||
public final T get() {
|
|
||||||
synchronized (this) {
|
|
||||||
if (mInstance == null) {
|
|
||||||
mInstance = create();
|
|
||||||
}
|
|
||||||
return mInstance;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
org.gradle.jvmargs=-Xmx1536M
|
org.gradle.jvmargs=-Xmx2048M
|
||||||
android.useAndroidX=true
|
android.useAndroidX=true
|
||||||
android.enableJetifier=true
|
android.enableJetifier=true
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(obavezno)",
|
"requiredInBrackets": "(obavezno)",
|
||||||
"dropdownNoOptsError": "GREŠKA: PADAJUĆI MENI MORA IMATI NAJMANJE JEDNU OPCIJU",
|
"dropdownNoOptsError": "GREŠKA: PADAJUĆI MENI MORA IMATI NAJMANJE JEDNU OPCIJU",
|
||||||
"colour": "Boja",
|
"colour": "Boja",
|
||||||
|
"standard": "Standard",
|
||||||
|
"custom": "Custom",
|
||||||
|
"useMaterialYou": "Use Material You",
|
||||||
"githubStarredRepos": "GitHub repo-i sa zvjezdicom",
|
"githubStarredRepos": "GitHub repo-i sa zvjezdicom",
|
||||||
"uname": "Korisničko ime",
|
"uname": "Korisničko ime",
|
||||||
"wrongArgNum": "Naveden je pogrešan broj argumenata",
|
"wrongArgNum": "Naveden je pogrešan broj argumenata",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "Nema novih ažuriranja.",
|
"noNewUpdates": "Nema novih ažuriranja.",
|
||||||
"xHasAnUpdate": "{} ima ažuriranje.",
|
"xHasAnUpdate": "{} ima ažuriranje.",
|
||||||
"appsUpdated": "Aplikacije su ažurirane",
|
"appsUpdated": "Aplikacije su ažurirane",
|
||||||
|
"appsNotUpdated": "Failed to update applications",
|
||||||
"appsUpdatedNotifDescription": "Obavještava korisnika da su u pozadini primijenjena ažuriranja na jednu ili više aplikacija",
|
"appsUpdatedNotifDescription": "Obavještava korisnika da su u pozadini primijenjena ažuriranja na jednu ili više aplikacija",
|
||||||
"xWasUpdatedToY": "{} je ažuriran na {}.",
|
"xWasUpdatedToY": "{} je ažuriran na {}.",
|
||||||
|
"xWasNotUpdatedToY": "Failed to update {} to {}.",
|
||||||
"errorCheckingUpdates": "Greška pri provjeri ažuriranja",
|
"errorCheckingUpdates": "Greška pri provjeri ažuriranja",
|
||||||
"errorCheckingUpdatesNotifDescription": "Obavijest koja se prikazuje kada provjera sigurnosnog ažuriranja ne uspije",
|
"errorCheckingUpdatesNotifDescription": "Obavijest koja se prikazuje kada provjera sigurnosnog ažuriranja ne uspije",
|
||||||
"appsRemoved": "Aplikacije su uklonjene",
|
"appsRemoved": "Aplikacije su uklonjene",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "Podržite fiksne APK URL-ove",
|
"supportFixedAPKURL": "Podržite fiksne APK URL-ove",
|
||||||
"selectX": "Izaberite {}",
|
"selectX": "Izaberite {}",
|
||||||
"parallelDownloads": "Dozvoli paralelna preuzimanja",
|
"parallelDownloads": "Dozvoli paralelna preuzimanja",
|
||||||
"installMethod": "Način instalacije",
|
"useShizuku": "Use Shizuku or Sui to install",
|
||||||
"normal": "normalno",
|
|
||||||
"root": "korijen",
|
|
||||||
"shizukuBinderNotFound": "Shizuku is not running",
|
"shizukuBinderNotFound": "Shizuku is not running",
|
||||||
|
"shizukuOld": "Old Shizuku version (<11) - update it",
|
||||||
|
"shizukuOldAndroidWithADB": "Shizuku running on Android < 8.1 with ADB - update Android or use Sui instead",
|
||||||
|
"shizukuPretendToBeGooglePlay": "Set Google Play as the installation source (if Shizuku is used)",
|
||||||
"useSystemFont": "Koristite sistemski font",
|
"useSystemFont": "Koristite sistemski font",
|
||||||
"systemFontError": "Greška pri učitavanju sistemskog fonta: {}",
|
|
||||||
"useVersionCodeAsOSVersion": "Koristite kod verzije aplikacije kao verziju koju je otkrio OS",
|
"useVersionCodeAsOSVersion": "Koristite kod verzije aplikacije kao verziju koju je otkrio OS",
|
||||||
"requestHeader": "Zaglavlje zahtjeva",
|
"requestHeader": "Zaglavlje zahtjeva",
|
||||||
"useLatestAssetDateAsReleaseDate": "Koristite najnovije otpremanje materijala kao datum izdavanja",
|
"useLatestAssetDateAsReleaseDate": "Koristite najnovije otpremanje materijala kao datum izdavanja",
|
||||||
@@ -352,6 +357,10 @@
|
|||||||
"one": "{} i još 1 aplikacija je ažurirana.",
|
"one": "{} i još 1 aplikacija je ažurirana.",
|
||||||
"other": "{} i još {} aplikacija je ažurirano."
|
"other": "{} i još {} aplikacija je ažurirano."
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "Failed to update {} and 1 more app.",
|
||||||
|
"other": "Failed to update {} and {} more apps."
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"one": "{} i još jedna aplikacija je vjerovatno ažurirana.",
|
"one": "{} i još jedna aplikacija je vjerovatno ažurirana.",
|
||||||
"other": "{} i još {} aplikacija su vjerovatno ažurirane."
|
"other": "{} i još {} aplikacija su vjerovatno ažurirane."
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(Požadované)",
|
"requiredInBrackets": "(Požadované)",
|
||||||
"dropdownNoOptsError": "ERROR: DROPDOWN MUSÍ MÍT AŽ JEDNU MOŽNOST",
|
"dropdownNoOptsError": "ERROR: DROPDOWN MUSÍ MÍT AŽ JEDNU MOŽNOST",
|
||||||
"colour": "Barva",
|
"colour": "Barva",
|
||||||
|
"standard": "Standardní",
|
||||||
|
"custom": "Vlastní",
|
||||||
|
"useMaterialYou": "Použijte materiál, který jste",
|
||||||
"githubStarredRepos": "GitHub označená hvězdičkou",
|
"githubStarredRepos": "GitHub označená hvězdičkou",
|
||||||
"uname": "Uživatelské jméno",
|
"uname": "Uživatelské jméno",
|
||||||
"wrongArgNum": "Nesprávný počet zadaných argumentů",
|
"wrongArgNum": "Nesprávný počet zadaných argumentů",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "Žádné nové aktualizace.",
|
"noNewUpdates": "Žádné nové aktualizace.",
|
||||||
"xHasAnUpdate": "{} má aktualizaci.",
|
"xHasAnUpdate": "{} má aktualizaci.",
|
||||||
"appsUpdated": "Aplikace aktualizovány",
|
"appsUpdated": "Aplikace aktualizovány",
|
||||||
|
"appsNotUpdated": "Nepodařilo se aktualizovat aplikace",
|
||||||
"appsUpdatedNotifDescription": "Upozornit, že byly provedeny aktualizace jedné nebo více aplikací na pozadí",
|
"appsUpdatedNotifDescription": "Upozornit, že byly provedeny aktualizace jedné nebo více aplikací na pozadí",
|
||||||
"xWasUpdatedToY": "{} byla aktualizována na {}",
|
"xWasUpdatedToY": "{} byla aktualizována na {}",
|
||||||
|
"xWasNotUpdatedToY": "Nepodařilo se aktualizovat {} na {}.",
|
||||||
"errorCheckingUpdates": "Chyba kontroly aktualizací",
|
"errorCheckingUpdates": "Chyba kontroly aktualizací",
|
||||||
"errorCheckingUpdatesNotifDescription": "Zobrazit oznámení při neúspěšné kontrole aktualizací na pozadí",
|
"errorCheckingUpdatesNotifDescription": "Zobrazit oznámení při neúspěšné kontrole aktualizací na pozadí",
|
||||||
"appsRemoved": "Odstraněné aplikace",
|
"appsRemoved": "Odstraněné aplikace",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "Odhadnout novější verzi na základě prvních třiceti číslic kontrolního součtu adresy URL APK, pokud není podporována jinak",
|
"supportFixedAPKURL": "Odhadnout novější verzi na základě prvních třiceti číslic kontrolního součtu adresy URL APK, pokud není podporována jinak",
|
||||||
"selectX": "Vybrat {}",
|
"selectX": "Vybrat {}",
|
||||||
"parallelDownloads": "Povolit souběžné stahování",
|
"parallelDownloads": "Povolit souběžné stahování",
|
||||||
"installMethod": "Metoda instalace",
|
"useShizuku": "K instalaci použijte Shizuku nebo Sui",
|
||||||
"normal": "Normální",
|
|
||||||
"root": "Správce",
|
|
||||||
"shizukuBinderNotFound": "Shizuku neběží",
|
"shizukuBinderNotFound": "Shizuku neběží",
|
||||||
|
"shizukuOld": "Stará verze Shizuku (<11) - aktualizujte ji",
|
||||||
|
"shizukuOldAndroidWithADB": "Shizuku běží na Androidu < 8.1 s ADB - aktualizujte Android nebo místo toho použijte Sui",
|
||||||
|
"shizukuPretendToBeGooglePlay": "Nastavení Google Play jako zdroje instalace (pokud se používá Shizuku)",
|
||||||
"useSystemFont": "Použít systémové písmo",
|
"useSystemFont": "Použít systémové písmo",
|
||||||
"systemFontError": "Chyba při načítání systémového písma: {}",
|
|
||||||
"useVersionCodeAsOSVersion": "Použít kód verze aplikace jako verzi zjištěnou OS",
|
"useVersionCodeAsOSVersion": "Použít kód verze aplikace jako verzi zjištěnou OS",
|
||||||
"requestHeader": "Hlavička požadavku",
|
"requestHeader": "Hlavička požadavku",
|
||||||
"useLatestAssetDateAsReleaseDate": "Použít poslední nahrané dílo jako datum vydání",
|
"useLatestAssetDateAsReleaseDate": "Použít poslední nahrané dílo jako datum vydání",
|
||||||
@@ -352,6 +357,10 @@
|
|||||||
"one": "{} a 1 další aplikace mají aktualizace.",
|
"one": "{} a 1 další aplikace mají aktualizace.",
|
||||||
"other": "{} a {} další aplikace byly aktualizovány."
|
"other": "{} a {} další aplikace byly aktualizovány."
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "Nepodařilo se aktualizovat {} a 1 další aplikaci.",
|
||||||
|
"other": "Nepodařilo se aktualizovat {} a {} další aplikace."
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"one": "{} a 1 další aplikace možno aktualizovat",
|
"one": "{} a 1 další aplikace možno aktualizovat",
|
||||||
"other": "{} a {} další aplikace mohou být aktualizovány."
|
"other": "{} a {} další aplikace mohou být aktualizovány."
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(wird benötigt)",
|
"requiredInBrackets": "(wird benötigt)",
|
||||||
"dropdownNoOptsError": "FEHLER: DROPDOWN MUSS MINDESTENS EINE OPTION HABEN",
|
"dropdownNoOptsError": "FEHLER: DROPDOWN MUSS MINDESTENS EINE OPTION HABEN",
|
||||||
"colour": "Farbe",
|
"colour": "Farbe",
|
||||||
|
"standard": "Standard",
|
||||||
|
"custom": "Benutzerdefiniert",
|
||||||
|
"useMaterialYou": "Verwenden Sie Material, das Sie",
|
||||||
"githubStarredRepos": "GitHub Starred Repos",
|
"githubStarredRepos": "GitHub Starred Repos",
|
||||||
"uname": "Benutzername",
|
"uname": "Benutzername",
|
||||||
"wrongArgNum": "Falsche Anzahl von Argumenten (Parametern) übermittelt",
|
"wrongArgNum": "Falsche Anzahl von Argumenten (Parametern) übermittelt",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "Keine neuen Aktualisierungen.",
|
"noNewUpdates": "Keine neuen Aktualisierungen.",
|
||||||
"xHasAnUpdate": "{} hat eine Aktualisierung.",
|
"xHasAnUpdate": "{} hat eine Aktualisierung.",
|
||||||
"appsUpdated": "Apps aktualisiert",
|
"appsUpdated": "Apps aktualisiert",
|
||||||
|
"appsNotUpdated": "Aktualisierung der Anwendungen fehlgeschlagen",
|
||||||
"appsUpdatedNotifDescription": "Benachrichtigt den Benutzer, dass Aktualisierungen für eine oder mehrere Apps im Hintergrund durchgeführt wurden",
|
"appsUpdatedNotifDescription": "Benachrichtigt den Benutzer, dass Aktualisierungen für eine oder mehrere Apps im Hintergrund durchgeführt wurden",
|
||||||
"xWasUpdatedToY": "{} wurde auf {} aktualisiert.",
|
"xWasUpdatedToY": "{} wurde auf {} aktualisiert.",
|
||||||
|
"xWasNotUpdatedToY": "Die Aktualisierung von {} auf {} ist fehlgeschlagen.",
|
||||||
"errorCheckingUpdates": "Fehler beim Prüfen auf Aktualisierungen",
|
"errorCheckingUpdates": "Fehler beim Prüfen auf Aktualisierungen",
|
||||||
"errorCheckingUpdatesNotifDescription": "Eine Benachrichtigung, die angezeigt wird, wenn die Prüfung der Hintergrundaktualisierung fehlschlägt",
|
"errorCheckingUpdatesNotifDescription": "Eine Benachrichtigung, die angezeigt wird, wenn die Prüfung der Hintergrundaktualisierung fehlschlägt",
|
||||||
"appsRemoved": "Apps entfernt",
|
"appsRemoved": "Apps entfernt",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "neuere Version anhand der ersten dreißig Zahlen der Checksumme der APK URL erraten, wenn anderweitig nicht unterstützt",
|
"supportFixedAPKURL": "neuere Version anhand der ersten dreißig Zahlen der Checksumme der APK URL erraten, wenn anderweitig nicht unterstützt",
|
||||||
"selectX": "Wähle {}",
|
"selectX": "Wähle {}",
|
||||||
"parallelDownloads": "Erlaube parallele Downloads",
|
"parallelDownloads": "Erlaube parallele Downloads",
|
||||||
"installMethod": "Installationsmethode",
|
"useShizuku": "Verwenden Sie Shizuku oder Sui zur Installation",
|
||||||
"normal": "Normal",
|
|
||||||
"root": "Root",
|
|
||||||
"shizukuBinderNotFound": "Kompatibler Shizukudienst wurde nicht gefunden",
|
"shizukuBinderNotFound": "Kompatibler Shizukudienst wurde nicht gefunden",
|
||||||
|
"shizukuOld": "Alte Shizuku-Version (<11) - aktualisieren Sie sie",
|
||||||
|
"shizukuOldAndroidWithADB": "Shizuku läuft auf Android < 8.1 mit ADB - aktualisieren Sie Android oder verwenden Sie stattdessen Sui",
|
||||||
|
"shizukuPretendToBeGooglePlay": "Google Play als Installationsquelle festlegen (wenn Shizuku verwendet wird)",
|
||||||
"useSystemFont": "Verwende die Systemschriftart",
|
"useSystemFont": "Verwende die Systemschriftart",
|
||||||
"systemFontError": "Fehler beim Laden der Systemschriftart: {}",
|
|
||||||
"useVersionCodeAsOSVersion": "Verwende die Appversion als erkannte Version vom Betriebssystem",
|
"useVersionCodeAsOSVersion": "Verwende die Appversion als erkannte Version vom Betriebssystem",
|
||||||
"requestHeader": "Request Header",
|
"requestHeader": "Request Header",
|
||||||
"useLatestAssetDateAsReleaseDate": "Den letzten Asset-Upload als Veröffentlichungsdatum verwenden",
|
"useLatestAssetDateAsReleaseDate": "Den letzten Asset-Upload als Veröffentlichungsdatum verwenden",
|
||||||
@@ -352,6 +357,10 @@
|
|||||||
"one": "{} und 1 weitere Anwendung wurden aktualisiert.",
|
"one": "{} und 1 weitere Anwendung wurden aktualisiert.",
|
||||||
"other": "{} und {} weitere Anwendungen wurden aktualisiert."
|
"other": "{} und {} weitere Anwendungen wurden aktualisiert."
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "Aktualisierung fehlgeschlagen {} und 1 weitere Anwendung.",
|
||||||
|
"other": "Die Aktualisierung von {} und {} weiteren Anwendungen ist fehlgeschlagen."
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"one": "{} und 1 weitere Anwendung wurden möglicherweise aktualisiert.",
|
"one": "{} und 1 weitere Anwendung wurden möglicherweise aktualisiert.",
|
||||||
"other": "{} und {} weitere Anwendungen wurden möglicherweise aktualisiert."
|
"other": "{} und {} weitere Anwendungen wurden möglicherweise aktualisiert."
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(Required)",
|
"requiredInBrackets": "(Required)",
|
||||||
"dropdownNoOptsError": "ERROR: DROPDOWN MUST HAVE AT LEAST ONE OPT",
|
"dropdownNoOptsError": "ERROR: DROPDOWN MUST HAVE AT LEAST ONE OPT",
|
||||||
"colour": "Colour",
|
"colour": "Colour",
|
||||||
|
"standard": "Standard",
|
||||||
|
"custom": "Custom",
|
||||||
|
"useMaterialYou": "Use Material You",
|
||||||
"githubStarredRepos": "GitHub Starred Repos",
|
"githubStarredRepos": "GitHub Starred Repos",
|
||||||
"uname": "Username",
|
"uname": "Username",
|
||||||
"wrongArgNum": "Wrong number of arguments provided",
|
"wrongArgNum": "Wrong number of arguments provided",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "No new updates.",
|
"noNewUpdates": "No new updates.",
|
||||||
"xHasAnUpdate": "{} has an update.",
|
"xHasAnUpdate": "{} has an update.",
|
||||||
"appsUpdated": "Apps Updated",
|
"appsUpdated": "Apps Updated",
|
||||||
|
"appsNotUpdated": "Failed to update applications",
|
||||||
"appsUpdatedNotifDescription": "Notifies the user that updates to one or more Apps were applied in the background",
|
"appsUpdatedNotifDescription": "Notifies the user that updates to one or more Apps were applied in the background",
|
||||||
"xWasUpdatedToY": "{} was updated to {}.",
|
"xWasUpdatedToY": "{} was updated to {}.",
|
||||||
|
"xWasNotUpdatedToY": "Failed to update {} to {}.",
|
||||||
"errorCheckingUpdates": "Error Checking for Updates",
|
"errorCheckingUpdates": "Error Checking for Updates",
|
||||||
"errorCheckingUpdatesNotifDescription": "A notification that shows when background update checking fails",
|
"errorCheckingUpdatesNotifDescription": "A notification that shows when background update checking fails",
|
||||||
"appsRemoved": "Apps Removed",
|
"appsRemoved": "Apps Removed",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "Support fixed APK URLs",
|
"supportFixedAPKURL": "Support fixed APK URLs",
|
||||||
"selectX": "Select {}",
|
"selectX": "Select {}",
|
||||||
"parallelDownloads": "Allow parallel downloads",
|
"parallelDownloads": "Allow parallel downloads",
|
||||||
"installMethod": "Installation method",
|
"useShizuku": "Use Shizuku or Sui to install",
|
||||||
"normal": "Normal",
|
"shizukuBinderNotFound": "Shizuku service not running",
|
||||||
"root": "Root",
|
"shizukuOld": "Old Shizuku version (<11) - update it",
|
||||||
"shizukuBinderNotFound": "Сompatible Shizuku service wasn't found",
|
"shizukuOldAndroidWithADB": "Shizuku running on Android < 8.1 with ADB - update Android or use Sui instead",
|
||||||
|
"shizukuPretendToBeGooglePlay": "Set Google Play as the installation source (if Shizuku is used)",
|
||||||
"useSystemFont": "Use the system font",
|
"useSystemFont": "Use the system font",
|
||||||
"systemFontError": "Error loading the system font: {}",
|
|
||||||
"useVersionCodeAsOSVersion": "Use app versionCode as OS-detected version",
|
"useVersionCodeAsOSVersion": "Use app versionCode as OS-detected version",
|
||||||
"requestHeader": "Request header",
|
"requestHeader": "Request header",
|
||||||
"useLatestAssetDateAsReleaseDate": "Use latest asset upload as release date",
|
"useLatestAssetDateAsReleaseDate": "Use latest asset upload as release date",
|
||||||
@@ -352,6 +357,10 @@
|
|||||||
"one": "{} and 1 more app was updated.",
|
"one": "{} and 1 more app was updated.",
|
||||||
"other": "{} and {} more apps were updated."
|
"other": "{} and {} more apps were updated."
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "Failed to update {} and 1 more app.",
|
||||||
|
"other": "Failed to update {} and {} more apps."
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"one": "{} and 1 more app may have been updated.",
|
"one": "{} and 1 more app may have been updated.",
|
||||||
"other": "{} and {} more apps may have been updated."
|
"other": "{} and {} more apps may have been updated."
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(Requerido)",
|
"requiredInBrackets": "(Requerido)",
|
||||||
"dropdownNoOptsError": "ERROR: EL DESPLEGABLE DEBE TENER AL MENOS UNA OPCIÓN",
|
"dropdownNoOptsError": "ERROR: EL DESPLEGABLE DEBE TENER AL MENOS UNA OPCIÓN",
|
||||||
"colour": "Color",
|
"colour": "Color",
|
||||||
|
"standard": "Estándar",
|
||||||
|
"custom": "A medida",
|
||||||
|
"useMaterialYou": "Utilice el material que",
|
||||||
"githubStarredRepos": "Repositorios favoritos en GitHub",
|
"githubStarredRepos": "Repositorios favoritos en GitHub",
|
||||||
"uname": "Nombre de usuario",
|
"uname": "Nombre de usuario",
|
||||||
"wrongArgNum": "Número de argumentos provistos inválido",
|
"wrongArgNum": "Número de argumentos provistos inválido",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "No hay nuevas actualizaciones.",
|
"noNewUpdates": "No hay nuevas actualizaciones.",
|
||||||
"xHasAnUpdate": "{} tiene una actualización.",
|
"xHasAnUpdate": "{} tiene una actualización.",
|
||||||
"appsUpdated": "Aplicaciones actualizadas",
|
"appsUpdated": "Aplicaciones actualizadas",
|
||||||
|
"appsNotUpdated": "Error al actualizar las aplicaciones",
|
||||||
"appsUpdatedNotifDescription": "Notifica al usuario de que una o más aplicaciones han sido actualizadas en segundo plano",
|
"appsUpdatedNotifDescription": "Notifica al usuario de que una o más aplicaciones han sido actualizadas en segundo plano",
|
||||||
"xWasUpdatedToY": "{} ha sido actualizada a {}.",
|
"xWasUpdatedToY": "{} ha sido actualizada a {}.",
|
||||||
|
"xWasNotUpdatedToY": "Error al actualizar {} a {}.",
|
||||||
"errorCheckingUpdates": "Error al buscar actualizaciones",
|
"errorCheckingUpdates": "Error al buscar actualizaciones",
|
||||||
"errorCheckingUpdatesNotifDescription": "Una notificación que muestra cuándo la comprobación de actualizaciones en segundo plano falla",
|
"errorCheckingUpdatesNotifDescription": "Una notificación que muestra cuándo la comprobación de actualizaciones en segundo plano falla",
|
||||||
"appsRemoved": "Aplicaciones eliminadas",
|
"appsRemoved": "Aplicaciones eliminadas",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "Soporte para URLs fijas de APK",
|
"supportFixedAPKURL": "Soporte para URLs fijas de APK",
|
||||||
"selectX": "Selecciona {}",
|
"selectX": "Selecciona {}",
|
||||||
"parallelDownloads": "Permitir descargas paralelas",
|
"parallelDownloads": "Permitir descargas paralelas",
|
||||||
"installMethod": "Método de instalación",
|
"useShizuku": "Utilice Shizuku o Sui para instalar",
|
||||||
"normal": "Normal",
|
|
||||||
"root": "Raíz",
|
|
||||||
"shizukuBinderNotFound": "Shizuku no funciona",
|
"shizukuBinderNotFound": "Shizuku no funciona",
|
||||||
|
"shizukuOld": "Versión antigua de Shizuku (<11) - actualízala",
|
||||||
|
"shizukuOldAndroidWithADB": "Shizuku corriendo en Android < 8.1 con ADB - actualiza Android o usa Sui en su lugar",
|
||||||
|
"shizukuPretendToBeGooglePlay": "Establecer Google Play como fuente de instalación (si se utiliza Shizuku)",
|
||||||
"useSystemFont": "Usar la fuente de impresión del sistema",
|
"useSystemFont": "Usar la fuente de impresión del sistema",
|
||||||
"systemFontError": "Error al cargar la fuente de impresión del sistema: {}",
|
|
||||||
"useVersionCodeAsOSVersion": "Usar la versión de la aplicación como versión detectada por el sistema operativo",
|
"useVersionCodeAsOSVersion": "Usar la versión de la aplicación como versión detectada por el sistema operativo",
|
||||||
"requestHeader": "Encabezado de solicitud",
|
"requestHeader": "Encabezado de solicitud",
|
||||||
"useLatestAssetDateAsReleaseDate": "Usar la última carga de recursos como fecha de lanzamiento",
|
"useLatestAssetDateAsReleaseDate": "Usar la última carga de recursos como fecha de lanzamiento",
|
||||||
@@ -352,6 +357,10 @@
|
|||||||
"one": "{} y 1 aplicación más se han actualizado.",
|
"one": "{} y 1 aplicación más se han actualizado.",
|
||||||
"other": "{} y {} aplicaciones más se han actualizado."
|
"other": "{} y {} aplicaciones más se han actualizado."
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "Error al actualizar {} y 1 aplicación más.",
|
||||||
|
"other": "No se han podido actualizar {} y {} aplicaciones más."
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"one": "{} y 1 aplicación más podría haber sido actualizada.",
|
"one": "{} y 1 aplicación más podría haber sido actualizada.",
|
||||||
"other": "{} y {} aplicaciones más podrían haber sido actualizadas."
|
"other": "{} y {} aplicaciones más podrían haber sido actualizadas."
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(ضروری)",
|
"requiredInBrackets": "(ضروری)",
|
||||||
"dropdownNoOptsError": "خطا: کشویی باید حداقل یک گزینه داشته باشد",
|
"dropdownNoOptsError": "خطا: کشویی باید حداقل یک گزینه داشته باشد",
|
||||||
"colour": "رنگ",
|
"colour": "رنگ",
|
||||||
|
"standard": "Standard",
|
||||||
|
"custom": "Custom",
|
||||||
|
"useMaterialYou": "Use Material You",
|
||||||
"githubStarredRepos": "مخازن ستاره دار گیتهاب",
|
"githubStarredRepos": "مخازن ستاره دار گیتهاب",
|
||||||
"uname": "نام کاربری",
|
"uname": "نام کاربری",
|
||||||
"wrongArgNum": "تعداد آرگومان های ارائه شده اشتباه است",
|
"wrongArgNum": "تعداد آرگومان های ارائه شده اشتباه است",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "به روز رسانی جدیدی وجود ندارد.",
|
"noNewUpdates": "به روز رسانی جدیدی وجود ندارد.",
|
||||||
"xHasAnUpdate": "{} یک به روز رسانی دارد.",
|
"xHasAnUpdate": "{} یک به روز رسانی دارد.",
|
||||||
"appsUpdated": "برنامه ها به روز شدند",
|
"appsUpdated": "برنامه ها به روز شدند",
|
||||||
|
"appsNotUpdated": "Failed to update applications",
|
||||||
"appsUpdatedNotifDescription": "به کاربر اطلاع می دهد که به روز رسانی یک یا چند برنامه در پس زمینه اعمال شده است",
|
"appsUpdatedNotifDescription": "به کاربر اطلاع می دهد که به روز رسانی یک یا چند برنامه در پس زمینه اعمال شده است",
|
||||||
"xWasUpdatedToY": "{} به {} به روز شد.",
|
"xWasUpdatedToY": "{} به {} به روز شد.",
|
||||||
|
"xWasNotUpdatedToY": "Failed to update {} to {}.",
|
||||||
"errorCheckingUpdates": "خطا در بررسی بهروزرسانیها",
|
"errorCheckingUpdates": "خطا در بررسی بهروزرسانیها",
|
||||||
"errorCheckingUpdatesNotifDescription": "اعلانی که وقتی بررسی بهروزرسانی پسزمینه ناموفق است نشان میدهد",
|
"errorCheckingUpdatesNotifDescription": "اعلانی که وقتی بررسی بهروزرسانی پسزمینه ناموفق است نشان میدهد",
|
||||||
"appsRemoved": "برنامه ها حذف شدند",
|
"appsRemoved": "برنامه ها حذف شدند",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "پشتیبانی از URL های APK ثابت",
|
"supportFixedAPKURL": "پشتیبانی از URL های APK ثابت",
|
||||||
"selectX": "انتخاب کنید {}",
|
"selectX": "انتخاب کنید {}",
|
||||||
"parallelDownloads": "اجازه دانلود موازی",
|
"parallelDownloads": "اجازه دانلود موازی",
|
||||||
"installMethod": "روش نصب",
|
"useShizuku": "Use Shizuku or Sui to install",
|
||||||
"normal": "طبیعی",
|
|
||||||
"root": "ریشه",
|
|
||||||
"shizukuBinderNotFound": "Shizuku در حال اجرا نیست",
|
"shizukuBinderNotFound": "Shizuku در حال اجرا نیست",
|
||||||
|
"shizukuOld": "Old Shizuku version (<11) - update it",
|
||||||
|
"shizukuOldAndroidWithADB": "Shizuku running on Android < 8.1 with ADB - update Android or use Sui instead",
|
||||||
|
"shizukuPretendToBeGooglePlay": "Set Google Play as the installation source (if Shizuku is used)",
|
||||||
"useSystemFont": "استفاده از فونت سیستم",
|
"useSystemFont": "استفاده از فونت سیستم",
|
||||||
"systemFontError": "خطا در بارگیری فونت سیستم: {}",
|
|
||||||
"useVersionCodeAsOSVersion": "استفاده کد نسخه برنامه به جای نسخه شناسایی شده توسط سیستم عامل استفاده کنید",
|
"useVersionCodeAsOSVersion": "استفاده کد نسخه برنامه به جای نسخه شناسایی شده توسط سیستم عامل استفاده کنید",
|
||||||
"requestHeader": "درخواست سطر بالایی",
|
"requestHeader": "درخواست سطر بالایی",
|
||||||
"useLatestAssetDateAsReleaseDate": "استفاده از آخرین بارگذاری دارایی به عنوان تاریخ انتشار",
|
"useLatestAssetDateAsReleaseDate": "استفاده از آخرین بارگذاری دارایی به عنوان تاریخ انتشار",
|
||||||
@@ -352,6 +357,10 @@
|
|||||||
"one": "{} و 1 برنامه دیگر به روز شدند.",
|
"one": "{} و 1 برنامه دیگر به روز شدند.",
|
||||||
"other": "{} و {} برنامه دیگر به روز شدند."
|
"other": "{} و {} برنامه دیگر به روز شدند."
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "Failed to update {} and 1 more app.",
|
||||||
|
"other": "Failed to update {} and {} more apps."
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"one": "{} و 1 برنامه دیگر ممکن است به روز شده باشند.",
|
"one": "{} و 1 برنامه دیگر ممکن است به روز شده باشند.",
|
||||||
"other": "ممکن است {} و {} برنامه های دیگر به روز شده باشند."
|
"other": "ممکن است {} و {} برنامه های دیگر به روز شده باشند."
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(Requis)",
|
"requiredInBrackets": "(Requis)",
|
||||||
"dropdownNoOptsError": "ERREUR : LE DÉROULEMENT DOIT AVOIR AU MOINS UNE OPT",
|
"dropdownNoOptsError": "ERREUR : LE DÉROULEMENT DOIT AVOIR AU MOINS UNE OPT",
|
||||||
"colour": "Couleur",
|
"colour": "Couleur",
|
||||||
|
"standard": "Standard",
|
||||||
|
"custom": "Sur mesure",
|
||||||
|
"useMaterialYou": "Utiliser le matériel que vous",
|
||||||
"githubStarredRepos": "Dépôts étoilés GitHub",
|
"githubStarredRepos": "Dépôts étoilés GitHub",
|
||||||
"uname": "Nom d'utilisateur",
|
"uname": "Nom d'utilisateur",
|
||||||
"wrongArgNum": "Mauvais nombre d'arguments fournis",
|
"wrongArgNum": "Mauvais nombre d'arguments fournis",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "Aucune nouvelle mise à jour.",
|
"noNewUpdates": "Aucune nouvelle mise à jour.",
|
||||||
"xHasAnUpdate": "{} a une mise à jour.",
|
"xHasAnUpdate": "{} a une mise à jour.",
|
||||||
"appsUpdated": "Applications mises à jour",
|
"appsUpdated": "Applications mises à jour",
|
||||||
|
"appsNotUpdated": "Échec de la mise à jour des applications",
|
||||||
"appsUpdatedNotifDescription": "Avertit l'utilisateur que les mises à jour d'une ou plusieurs applications ont été appliquées en arrière-plan",
|
"appsUpdatedNotifDescription": "Avertit l'utilisateur que les mises à jour d'une ou plusieurs applications ont été appliquées en arrière-plan",
|
||||||
"xWasUpdatedToY": "{} a été mis à jour pour {}.",
|
"xWasUpdatedToY": "{} a été mis à jour pour {}.",
|
||||||
|
"xWasNotUpdatedToY": "Échec de la mise à jour de {} vers {}.",
|
||||||
"errorCheckingUpdates": "Erreur lors de la vérification des mises à jour",
|
"errorCheckingUpdates": "Erreur lors de la vérification des mises à jour",
|
||||||
"errorCheckingUpdatesNotifDescription": "Une notification qui s'affiche lorsque la vérification de la mise à jour en arrière-plan échoue",
|
"errorCheckingUpdatesNotifDescription": "Une notification qui s'affiche lorsque la vérification de la mise à jour en arrière-plan échoue",
|
||||||
"appsRemoved": "Applications supprimées",
|
"appsRemoved": "Applications supprimées",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "Prise en charge des URL APK fixes",
|
"supportFixedAPKURL": "Prise en charge des URL APK fixes",
|
||||||
"selectX": "Sélectionner {}",
|
"selectX": "Sélectionner {}",
|
||||||
"parallelDownloads": "Autoriser les téléchargements parallèles",
|
"parallelDownloads": "Autoriser les téléchargements parallèles",
|
||||||
"installMethod": "Méthode d'installation",
|
"useShizuku": "Utiliser Shizuku ou Sui pour l'installation",
|
||||||
"normal": "Normale",
|
|
||||||
"root": "Racine",
|
|
||||||
"shizukuBinderNotFound": "Service Shizuku compatible non trouvé",
|
"shizukuBinderNotFound": "Service Shizuku compatible non trouvé",
|
||||||
|
"shizukuOld": "Ancienne version de Shizuku (<11) - la mettre à jour",
|
||||||
|
"shizukuOldAndroidWithADB": "Shizuku fonctionne sur Android < 8.1 avec ADB - mettre à jour Android ou utiliser Sui à la place",
|
||||||
|
"shizukuPretendToBeGooglePlay": "Définir Google Play comme source d'installation (si Shizuku est utilisé)",
|
||||||
"useSystemFont": "Utiliser la police du système",
|
"useSystemFont": "Utiliser la police du système",
|
||||||
"systemFontError": "Erreur de chargement de la police du système : {}",
|
|
||||||
"useVersionCodeAsOSVersion": "Utiliser le code de version de l'application comme version détectée par le système d'exploitation",
|
"useVersionCodeAsOSVersion": "Utiliser le code de version de l'application comme version détectée par le système d'exploitation",
|
||||||
"requestHeader": "En-tête de demande",
|
"requestHeader": "En-tête de demande",
|
||||||
"useLatestAssetDateAsReleaseDate": "Utiliser le dernier élément téléversé comme date de sortie",
|
"useLatestAssetDateAsReleaseDate": "Utiliser le dernier élément téléversé comme date de sortie",
|
||||||
@@ -352,6 +357,10 @@
|
|||||||
"one": "{} et 1 autre application ont été mises à jour.",
|
"one": "{} et 1 autre application ont été mises à jour.",
|
||||||
"other": "{} et {} autres applications ont été mises à jour."
|
"other": "{} et {} autres applications ont été mises à jour."
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "Échec de la mise à jour de {} et d'une autre application.",
|
||||||
|
"other": "Échec de la mise à jour de {} et {} autres applications."
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"une": "{} et 1 application supplémentaire ont peut-être été mises à jour.",
|
"une": "{} et 1 application supplémentaire ont peut-être été mises à jour.",
|
||||||
"other": "{} et {} autres applications peuvent avoir été mises à jour."
|
"other": "{} et {} autres applications peuvent avoir été mises à jour."
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(Kötelező)",
|
"requiredInBrackets": "(Kötelező)",
|
||||||
"dropdownNoOptsError": "HIBA: A LEDOBÁST LEGALÁBB EGY OPCIÓHOZ KELL RENDELNI",
|
"dropdownNoOptsError": "HIBA: A LEDOBÁST LEGALÁBB EGY OPCIÓHOZ KELL RENDELNI",
|
||||||
"colour": "Szín",
|
"colour": "Szín",
|
||||||
|
"standard": "Standard",
|
||||||
|
"custom": "Custom",
|
||||||
|
"useMaterialYou": "Használja az Ön által használt anyagot",
|
||||||
"githubStarredRepos": "GitHub Csillagos Repo-k",
|
"githubStarredRepos": "GitHub Csillagos Repo-k",
|
||||||
"uname": "Felh.név",
|
"uname": "Felh.név",
|
||||||
"wrongArgNum": "Rossz számú argumentumot adott meg",
|
"wrongArgNum": "Rossz számú argumentumot adott meg",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "Nincsenek új frissítések.",
|
"noNewUpdates": "Nincsenek új frissítések.",
|
||||||
"xHasAnUpdate": "A(z) {} frissítést kapott.",
|
"xHasAnUpdate": "A(z) {} frissítést kapott.",
|
||||||
"appsUpdated": "Alkalmazások frissítve",
|
"appsUpdated": "Alkalmazások frissítve",
|
||||||
|
"appsNotUpdated": "Nem sikerült frissíteni az alkalmazásokat",
|
||||||
"appsUpdatedNotifDescription": "Értesíti a felhasználót, hogy egy/több app frissítése megtörtént a háttérben",
|
"appsUpdatedNotifDescription": "Értesíti a felhasználót, hogy egy/több app frissítése megtörtént a háttérben",
|
||||||
"xWasUpdatedToY": "{} frissítve a következőre: {}.",
|
"xWasUpdatedToY": "{} frissítve a következőre: {}.",
|
||||||
|
"xWasNotUpdatedToY": "A {} frissítése a {}-ra nem sikerült.",
|
||||||
"errorCheckingUpdates": "Hiba a frissítések keresésekor",
|
"errorCheckingUpdates": "Hiba a frissítések keresésekor",
|
||||||
"errorCheckingUpdatesNotifDescription": "Értesítés, amely akkor jelenik meg, ha a háttérbeli frissítések ellenőrzése sikertelen",
|
"errorCheckingUpdatesNotifDescription": "Értesítés, amely akkor jelenik meg, ha a háttérbeli frissítések ellenőrzése sikertelen",
|
||||||
"appsRemoved": "Alkalmazások eltávolítva",
|
"appsRemoved": "Alkalmazások eltávolítva",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "Támogatja a rögzített APK URL-eket",
|
"supportFixedAPKURL": "Támogatja a rögzített APK URL-eket",
|
||||||
"selectX": "Kiválaszt {}",
|
"selectX": "Kiválaszt {}",
|
||||||
"parallelDownloads": "Párhuzamos letöltéseket enged",
|
"parallelDownloads": "Párhuzamos letöltéseket enged",
|
||||||
"installMethod": "Telepítési mód",
|
"useShizuku": "Használja Shizuku vagy Sui telepítéséhez",
|
||||||
"normal": "Normál",
|
|
||||||
"root": "Root",
|
|
||||||
"shizukuBinderNotFound": "A Shizuku nem fut",
|
"shizukuBinderNotFound": "A Shizuku nem fut",
|
||||||
|
"shizukuOld": "Régi Shizuku verzió (<11) - frissítsd!",
|
||||||
|
"shizukuOldAndroidWithADB": "Shizuku fut Android < 8.1 ADB-vel - frissítse az Androidot vagy használja a Sui-t helyette",
|
||||||
|
"shizukuPretendToBeGooglePlay": "Állítsa be a Google Play-t telepítési forrásként (ha Shizuku-t használ)",
|
||||||
"useSystemFont": "Használja a rendszer betűtípusát",
|
"useSystemFont": "Használja a rendszer betűtípusát",
|
||||||
"systemFontError": "Hiba a rendszer betűtípusának betöltésekor: {}",
|
|
||||||
"useVersionCodeAsOSVersion": "Az app verziókód használata a rendszer által észlelt verzióként",
|
"useVersionCodeAsOSVersion": "Az app verziókód használata a rendszer által észlelt verzióként",
|
||||||
"requestHeader": "Kérelem fejléc",
|
"requestHeader": "Kérelem fejléc",
|
||||||
"useLatestAssetDateAsReleaseDate": "Használja a legújabb tartalomfeltöltést megjelenési dátumként",
|
"useLatestAssetDateAsReleaseDate": "Használja a legújabb tartalomfeltöltést megjelenési dátumként",
|
||||||
@@ -352,6 +357,10 @@
|
|||||||
"one": "A(z) {} és 1 további alkalmazás frissítve.",
|
"one": "A(z) {} és 1 további alkalmazás frissítve.",
|
||||||
"other": "{} és {} további alkalmazás frissítve."
|
"other": "{} és {} további alkalmazás frissítve."
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "Nem sikerült frissíteni {} és még 1 alkalmazást.",
|
||||||
|
"other": "Nem sikerült frissíteni {} és {} további alkalmazásokat."
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"one": "{} és 1 további alkalmazás is frissült.",
|
"one": "{} és 1 további alkalmazás is frissült.",
|
||||||
"other": "{} és {} további alkalmazás is frissült."
|
"other": "{} és {} további alkalmazás is frissült."
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(richiesto)",
|
"requiredInBrackets": "(richiesto)",
|
||||||
"dropdownNoOptsError": "ERRORE: LA TENDINA DEVE AVERE ALMENO UN'OPZIONE",
|
"dropdownNoOptsError": "ERRORE: LA TENDINA DEVE AVERE ALMENO UN'OPZIONE",
|
||||||
"colour": "Colore",
|
"colour": "Colore",
|
||||||
|
"standard": "Standard",
|
||||||
|
"custom": "Personalizzato",
|
||||||
|
"useMaterialYou": "Utilizzate il materiale che avete a disposizione",
|
||||||
"githubStarredRepos": "repository stellati da GitHub",
|
"githubStarredRepos": "repository stellati da GitHub",
|
||||||
"uname": "Nome utente",
|
"uname": "Nome utente",
|
||||||
"wrongArgNum": "Numero di argomenti forniti errato",
|
"wrongArgNum": "Numero di argomenti forniti errato",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "Nessun nuovo aggiornamento.",
|
"noNewUpdates": "Nessun nuovo aggiornamento.",
|
||||||
"xHasAnUpdate": "Aggiornamento disponibile per {}",
|
"xHasAnUpdate": "Aggiornamento disponibile per {}",
|
||||||
"appsUpdated": "App aggiornate",
|
"appsUpdated": "App aggiornate",
|
||||||
|
"appsNotUpdated": "Impossibile aggiornare le applicazioni",
|
||||||
"appsUpdatedNotifDescription": "Notifica all'utente che una o più app sono state aggiornate in secondo piano",
|
"appsUpdatedNotifDescription": "Notifica all'utente che una o più app sono state aggiornate in secondo piano",
|
||||||
"xWasUpdatedToY": "{} è stato aggiornato alla {}.",
|
"xWasUpdatedToY": "{} è stato aggiornato alla {}.",
|
||||||
|
"xWasNotUpdatedToY": "Impossibile aggiornare {} a {}.",
|
||||||
"errorCheckingUpdates": "Controllo degli errori per gli aggiornamenti",
|
"errorCheckingUpdates": "Controllo degli errori per gli aggiornamenti",
|
||||||
"errorCheckingUpdatesNotifDescription": "Una notifica che mostra quando il controllo degli aggiornamenti in secondo piano fallisce",
|
"errorCheckingUpdatesNotifDescription": "Una notifica che mostra quando il controllo degli aggiornamenti in secondo piano fallisce",
|
||||||
"appsRemoved": "App rimosse",
|
"appsRemoved": "App rimosse",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "Supporta URL fissi di APK",
|
"supportFixedAPKURL": "Supporta URL fissi di APK",
|
||||||
"selectX": "Seleziona {}",
|
"selectX": "Seleziona {}",
|
||||||
"parallelDownloads": "Permetti download paralleli",
|
"parallelDownloads": "Permetti download paralleli",
|
||||||
"installMethod": "Metodo d'installazione",
|
"useShizuku": "Utilizzare Shizuku o Sui per installare",
|
||||||
"normal": "Normale",
|
|
||||||
"root": "Root",
|
|
||||||
"shizukuBinderNotFound": "Shizuku non è in esecuzione",
|
"shizukuBinderNotFound": "Shizuku non è in esecuzione",
|
||||||
|
"shizukuOld": "Vecchia versione di Shizuku (<11) - aggiornarla",
|
||||||
|
"shizukuOldAndroidWithADB": "Shizuku funziona su Android < 8.1 con ADB - aggiornare Android o utilizzare Sui al suo posto",
|
||||||
|
"shizukuPretendToBeGooglePlay": "Impostare Google Play come fonte di installazione (se si usa Shizuku)",
|
||||||
"useSystemFont": "Usa i caratteri di sistema",
|
"useSystemFont": "Usa i caratteri di sistema",
|
||||||
"systemFontError": "Errore durante il caricamento dei caratteri di sistema: {}",
|
|
||||||
"useVersionCodeAsOSVersion": "Usa il codice versione dell'app come versione rilevata dal sistema operativo",
|
"useVersionCodeAsOSVersion": "Usa il codice versione dell'app come versione rilevata dal sistema operativo",
|
||||||
"requestHeader": "Intestazione della richiesta",
|
"requestHeader": "Intestazione della richiesta",
|
||||||
"useLatestAssetDateAsReleaseDate": "Usa l'ultimo caricamento della risorsa come data di rilascio",
|
"useLatestAssetDateAsReleaseDate": "Usa l'ultimo caricamento della risorsa come data di rilascio",
|
||||||
@@ -352,6 +357,10 @@
|
|||||||
"one": "{} e un'altra app sono state aggiornate.",
|
"one": "{} e un'altra app sono state aggiornate.",
|
||||||
"other": "{} e altre {} app sono state aggiornate."
|
"other": "{} e altre {} app sono state aggiornate."
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "Non è riuscito ad aggiornare {} e altre 1 app.",
|
||||||
|
"other": "Non è riuscito ad aggiornare {} e {} altre applicazioni."
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"one": "{} e un'altra app potrebbero essere state aggiornate.",
|
"one": "{} e un'altra app potrebbero essere state aggiornate.",
|
||||||
"other": "{} e altre {} app potrebbero essere state aggiornate."
|
"other": "{} e altre {} app potrebbero essere state aggiornate."
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(必須)",
|
"requiredInBrackets": "(必須)",
|
||||||
"dropdownNoOptsError": "エラー: ドロップダウンには、少なくとも1つのオプションが必要です",
|
"dropdownNoOptsError": "エラー: ドロップダウンには、少なくとも1つのオプションが必要です",
|
||||||
"colour": "カラー",
|
"colour": "カラー",
|
||||||
|
"standard": "スタンダード",
|
||||||
|
"custom": "カスタム",
|
||||||
|
"useMaterialYou": "使用素材",
|
||||||
"githubStarredRepos": "Githubでスターしたリポジトリ",
|
"githubStarredRepos": "Githubでスターしたリポジトリ",
|
||||||
"uname": "ユーザー名",
|
"uname": "ユーザー名",
|
||||||
"wrongArgNum": "提供する引数の数が間違っています",
|
"wrongArgNum": "提供する引数の数が間違っています",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "新しいアップデートはありません",
|
"noNewUpdates": "新しいアップデートはありません",
|
||||||
"xHasAnUpdate": "{} のアップデートが利用可能です。",
|
"xHasAnUpdate": "{} のアップデートが利用可能です。",
|
||||||
"appsUpdated": "アプリをアップデートしました",
|
"appsUpdated": "アプリをアップデートしました",
|
||||||
|
"appsNotUpdated": "アプリケーションの更新に失敗",
|
||||||
"appsUpdatedNotifDescription": "1つまたは複数のAppのアップデートがバックグラウンドで適用されたことをユーザーに通知する",
|
"appsUpdatedNotifDescription": "1つまたは複数のAppのアップデートがバックグラウンドで適用されたことをユーザーに通知する",
|
||||||
"xWasUpdatedToY": "{} が {} にアップデートされました",
|
"xWasUpdatedToY": "{} が {} にアップデートされました",
|
||||||
|
"xWasNotUpdatedToY": "への更新に失敗しました。",
|
||||||
"errorCheckingUpdates": "アップデート確認中のエラー",
|
"errorCheckingUpdates": "アップデート確認中のエラー",
|
||||||
"errorCheckingUpdatesNotifDescription": "バックグラウンドでのアップデート確認に失敗した際に表示される通知",
|
"errorCheckingUpdatesNotifDescription": "バックグラウンドでのアップデート確認に失敗した際に表示される通知",
|
||||||
"appsRemoved": "削除されたアプリ",
|
"appsRemoved": "削除されたアプリ",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "固定されたAPKのURLをサポートする",
|
"supportFixedAPKURL": "固定されたAPKのURLをサポートする",
|
||||||
"selectX": "{} 選択",
|
"selectX": "{} 選択",
|
||||||
"parallelDownloads": "並行ダウンロードを許可する",
|
"parallelDownloads": "並行ダウンロードを許可する",
|
||||||
"installMethod": "インストール方法",
|
"useShizuku": "シズクまたはスイを使って設置する",
|
||||||
"normal": "通常",
|
|
||||||
"root": "Root",
|
|
||||||
"shizukuBinderNotFound": "Shizukuが起動していません",
|
"shizukuBinderNotFound": "Shizukuが起動していません",
|
||||||
|
"shizukuOld": "古い雫バージョン (<11) - アップデートしてください。",
|
||||||
|
"shizukuOldAndroidWithADB": "雫、Android < 8.1でADB動作 - Androidをアップデートするか、代わりにSuiを使うか",
|
||||||
|
"shizukuPretendToBeGooglePlay": "インストール元をGoogle Playに設定する(雫を使用する場合)",
|
||||||
"useSystemFont": "システムフォントを使用する",
|
"useSystemFont": "システムフォントを使用する",
|
||||||
"systemFontError": "システムフォントの読み込みエラー: {}",
|
|
||||||
"useVersionCodeAsOSVersion": "アプリのバージョンコードをOSで検出されたバージョンとして使用する",
|
"useVersionCodeAsOSVersion": "アプリのバージョンコードをOSで検出されたバージョンとして使用する",
|
||||||
"requestHeader": "リクエストヘッダー",
|
"requestHeader": "リクエストヘッダー",
|
||||||
"useLatestAssetDateAsReleaseDate": "最新のアセットアップロードをリリース日として使用する",
|
"useLatestAssetDateAsReleaseDate": "最新のアセットアップロードをリリース日として使用する",
|
||||||
@@ -352,6 +357,10 @@
|
|||||||
"one": "{} とさらに {} 個のアプリがアップデートされました。",
|
"one": "{} とさらに {} 個のアプリがアップデートされました。",
|
||||||
"other": "{} とさらに {} 個のアプリがアップデートされました。"
|
"other": "{} とさらに {} 個のアプリがアップデートされました。"
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "更新に失敗しました。",
|
||||||
|
"other": "アプリのアップデートに失敗しました。"
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"one": "{} とさらに 1 個のアプリがアップデートされた可能性があります。",
|
"one": "{} とさらに 1 個のアプリがアップデートされた可能性があります。",
|
||||||
"other": "{} とさらに {} 個のアプリがアップデートされた可能性があります。"
|
"other": "{} とさらに {} 個のアプリがアップデートされた可能性があります。"
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(Verplicht)",
|
"requiredInBrackets": "(Verplicht)",
|
||||||
"dropdownNoOptsError": "FOUTMELDING: DROPDOWN MOET TENMINSTE ÉÉN OPT HEBBEN",
|
"dropdownNoOptsError": "FOUTMELDING: DROPDOWN MOET TENMINSTE ÉÉN OPT HEBBEN",
|
||||||
"colour": "Kleur",
|
"colour": "Kleur",
|
||||||
|
"standard": "Standaard",
|
||||||
|
"custom": "Aangepast",
|
||||||
|
"useMaterialYou": "Gebruik materiaal",
|
||||||
"githubStarredRepos": "GitHub-repo's met ster",
|
"githubStarredRepos": "GitHub-repo's met ster",
|
||||||
"uname": "Gebruikersnaam",
|
"uname": "Gebruikersnaam",
|
||||||
"wrongArgNum": "Onjuist aantal argumenten verstrekt.",
|
"wrongArgNum": "Onjuist aantal argumenten verstrekt.",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "Geen nieuwe updates.",
|
"noNewUpdates": "Geen nieuwe updates.",
|
||||||
"xHasAnUpdate": "{} heeft een update.",
|
"xHasAnUpdate": "{} heeft een update.",
|
||||||
"appsUpdated": "Apps bijgewerkt",
|
"appsUpdated": "Apps bijgewerkt",
|
||||||
|
"appsNotUpdated": "Applicaties konden niet worden bijgewerkt",
|
||||||
"appsUpdatedNotifDescription": "Stelt de gebruiker op de hoogte dat updates voor één of meer apps in de achtergrond zijn toegepast.",
|
"appsUpdatedNotifDescription": "Stelt de gebruiker op de hoogte dat updates voor één of meer apps in de achtergrond zijn toegepast.",
|
||||||
"xWasUpdatedToY": "{} is bijgewerkt naar {}.",
|
"xWasUpdatedToY": "{} is bijgewerkt naar {}.",
|
||||||
|
"xWasNotUpdatedToY": "Het bijwerken van {} naar {} is mislukt.",
|
||||||
"errorCheckingUpdates": "Fout bij het controleren op updates",
|
"errorCheckingUpdates": "Fout bij het controleren op updates",
|
||||||
"errorCheckingUpdatesNotifDescription": "Een melding die verschijnt wanneer het controleren op updates in de achtergrond mislukt",
|
"errorCheckingUpdatesNotifDescription": "Een melding die verschijnt wanneer het controleren op updates in de achtergrond mislukt",
|
||||||
"appsRemoved": "Apps verwijderd",
|
"appsRemoved": "Apps verwijderd",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "Ondersteuning vaste APK URL's",
|
"supportFixedAPKURL": "Ondersteuning vaste APK URL's",
|
||||||
"selectX": "Selecteer {}",
|
"selectX": "Selecteer {}",
|
||||||
"parallelDownloads": "Parallelle downloads toestaan",
|
"parallelDownloads": "Parallelle downloads toestaan",
|
||||||
"installMethod": "Installatiemethode",
|
"useShizuku": "Gebruik Shizuku of Sui om te installeren",
|
||||||
"normal": "Normaal",
|
|
||||||
"root": "Wortel",
|
|
||||||
"shizukuBinderNotFound": "Shizuku draait niet",
|
"shizukuBinderNotFound": "Shizuku draait niet",
|
||||||
|
"shizukuOld": "Oude Shizuku-versie (<11) - bijwerken",
|
||||||
|
"shizukuOldAndroidWithADB": "Shizuku draait op Android < 8.1 met ADB - update Android of gebruik Sui in plaats daarvan",
|
||||||
|
"shizukuPretendToBeGooglePlay": "Google Play instellen als installatiebron (als Shizuku wordt gebruikt)",
|
||||||
"useSystemFont": "Gebruik het systeemlettertype",
|
"useSystemFont": "Gebruik het systeemlettertype",
|
||||||
"systemFontError": "Fout bij het laden van het systeemlettertype: {}",
|
|
||||||
"useVersionCodeAsOSVersion": "Gebruik app versieCode als door OS gedetecteerde versie",
|
"useVersionCodeAsOSVersion": "Gebruik app versieCode als door OS gedetecteerde versie",
|
||||||
"requestHeader": "Verzoekkoptekst",
|
"requestHeader": "Verzoekkoptekst",
|
||||||
"useLatestAssetDateAsReleaseDate": "Gebruik laatste upload als releasedatum",
|
"useLatestAssetDateAsReleaseDate": "Gebruik laatste upload als releasedatum",
|
||||||
@@ -352,6 +357,10 @@
|
|||||||
"one": "{} en nog 1 app is bijgewerkt.",
|
"one": "{} en nog 1 app is bijgewerkt.",
|
||||||
"other": "{} en {} meer apps zijn bijgewerkt."
|
"other": "{} en {} meer apps zijn bijgewerkt."
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "Bijwerken mislukt {} en nog 1 app.",
|
||||||
|
"other": "Mislukt om {} en {} meer apps bij te werken."
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"one": "{} en nog 1 app zijn mogelijk bijgewerkt.",
|
"one": "{} en nog 1 app zijn mogelijk bijgewerkt.",
|
||||||
"other": "{} en {} meer apps zijn mogelijk bijgwerkt."
|
"other": "{} en {} meer apps zijn mogelijk bijgwerkt."
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(Wymagane)",
|
"requiredInBrackets": "(Wymagane)",
|
||||||
"dropdownNoOptsError": "BŁĄD: LISTA ROZWIJANA MUSI MIEĆ CO NAJMNIEJ JEDNĄ OPCJĘ",
|
"dropdownNoOptsError": "BŁĄD: LISTA ROZWIJANA MUSI MIEĆ CO NAJMNIEJ JEDNĄ OPCJĘ",
|
||||||
"colour": "Kolor",
|
"colour": "Kolor",
|
||||||
|
"standard": "Standard",
|
||||||
|
"custom": "Niestandardowe",
|
||||||
|
"useMaterialYou": "Używaj materiałów",
|
||||||
"githubStarredRepos": "Repozytoria GitHub oznaczone gwiazdką",
|
"githubStarredRepos": "Repozytoria GitHub oznaczone gwiazdką",
|
||||||
"uname": "Nazwa użytkownika",
|
"uname": "Nazwa użytkownika",
|
||||||
"wrongArgNum": "Nieprawidłowa liczba podanych argumentów",
|
"wrongArgNum": "Nieprawidłowa liczba podanych argumentów",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "Brak nowych aktualizacji.",
|
"noNewUpdates": "Brak nowych aktualizacji.",
|
||||||
"xHasAnUpdate": "{} ma aktualizację.",
|
"xHasAnUpdate": "{} ma aktualizację.",
|
||||||
"appsUpdated": "Zaktualizowano aplikacje",
|
"appsUpdated": "Zaktualizowano aplikacje",
|
||||||
|
"appsNotUpdated": "Nie udało się zaktualizować aplikacji",
|
||||||
"appsUpdatedNotifDescription": "Informuje, gdy co najmniej jedna aplikacja została zaktualizowana w tle",
|
"appsUpdatedNotifDescription": "Informuje, gdy co najmniej jedna aplikacja została zaktualizowana w tle",
|
||||||
"xWasUpdatedToY": "{} zaktualizowano do {}.",
|
"xWasUpdatedToY": "{} zaktualizowano do {}.",
|
||||||
|
"xWasNotUpdatedToY": "Nie udało się zaktualizować {} do {}.",
|
||||||
"errorCheckingUpdates": "Błąd sprawdzania aktualizacji",
|
"errorCheckingUpdates": "Błąd sprawdzania aktualizacji",
|
||||||
"errorCheckingUpdatesNotifDescription": "Jest wyświetlane, gdy sprawdzanie aktualizacji w tle nie powiedzie się",
|
"errorCheckingUpdatesNotifDescription": "Jest wyświetlane, gdy sprawdzanie aktualizacji w tle nie powiedzie się",
|
||||||
"appsRemoved": "Usunięte aplikacje",
|
"appsRemoved": "Usunięte aplikacje",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "Obsługuj stałe adresy URL APK",
|
"supportFixedAPKURL": "Obsługuj stałe adresy URL APK",
|
||||||
"selectX": "Wybierz {}",
|
"selectX": "Wybierz {}",
|
||||||
"parallelDownloads": "Zezwól na pobieranie równoległe",
|
"parallelDownloads": "Zezwól na pobieranie równoległe",
|
||||||
"installMethod": "Metoda instalacji",
|
"useShizuku": "Użyj Shizuku lub Sui, aby zainstalować",
|
||||||
"normal": "Normalna",
|
|
||||||
"root": "Źródło",
|
|
||||||
"shizukuBinderNotFound": "Shizuku is not running",
|
"shizukuBinderNotFound": "Shizuku is not running",
|
||||||
|
"shizukuOld": "Stara wersja Shizuku (<11) - zaktualizuj ją",
|
||||||
|
"shizukuOldAndroidWithADB": "Shizuku działa na Androidzie < 8.1 z ADB - zaktualizuj Androida lub użyj zamiast tego Sui",
|
||||||
|
"shizukuPretendToBeGooglePlay": "Ustaw Google Play jako źródło instalacji (jeśli używana jest aplikacja Shizuku).",
|
||||||
"useSystemFont": "Użyj czcionki systemowej",
|
"useSystemFont": "Użyj czcionki systemowej",
|
||||||
"systemFontError": "Błąd podczas ładowania czcionki systemowej: {}",
|
|
||||||
"useVersionCodeAsOSVersion": "Użyj kodu wersji aplikacji jako wersji wykrytej przez system operacyjny",
|
"useVersionCodeAsOSVersion": "Użyj kodu wersji aplikacji jako wersji wykrytej przez system operacyjny",
|
||||||
"requestHeader": "Nagłówek żądania",
|
"requestHeader": "Nagłówek żądania",
|
||||||
"useLatestAssetDateAsReleaseDate": "Użyj najnowszego przesłanego zasobu jako daty wydania",
|
"useLatestAssetDateAsReleaseDate": "Użyj najnowszego przesłanego zasobu jako daty wydania",
|
||||||
@@ -376,6 +381,10 @@
|
|||||||
"many": "{} i {} innych apek zostało zaktualizowanych.",
|
"many": "{} i {} innych apek zostało zaktualizowanych.",
|
||||||
"other": "{} i {} inne apki zostały zaktualizowane."
|
"other": "{} i {} inne apki zostały zaktualizowane."
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "Nie udało się zaktualizować {} i 1 innej aplikacji.",
|
||||||
|
"other": "Nie udało się zaktualizować {} i {} więcej aplikacji."
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"one": "{} i 1 inna apka mogły zostać zaktualizowane.",
|
"one": "{} i 1 inna apka mogły zostać zaktualizowane.",
|
||||||
"few": "{} i {} inne apki mogły zostać zaktualizowane.",
|
"few": "{} i {} inne apki mogły zostać zaktualizowane.",
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(Necessário)",
|
"requiredInBrackets": "(Necessário)",
|
||||||
"dropdownNoOptsError": "ERRO: O DROPDOWN DEVE TER PELO MENOS UMA OPÇÃO",
|
"dropdownNoOptsError": "ERRO: O DROPDOWN DEVE TER PELO MENOS UMA OPÇÃO",
|
||||||
"colour": "Cor",
|
"colour": "Cor",
|
||||||
|
"standard": "Padrão",
|
||||||
|
"custom": "Personalizado",
|
||||||
|
"useMaterialYou": "Utilizar o material que",
|
||||||
"githubStarredRepos": "repositórios favoritos no GitHub",
|
"githubStarredRepos": "repositórios favoritos no GitHub",
|
||||||
"uname": "Nome de usuário",
|
"uname": "Nome de usuário",
|
||||||
"wrongArgNum": "Número de argumentos errado",
|
"wrongArgNum": "Número de argumentos errado",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "Sem novas atualizações.",
|
"noNewUpdates": "Sem novas atualizações.",
|
||||||
"xHasAnUpdate": "{} tem uma atualização.",
|
"xHasAnUpdate": "{} tem uma atualização.",
|
||||||
"appsUpdated": "Aplicativos atualizados",
|
"appsUpdated": "Aplicativos atualizados",
|
||||||
|
"appsNotUpdated": "Falha na atualização das aplicações",
|
||||||
"appsUpdatedNotifDescription": "Notifica o usuário quando atualizações foram aplicadas em segundo-plano para um ou mais aplicativos ",
|
"appsUpdatedNotifDescription": "Notifica o usuário quando atualizações foram aplicadas em segundo-plano para um ou mais aplicativos ",
|
||||||
"xWasUpdatedToY": "{} foi atualizado para {}.",
|
"xWasUpdatedToY": "{} foi atualizado para {}.",
|
||||||
|
"xWasNotUpdatedToY": "Falha ao atualizar {} para {}.",
|
||||||
"errorCheckingUpdates": "Erro ao procurar por atualizações",
|
"errorCheckingUpdates": "Erro ao procurar por atualizações",
|
||||||
"errorCheckingUpdatesNotifDescription": "Uma notificação que mostra quando a checagem por atualizações em segundo-plano falha",
|
"errorCheckingUpdatesNotifDescription": "Uma notificação que mostra quando a checagem por atualizações em segundo-plano falha",
|
||||||
"appsRemoved": "Aplicativos removidos",
|
"appsRemoved": "Aplicativos removidos",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "Suporte a APK com URLs fixas",
|
"supportFixedAPKURL": "Suporte a APK com URLs fixas",
|
||||||
"selectX": "Selecionar {}",
|
"selectX": "Selecionar {}",
|
||||||
"parallelDownloads": "Permitir downloads paralelos",
|
"parallelDownloads": "Permitir downloads paralelos",
|
||||||
"installMethod": "Método de instalação",
|
"useShizuku": "Utilizar Shizuku ou Sui para instalar",
|
||||||
"normal": "Normal",
|
|
||||||
"root": "Root",
|
|
||||||
"shizukuBinderNotFound": "O Shizuku não está rodando",
|
"shizukuBinderNotFound": "O Shizuku não está rodando",
|
||||||
|
"shizukuOld": "Versão antiga do Shizuku (<11) - atualizar",
|
||||||
|
"shizukuOldAndroidWithADB": "Shizuku a funcionar no Android < 8.1 com ADB - atualizar o Android ou utilizar o Sui",
|
||||||
|
"shizukuPretendToBeGooglePlay": "Definir o Google Play como fonte de instalação (se for utilizado o Shizuku)",
|
||||||
"useSystemFont": "Usar fonte padrão do sistema",
|
"useSystemFont": "Usar fonte padrão do sistema",
|
||||||
"systemFontError": "Erro ao carregar a fonte do sistema: {}",
|
|
||||||
"useVersionCodeAsOSVersion": "Usar versionCode do aplicativo como versão detectada pelo sistema operacional",
|
"useVersionCodeAsOSVersion": "Usar versionCode do aplicativo como versão detectada pelo sistema operacional",
|
||||||
"requestHeader": "Requisitar cabeçalho",
|
"requestHeader": "Requisitar cabeçalho",
|
||||||
"useLatestAssetDateAsReleaseDate": "Use o último upload de recursos como data de lançamento",
|
"useLatestAssetDateAsReleaseDate": "Use o último upload de recursos como data de lançamento",
|
||||||
@@ -352,6 +357,10 @@
|
|||||||
"one": "{} e um outro aplicativo foram atualizado.",
|
"one": "{} e um outro aplicativo foram atualizado.",
|
||||||
"other": "{} e {} outros aplicativos foram atualizados."
|
"other": "{} e {} outros aplicativos foram atualizados."
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "Falha ao atualizar {} e mais 1 aplicação.",
|
||||||
|
"other": "Falha ao atualizar {} e {} mais aplicações."
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"one": "{} e um outro aplicativo podem ter sido atualizados.",
|
"one": "{} e um outro aplicativo podem ter sido atualizados.",
|
||||||
"other": "{} e {} outros aplicativos podem ter sido atualizados."
|
"other": "{} e {} outros aplicativos podem ter sido atualizados."
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(обязательно)",
|
"requiredInBrackets": "(обязательно)",
|
||||||
"dropdownNoOptsError": "Ошибка: в выпадающем списке должна быть выбрана хотя бы одна настройка",
|
"dropdownNoOptsError": "Ошибка: в выпадающем списке должна быть выбрана хотя бы одна настройка",
|
||||||
"colour": "Цвет",
|
"colour": "Цвет",
|
||||||
|
"standard": "Стандартный",
|
||||||
|
"custom": "Индивидуальный",
|
||||||
|
"useMaterialYou": "Использовать Material You",
|
||||||
"githubStarredRepos": "Избранные репозитории GitHub",
|
"githubStarredRepos": "Избранные репозитории GitHub",
|
||||||
"uname": "Имя пользователя",
|
"uname": "Имя пользователя",
|
||||||
"wrongArgNum": "Неправильное количество предоставленных аргументов",
|
"wrongArgNum": "Неправильное количество предоставленных аргументов",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "Нет новых обновлений",
|
"noNewUpdates": "Нет новых обновлений",
|
||||||
"xHasAnUpdate": "{} есть обновление",
|
"xHasAnUpdate": "{} есть обновление",
|
||||||
"appsUpdated": "Приложения обновлены",
|
"appsUpdated": "Приложения обновлены",
|
||||||
|
"appsNotUpdated": "Не удалось обновить приложения",
|
||||||
"appsUpdatedNotifDescription": "Уведомляет об обновлении одного или нескольких приложений в фоновом режиме",
|
"appsUpdatedNotifDescription": "Уведомляет об обновлении одного или нескольких приложений в фоновом режиме",
|
||||||
"xWasUpdatedToY": "{} была обновлена до версии {}",
|
"xWasUpdatedToY": "{} была обновлена до версии {}",
|
||||||
|
"xWasNotUpdatedToY": "Не удалось обновить {} до версии {}",
|
||||||
"errorCheckingUpdates": "Ошибка при проверке обновлений",
|
"errorCheckingUpdates": "Ошибка при проверке обновлений",
|
||||||
"errorCheckingUpdatesNotifDescription": "Уведомление о завершении проверки обновлений в фоновом режиме с ошибкой",
|
"errorCheckingUpdatesNotifDescription": "Уведомление о завершении проверки обновлений в фоновом режиме с ошибкой",
|
||||||
"appsRemoved": "Приложение удалено",
|
"appsRemoved": "Приложение удалено",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "Поддержка фиксированных URL-адресов APK",
|
"supportFixedAPKURL": "Поддержка фиксированных URL-адресов APK",
|
||||||
"selectX": "Выбрать {}",
|
"selectX": "Выбрать {}",
|
||||||
"parallelDownloads": "Разрешить параллельные загрузки",
|
"parallelDownloads": "Разрешить параллельные загрузки",
|
||||||
"installMethod": "Метод установки",
|
"useShizuku": "Использовать Shizuku или Sui для установки",
|
||||||
"normal": "Нормальный",
|
"shizukuBinderNotFound": "Совместимый сервис Shizuku не найден, возможно он не запущен",
|
||||||
"root": "Суперпользователь",
|
"shizukuOld": "Устаревшая версия Shizuku (<11), обновите",
|
||||||
"shizukuBinderNotFound": "Совместимый сервис Shizuku не найден",
|
"shizukuOldAndroidWithADB": "Shizuku работает на Android < 8.1 с ADB, обновите Android или используйте Sui",
|
||||||
|
"shizukuPretendToBeGooglePlay": "Указать Google Play как источник установки (если используется Shizuku)",
|
||||||
"useSystemFont": "Использовать системный шрифт",
|
"useSystemFont": "Использовать системный шрифт",
|
||||||
"systemFontError": "Ошибка загрузки системного шрифта: {}",
|
|
||||||
"useVersionCodeAsOSVersion": "Использовать код версии приложения как версию, обнаруженную ОС",
|
"useVersionCodeAsOSVersion": "Использовать код версии приложения как версию, обнаруженную ОС",
|
||||||
"requestHeader": "Заголовок запроса",
|
"requestHeader": "Заголовок запроса",
|
||||||
"useLatestAssetDateAsReleaseDate": "Использовать последнюю загрузку ресурса в качестве даты выпуска",
|
"useLatestAssetDateAsReleaseDate": "Использовать последнюю загрузку ресурса в качестве даты выпуска",
|
||||||
@@ -352,6 +357,10 @@
|
|||||||
"one": "{} и ещё 1 приложение были обновлены",
|
"one": "{} и ещё 1 приложение были обновлены",
|
||||||
"other": "{} и ещё {} приложений были обновлены"
|
"other": "{} и ещё {} приложений были обновлены"
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "Не удалось обновить {} и ещё 1 приложение",
|
||||||
|
"other": "Не удалось обновить {} и ещё {} приложений"
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"one": "{} и ещё 1 приложение могли быть обновлены",
|
"one": "{} и ещё 1 приложение могли быть обновлены",
|
||||||
"other": "{} и ещё {} приложений могли быть обновлены"
|
"other": "{} и ещё {} приложений могли быть обновлены"
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(Kräver)",
|
"requiredInBrackets": "(Kräver)",
|
||||||
"dropdownNoOptsError": "FEL: DROPDOWN MÅSTE HA MINST ETT OPT",
|
"dropdownNoOptsError": "FEL: DROPDOWN MÅSTE HA MINST ETT OPT",
|
||||||
"colour": "Färg",
|
"colour": "Färg",
|
||||||
|
"standard": "Standard",
|
||||||
|
"custom": "Anpassad",
|
||||||
|
"useMaterialYou": "Använd material Du",
|
||||||
"githubStarredRepos": "GitHub Stjärnmärkta Förråd",
|
"githubStarredRepos": "GitHub Stjärnmärkta Förråd",
|
||||||
"uname": "Användarnamn",
|
"uname": "Användarnamn",
|
||||||
"wrongArgNum": "Fel antal argument har angetts",
|
"wrongArgNum": "Fel antal argument har angetts",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "Inga nya uppdateringar.",
|
"noNewUpdates": "Inga nya uppdateringar.",
|
||||||
"xHasAnUpdate": "{} har en uppdatering.",
|
"xHasAnUpdate": "{} har en uppdatering.",
|
||||||
"appsUpdated": "Appar Uppdaterade",
|
"appsUpdated": "Appar Uppdaterade",
|
||||||
|
"appsNotUpdated": "Misslyckades med att uppdatera applikationer",
|
||||||
"appsUpdatedNotifDescription": "Meddelar användaren att uppdateringar av en eller flera appar har tillämpats i bakgrunden",
|
"appsUpdatedNotifDescription": "Meddelar användaren att uppdateringar av en eller flera appar har tillämpats i bakgrunden",
|
||||||
"xWasUpdatedToY": "{} uppdaterades till {}.",
|
"xWasUpdatedToY": "{} uppdaterades till {}.",
|
||||||
|
"xWasNotUpdatedToY": "Det gick inte att uppdatera {} till {}.",
|
||||||
"errorCheckingUpdates": "Fel vid uppdateringskoll",
|
"errorCheckingUpdates": "Fel vid uppdateringskoll",
|
||||||
"errorCheckingUpdatesNotifDescription": "En aviserings som visar när bakgrundsuppdateringarkollar misslyckas",
|
"errorCheckingUpdatesNotifDescription": "En aviserings som visar när bakgrundsuppdateringarkollar misslyckas",
|
||||||
"appsRemoved": "Appar borttagna",
|
"appsRemoved": "Appar borttagna",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "Stöd fasta APK-webbadresser",
|
"supportFixedAPKURL": "Stöd fasta APK-webbadresser",
|
||||||
"selectX": "Välj {}",
|
"selectX": "Välj {}",
|
||||||
"parallelDownloads": "Tillåt parallella nedladdningar",
|
"parallelDownloads": "Tillåt parallella nedladdningar",
|
||||||
"installMethod": "Installationsmetod",
|
"useShizuku": "Använd Shizuku eller Sui för att installera",
|
||||||
"normal": "Vanligt",
|
|
||||||
"root": "Rot",
|
|
||||||
"shizukuBinderNotFound": "Shizuku is not running",
|
"shizukuBinderNotFound": "Shizuku is not running",
|
||||||
|
"shizukuOld": "Gammal Shizuku-version (<11) - uppdatera den",
|
||||||
|
"shizukuOldAndroidWithADB": "Shizuku körs på Android < 8.1 med ADB - uppdatera Android eller använd Sui istället",
|
||||||
|
"shizukuPretendToBeGooglePlay": "Ange Google Play som installationskälla (om Shizuku används)",
|
||||||
"useSystemFont": "Använd systemteckensnittet",
|
"useSystemFont": "Använd systemteckensnittet",
|
||||||
"systemFontError": "Fel vid laddning av systemteckensnittet: {}",
|
|
||||||
"useVersionCodeAsOSVersion": "Använd appversionskoden som OS-upptäckt version",
|
"useVersionCodeAsOSVersion": "Använd appversionskoden som OS-upptäckt version",
|
||||||
"requestHeader": "Rubrik för begäran",
|
"requestHeader": "Rubrik för begäran",
|
||||||
"useLatestAssetDateAsReleaseDate": "Använd senaste tillgångsuppladdning som releasedatum",
|
"useLatestAssetDateAsReleaseDate": "Använd senaste tillgångsuppladdning som releasedatum",
|
||||||
@@ -352,6 +357,10 @@
|
|||||||
"one": "{} och 1 till app uppdaterades.",
|
"one": "{} och 1 till app uppdaterades.",
|
||||||
"other": "{} och {} appar till uppdaterades."
|
"other": "{} och {} appar till uppdaterades."
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "Misslyckades med att uppdatera {} och ytterligare 1 app.",
|
||||||
|
"other": "Det gick inte att uppdatera {} och {} fler appar."
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"one": "{} och 1 till app kan ha uppdaterats.",
|
"one": "{} och 1 till app kan ha uppdaterats.",
|
||||||
"other": "{} och {} appar till kan ha uppdaterats."
|
"other": "{} och {} appar till kan ha uppdaterats."
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(Gerekli)",
|
"requiredInBrackets": "(Gerekli)",
|
||||||
"dropdownNoOptsError": "HATA: DİPLOMADA EN AZ BİR SEÇENEK OLMALI",
|
"dropdownNoOptsError": "HATA: DİPLOMADA EN AZ BİR SEÇENEK OLMALI",
|
||||||
"colour": "Renk",
|
"colour": "Renk",
|
||||||
|
"standard": "Standart",
|
||||||
|
"custom": "Özel",
|
||||||
|
"useMaterialYou": "Sizin Malzemenizi Kullanın",
|
||||||
"githubStarredRepos": "GitHub'a Yıldızlı Depolar",
|
"githubStarredRepos": "GitHub'a Yıldızlı Depolar",
|
||||||
"uname": "Kullanıcı Adı",
|
"uname": "Kullanıcı Adı",
|
||||||
"wrongArgNum": "Hatalı argüman sayısı sağlandı",
|
"wrongArgNum": "Hatalı argüman sayısı sağlandı",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "Yeni güncelleme yok.",
|
"noNewUpdates": "Yeni güncelleme yok.",
|
||||||
"xHasAnUpdate": "{} güncelleme alıyor.",
|
"xHasAnUpdate": "{} güncelleme alıyor.",
|
||||||
"appsUpdated": "Uygulamalar Güncellendi",
|
"appsUpdated": "Uygulamalar Güncellendi",
|
||||||
|
"appsNotUpdated": "Uygulamalar güncellenemedi",
|
||||||
"appsUpdatedNotifDescription": "Kullanıcıya bir veya daha fazla uygulamanın arka planda güncellendiğine dair bilgi verir",
|
"appsUpdatedNotifDescription": "Kullanıcıya bir veya daha fazla uygulamanın arka planda güncellendiğine dair bilgi verir",
|
||||||
"xWasUpdatedToY": "{} şu sürüme güncellendi: {}.",
|
"xWasUpdatedToY": "{} şu sürüme güncellendi: {}.",
|
||||||
|
"xWasNotUpdatedToY": "{} öğesi {} olarak güncellenemedi.",
|
||||||
"errorCheckingUpdates": "Güncellemeler Kontrol Edilirken Hata Oluştu",
|
"errorCheckingUpdates": "Güncellemeler Kontrol Edilirken Hata Oluştu",
|
||||||
"errorCheckingUpdatesNotifDescription": "Arka planda güncelleme kontrolü sırasında hata oluştuğunda görünen bir bildirim",
|
"errorCheckingUpdatesNotifDescription": "Arka planda güncelleme kontrolü sırasında hata oluştuğunda görünen bir bildirim",
|
||||||
"appsRemoved": "Uygulamalar Kaldırıldı",
|
"appsRemoved": "Uygulamalar Kaldırıldı",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "Sabit APK URL'lerini destekleyin",
|
"supportFixedAPKURL": "Sabit APK URL'lerini destekleyin",
|
||||||
"selectX": "Seçme {}",
|
"selectX": "Seçme {}",
|
||||||
"parallelDownloads": "Paralel indirmelere izin ver",
|
"parallelDownloads": "Paralel indirmelere izin ver",
|
||||||
"installMethod": "Kurulum yöntemi",
|
"useShizuku": "Yüklemek için Shizuku veya Sui'yi kullanın",
|
||||||
"normal": "Normal",
|
|
||||||
"root": "Kök",
|
|
||||||
"shizukuBinderNotFound": "Shizuku is not running",
|
"shizukuBinderNotFound": "Shizuku is not running",
|
||||||
|
"shizukuOld": "Eski Shizuku sürümü (<11) - güncelleyin",
|
||||||
|
"shizukuOldAndroidWithADB": "Shizuku ADB ile Android < 8.1 üzerinde çalışıyor - Android'i güncelleyin veya bunun yerine Sui kullanın",
|
||||||
|
"shizukuPretendToBeGooglePlay": "Google Play'i yükleme kaynağı olarak ayarlayın (Shizuku kullanılıyorsa)",
|
||||||
"useSystemFont": "Sistem yazı tipini kullan",
|
"useSystemFont": "Sistem yazı tipini kullan",
|
||||||
"systemFontError": "Sistem yazı tipi yüklenirken hata oluştu: {}",
|
|
||||||
"useVersionCodeAsOSVersion": "Uygulama versionCode'unu işletim sistemi tarafından algılanan sürüm olarak kullan",
|
"useVersionCodeAsOSVersion": "Uygulama versionCode'unu işletim sistemi tarafından algılanan sürüm olarak kullan",
|
||||||
"requestHeader": "Başlık talep et",
|
"requestHeader": "Başlık talep et",
|
||||||
"useLatestAssetDateAsReleaseDate": "Yayın tarihi olarak en son öğe yüklemesini kullan",
|
"useLatestAssetDateAsReleaseDate": "Yayın tarihi olarak en son öğe yüklemesini kullan",
|
||||||
@@ -352,6 +357,10 @@
|
|||||||
"one": "{} ve 1 diğer uygulama güncellendi.",
|
"one": "{} ve 1 diğer uygulama güncellendi.",
|
||||||
"other": "{} ve {} daha fazla uygulama güncellendi."
|
"other": "{} ve {} daha fazla uygulama güncellendi."
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "{} ve 1 uygulama daha güncellenemedi.",
|
||||||
|
"other": "{} ve {} daha fazla uygulama güncellenemedi."
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"one": "{} ve 1 diğer uygulama muhtemelen güncellendi.",
|
"one": "{} ve 1 diğer uygulama muhtemelen güncellendi.",
|
||||||
"other": "{} ve {} daha fazla uygulama muhtemelen güncellendi."
|
"other": "{} ve {} daha fazla uygulama muhtemelen güncellendi."
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(Обов'язково)",
|
"requiredInBrackets": "(Обов'язково)",
|
||||||
"dropdownNoOptsError": "ПОМИЛКА: В ВИПАДАЮЧОМУ СПИСКУ МАЄ БУТИ ХОЧА Б ОДИН ЕЛЕМЕНТ",
|
"dropdownNoOptsError": "ПОМИЛКА: В ВИПАДАЮЧОМУ СПИСКУ МАЄ БУТИ ХОЧА Б ОДИН ЕЛЕМЕНТ",
|
||||||
"colour": "Колір",
|
"colour": "Колір",
|
||||||
|
"standard": "Стандартний",
|
||||||
|
"custom": "Нестандартний",
|
||||||
|
"useMaterialYou": "Використовуйте матеріал, який ви",
|
||||||
"githubStarredRepos": "Відзначені репозиторії GitHub",
|
"githubStarredRepos": "Відзначені репозиторії GitHub",
|
||||||
"uname": "Ім'я користувача",
|
"uname": "Ім'я користувача",
|
||||||
"wrongArgNum": "Надано неправильну кількість аргументів",
|
"wrongArgNum": "Надано неправильну кількість аргументів",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "Немає нових оновлень.",
|
"noNewUpdates": "Немає нових оновлень.",
|
||||||
"xHasAnUpdate": "{} має оновлення.",
|
"xHasAnUpdate": "{} має оновлення.",
|
||||||
"appsUpdated": "Застосунки оновлено",
|
"appsUpdated": "Застосунки оновлено",
|
||||||
|
"appsNotUpdated": "Не вдалося оновити програми",
|
||||||
"appsUpdatedNotifDescription": "Повідомляє користувача, що оновлення одного чи декількох застосунків було застосовано в фоновому режимі",
|
"appsUpdatedNotifDescription": "Повідомляє користувача, що оновлення одного чи декількох застосунків було застосовано в фоновому режимі",
|
||||||
"xWasUpdatedToY": "{} було оновлено до {}.",
|
"xWasUpdatedToY": "{} було оновлено до {}.",
|
||||||
|
"xWasNotUpdatedToY": "Не вдалося оновити {} на {}.",
|
||||||
"errorCheckingUpdates": "Помилка перевірки оновлень",
|
"errorCheckingUpdates": "Помилка перевірки оновлень",
|
||||||
"errorCheckingUpdatesNotifDescription": "Повідомлення, яке з'являється, коли перевірка оновлень в фоновому режимі завершується невдачею",
|
"errorCheckingUpdatesNotifDescription": "Повідомлення, яке з'являється, коли перевірка оновлень в фоновому режимі завершується невдачею",
|
||||||
"appsRemoved": "Застосунки видалено",
|
"appsRemoved": "Застосунки видалено",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "Підтримка фіксованих посилань на APK",
|
"supportFixedAPKURL": "Підтримка фіксованих посилань на APK",
|
||||||
"selectX": "Вибрати {}",
|
"selectX": "Вибрати {}",
|
||||||
"parallelDownloads": "Дозволити паралельні завантаження",
|
"parallelDownloads": "Дозволити паралельні завантаження",
|
||||||
"installMethod": "Метод встановлення",
|
"useShizuku": "Використовуйте Shizuku або Sui для встановлення",
|
||||||
"normal": "Звичайний",
|
|
||||||
"root": "Root",
|
|
||||||
"shizukuBinderNotFound": "Сумісний сервіс Shizuku не було знайдено",
|
"shizukuBinderNotFound": "Сумісний сервіс Shizuku не було знайдено",
|
||||||
|
"shizukuOld": "Стара версія Shizuku (<11) - оновіть її",
|
||||||
|
"shizukuOldAndroidWithADB": "Shizuku працює на Android < 8.1 з ADB - оновіть Android або використовуйте Sui замість нього",
|
||||||
|
"shizukuPretendToBeGooglePlay": "Виберіть Google Play як джерело встановлення (якщо використовується Shizuku)",
|
||||||
"useSystemFont": "Використовувати системний шрифт",
|
"useSystemFont": "Використовувати системний шрифт",
|
||||||
"systemFontError": "Помилка завантаження системного шрифту: {}",
|
|
||||||
"useVersionCodeAsOSVersion": "Використовувати код версії застосунку як версію, визначену операційною системою",
|
"useVersionCodeAsOSVersion": "Використовувати код версії застосунку як версію, визначену операційною системою",
|
||||||
"requestHeader": "Заголовок запиту",
|
"requestHeader": "Заголовок запиту",
|
||||||
"useLatestAssetDateAsReleaseDate": "Використовувати останню дату завантаження ресурсу як дату випуску",
|
"useLatestAssetDateAsReleaseDate": "Використовувати останню дату завантаження ресурсу як дату випуску",
|
||||||
@@ -352,6 +357,10 @@
|
|||||||
"one": "{} та ще 1 застосунок було оновлено.",
|
"one": "{} та ще 1 застосунок було оновлено.",
|
||||||
"other": "{} та ще {} застосунків було оновлено."
|
"other": "{} та ще {} застосунків було оновлено."
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "Не вдалося оновити {} та ще 1 програму.",
|
||||||
|
"other": "Не вдалося оновити {} і {} та інші програми."
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"one": "{} та ще 1 застосунок можливо було оновлено.",
|
"one": "{} та ще 1 застосунок можливо було оновлено.",
|
||||||
"other": "{} та ще {} застосунків можливо було оновлено."
|
"other": "{} та ще {} застосунків можливо було оновлено."
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(Yêu cầu)",
|
"requiredInBrackets": "(Yêu cầu)",
|
||||||
"dropdownNoOptsError": "LỖI: TẢI XUỐNG PHẢI CÓ ÍT NHẤT MỘT LỰA CHỌN",
|
"dropdownNoOptsError": "LỖI: TẢI XUỐNG PHẢI CÓ ÍT NHẤT MỘT LỰA CHỌN",
|
||||||
"colour": "Màu sắc",
|
"colour": "Màu sắc",
|
||||||
|
"standard": "Standard",
|
||||||
|
"custom": "Custom",
|
||||||
|
"useMaterialYou": "Use Material You",
|
||||||
"githubStarredRepos": "Kho lưu trữ có gắn dấu sao GitHub",
|
"githubStarredRepos": "Kho lưu trữ có gắn dấu sao GitHub",
|
||||||
"uname": "Tên người dùng",
|
"uname": "Tên người dùng",
|
||||||
"wrongArgNum": "Số lượng đối số được cung cấp sai",
|
"wrongArgNum": "Số lượng đối số được cung cấp sai",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "Không có bản cập nhật mới.",
|
"noNewUpdates": "Không có bản cập nhật mới.",
|
||||||
"xHasAnUpdate": "{} có bản cập nhật.",
|
"xHasAnUpdate": "{} có bản cập nhật.",
|
||||||
"appsUpdated": "Ứng dụng đã cập nhật ",
|
"appsUpdated": "Ứng dụng đã cập nhật ",
|
||||||
|
"appsNotUpdated": "Failed to update applications",
|
||||||
"appsUpdatedNotifDescription": "Thông báo cho người dùng rằng các bản cập nhật cho một hoặc nhiều Ứng dụng đã được áp dụng trong nền",
|
"appsUpdatedNotifDescription": "Thông báo cho người dùng rằng các bản cập nhật cho một hoặc nhiều Ứng dụng đã được áp dụng trong nền",
|
||||||
"xWasUpdatedToY": "{} đã được cập nhật thành {}.",
|
"xWasUpdatedToY": "{} đã được cập nhật thành {}.",
|
||||||
|
"xWasNotUpdatedToY": "Failed to update {} to {}.",
|
||||||
"errorCheckingUpdates": "Lỗi kiểm tra bản cập nhật",
|
"errorCheckingUpdates": "Lỗi kiểm tra bản cập nhật",
|
||||||
"errorCheckingUpdatesNotifDescription": "Thông báo hiển thị khi kiểm tra cập nhật nền không thành công",
|
"errorCheckingUpdatesNotifDescription": "Thông báo hiển thị khi kiểm tra cập nhật nền không thành công",
|
||||||
"appsRemoved": "Ứng dụng đã loại bỏ",
|
"appsRemoved": "Ứng dụng đã loại bỏ",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "Hỗ trợ URL APK cố định",
|
"supportFixedAPKURL": "Hỗ trợ URL APK cố định",
|
||||||
"selectX": "Lựa chọn {}",
|
"selectX": "Lựa chọn {}",
|
||||||
"parallelDownloads": "Cho phép tải đa luồng",
|
"parallelDownloads": "Cho phép tải đa luồng",
|
||||||
"installMethod": "Phương thức cài đặt",
|
"useShizuku": "Use Shizuku or Sui to install",
|
||||||
"normal": "Mặc định",
|
|
||||||
"root": "Root",
|
|
||||||
"shizukuBinderNotFound": "Shizuku chưa khởi động",
|
"shizukuBinderNotFound": "Shizuku chưa khởi động",
|
||||||
|
"shizukuOld": "Old Shizuku version (<11) - update it",
|
||||||
|
"shizukuOldAndroidWithADB": "Shizuku running on Android < 8.1 with ADB - update Android or use Sui instead",
|
||||||
|
"shizukuPretendToBeGooglePlay": "Set Google Play as the installation source (if Shizuku is used)",
|
||||||
"useSystemFont": "Sử dụng phông chữ hệ thống",
|
"useSystemFont": "Sử dụng phông chữ hệ thống",
|
||||||
"systemFontError": "Lỗi tải phông chữ hệ thống: {}",
|
|
||||||
"useVersionCodeAsOSVersion": "Sử dụng Mã phiên bản ứng dụng làm phiên bản do hệ điều hành phát hiện",
|
"useVersionCodeAsOSVersion": "Sử dụng Mã phiên bản ứng dụng làm phiên bản do hệ điều hành phát hiện",
|
||||||
"requestHeader": "Tiêu đề yêu cầu",
|
"requestHeader": "Tiêu đề yêu cầu",
|
||||||
"useLatestAssetDateAsReleaseDate": "Sử dụng nội dung tải lên mới nhất làm ngày phát hành",
|
"useLatestAssetDateAsReleaseDate": "Sử dụng nội dung tải lên mới nhất làm ngày phát hành",
|
||||||
@@ -352,6 +357,10 @@
|
|||||||
"one": "{} và 1 ứng dụng khác đã được cập nhật.",
|
"one": "{} và 1 ứng dụng khác đã được cập nhật.",
|
||||||
"other": "{} và {} ứng dụng khác đã được cập nhật."
|
"other": "{} và {} ứng dụng khác đã được cập nhật."
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "Failed to update {} and 1 more app.",
|
||||||
|
"other": "Failed to update {} and {} more apps."
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"one": "{} và 1 ứng dụng khác có thể đã được cập nhật.",
|
"one": "{} và 1 ứng dụng khác có thể đã được cập nhật.",
|
||||||
"other": "{} và {} ứng dụng khác có thể đã được cập nhật."
|
"other": "{} và {} ứng dụng khác có thể đã được cập nhật."
|
||||||
|
|||||||
@@ -22,6 +22,9 @@
|
|||||||
"requiredInBrackets": "(必填)",
|
"requiredInBrackets": "(必填)",
|
||||||
"dropdownNoOptsError": "错误:下拉菜单必须包含至少一个选项",
|
"dropdownNoOptsError": "错误:下拉菜单必须包含至少一个选项",
|
||||||
"colour": "配色",
|
"colour": "配色",
|
||||||
|
"standard": "标准",
|
||||||
|
"custom": "定制",
|
||||||
|
"useMaterialYou": "使用您的材料",
|
||||||
"githubStarredRepos": "已星标的 GitHub 仓库",
|
"githubStarredRepos": "已星标的 GitHub 仓库",
|
||||||
"uname": "用户名",
|
"uname": "用户名",
|
||||||
"wrongArgNum": "参数数量错误",
|
"wrongArgNum": "参数数量错误",
|
||||||
@@ -143,8 +146,10 @@
|
|||||||
"noNewUpdates": "全部应用已是最新。",
|
"noNewUpdates": "全部应用已是最新。",
|
||||||
"xHasAnUpdate": "“{}”可以更新了。",
|
"xHasAnUpdate": "“{}”可以更新了。",
|
||||||
"appsUpdated": "应用已更新",
|
"appsUpdated": "应用已更新",
|
||||||
|
"appsNotUpdated": "更新应用程序失败",
|
||||||
"appsUpdatedNotifDescription": "当应用在后台安装更新时发送通知",
|
"appsUpdatedNotifDescription": "当应用在后台安装更新时发送通知",
|
||||||
"xWasUpdatedToY": "“{}”已更新至 {}。",
|
"xWasUpdatedToY": "“{}”已更新至 {}。",
|
||||||
|
"xWasNotUpdatedToY": "未能将 {} 更新为 {}。",
|
||||||
"errorCheckingUpdates": "检查更新出错",
|
"errorCheckingUpdates": "检查更新出错",
|
||||||
"errorCheckingUpdatesNotifDescription": "当后台检查更新失败时显示的通知",
|
"errorCheckingUpdatesNotifDescription": "当后台检查更新失败时显示的通知",
|
||||||
"appsRemoved": "应用已删除",
|
"appsRemoved": "应用已删除",
|
||||||
@@ -282,12 +287,12 @@
|
|||||||
"supportFixedAPKURL": "支持固定的 APK 文件链接",
|
"supportFixedAPKURL": "支持固定的 APK 文件链接",
|
||||||
"selectX": "选择{}",
|
"selectX": "选择{}",
|
||||||
"parallelDownloads": "启用并行下载",
|
"parallelDownloads": "启用并行下载",
|
||||||
"installMethod": "安装方式",
|
"useShizuku": "使用 Shizuku 或 Sui 安装",
|
||||||
"normal": "常规",
|
|
||||||
"root": "root",
|
|
||||||
"shizukuBinderNotFound": "未发现兼容的 Shizuku 服务",
|
"shizukuBinderNotFound": "未发现兼容的 Shizuku 服务",
|
||||||
|
"shizukuOld": "旧的 Shizuku 版本 (<11) - 更新它",
|
||||||
|
"shizukuOldAndroidWithADB": "使用 ADB 在 Android < 8.1 上运行 Shizuku - 更新 Android 或使用 Sui 代替",
|
||||||
|
"shizukuPretendToBeGooglePlay": "将 Google Play 设置为安装源(如果使用 Shizuku)",
|
||||||
"useSystemFont": "使用系统字体",
|
"useSystemFont": "使用系统字体",
|
||||||
"systemFontError": "加载系统字体出错:{}",
|
|
||||||
"useVersionCodeAsOSVersion": "使用内部版本号代替应用定义的版本号",
|
"useVersionCodeAsOSVersion": "使用内部版本号代替应用定义的版本号",
|
||||||
"requestHeader": "请求标头",
|
"requestHeader": "请求标头",
|
||||||
"useLatestAssetDateAsReleaseDate": "使用最近文件上传时间作为发行日期",
|
"useLatestAssetDateAsReleaseDate": "使用最近文件上传时间作为发行日期",
|
||||||
@@ -352,6 +357,10 @@
|
|||||||
"one": "{} 和另外 1 个应用已更新。",
|
"one": "{} 和另外 1 个应用已更新。",
|
||||||
"other": "“{}”和另外 {} 个应用已更新。"
|
"other": "“{}”和另外 {} 个应用已更新。"
|
||||||
},
|
},
|
||||||
|
"xAndNMoreUpdatesFailed": {
|
||||||
|
"one": "更新 {} 和另外 1 个应用程序失败。",
|
||||||
|
"other": "未能更新 {} 和 {} 更多应用程序。"
|
||||||
|
},
|
||||||
"xAndNMoreUpdatesPossiblyInstalled": {
|
"xAndNMoreUpdatesPossiblyInstalled": {
|
||||||
"one": "{} 和另外 1 个应用已尝试更新。",
|
"one": "{} 和另外 1 个应用已尝试更新。",
|
||||||
"other": "“{}”和另外 {} 个应用已尝试更新。"
|
"other": "“{}”和另外 {} 个应用已尝试更新。"
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import 'package:flutter/services.dart';
|
|||||||
import 'package:obtainium/pages/home.dart';
|
import 'package:obtainium/pages/home.dart';
|
||||||
import 'package:obtainium/providers/apps_provider.dart';
|
import 'package:obtainium/providers/apps_provider.dart';
|
||||||
import 'package:obtainium/providers/logs_provider.dart';
|
import 'package:obtainium/providers/logs_provider.dart';
|
||||||
|
import 'package:obtainium/providers/native_provider.dart';
|
||||||
import 'package:obtainium/providers/notifications_provider.dart';
|
import 'package:obtainium/providers/notifications_provider.dart';
|
||||||
import 'package:obtainium/providers/settings_provider.dart';
|
import 'package:obtainium/providers/settings_provider.dart';
|
||||||
import 'package:obtainium/providers/source_provider.dart';
|
import 'package:obtainium/providers/source_provider.dart';
|
||||||
@@ -118,8 +119,6 @@ void main() async {
|
|||||||
BackgroundFetch.registerHeadlessTask(backgroundFetchHeadlessTask);
|
BackgroundFetch.registerHeadlessTask(backgroundFetchHeadlessTask);
|
||||||
}
|
}
|
||||||
|
|
||||||
var defaultThemeColour = Colors.deepPurple;
|
|
||||||
|
|
||||||
class Obtainium extends StatefulWidget {
|
class Obtainium extends StatefulWidget {
|
||||||
const Obtainium({super.key});
|
const Obtainium({super.key});
|
||||||
|
|
||||||
@@ -213,15 +212,13 @@ class _ObtainiumState extends State<Obtainium> {
|
|||||||
// Decide on a colour/brightness scheme based on OS and user settings
|
// Decide on a colour/brightness scheme based on OS and user settings
|
||||||
ColorScheme lightColorScheme;
|
ColorScheme lightColorScheme;
|
||||||
ColorScheme darkColorScheme;
|
ColorScheme darkColorScheme;
|
||||||
if (lightDynamic != null &&
|
if (lightDynamic != null && darkDynamic != null && settingsProvider.useMaterialYou) {
|
||||||
darkDynamic != null &&
|
|
||||||
settingsProvider.colour == ColourSettings.materialYou) {
|
|
||||||
lightColorScheme = lightDynamic.harmonized();
|
lightColorScheme = lightDynamic.harmonized();
|
||||||
darkColorScheme = darkDynamic.harmonized();
|
darkColorScheme = darkDynamic.harmonized();
|
||||||
} else {
|
} else {
|
||||||
lightColorScheme = ColorScheme.fromSeed(seedColor: defaultThemeColour);
|
lightColorScheme = ColorScheme.fromSeed(seedColor: settingsProvider.themeColor);
|
||||||
darkColorScheme = ColorScheme.fromSeed(
|
darkColorScheme = ColorScheme.fromSeed(
|
||||||
seedColor: defaultThemeColour, brightness: Brightness.dark);
|
seedColor: settingsProvider.themeColor, brightness: Brightness.dark);
|
||||||
}
|
}
|
||||||
|
|
||||||
// set the background and surface colors to pure black in the amoled theme
|
// set the background and surface colors to pure black in the amoled theme
|
||||||
@@ -231,6 +228,8 @@ class _ObtainiumState extends State<Obtainium> {
|
|||||||
.harmonized();
|
.harmonized();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (settingsProvider.useSystemFont) NativeFeatures.loadSystemFont();
|
||||||
|
|
||||||
return MaterialApp(
|
return MaterialApp(
|
||||||
title: 'Obtainium',
|
title: 'Obtainium',
|
||||||
localizationsDelegates: context.localizationDelegates,
|
localizationsDelegates: context.localizationDelegates,
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
import 'package:device_info_plus/device_info_plus.dart';
|
import 'package:device_info_plus/device_info_plus.dart';
|
||||||
import 'package:easy_localization/easy_localization.dart';
|
import 'package:easy_localization/easy_localization.dart';
|
||||||
|
import 'package:equations/equations.dart';
|
||||||
|
import 'package:flex_color_picker/flex_color_picker.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:obtainium/components/custom_app_bar.dart';
|
import 'package:obtainium/components/custom_app_bar.dart';
|
||||||
import 'package:obtainium/components/generated_form.dart';
|
import 'package:obtainium/components/generated_form.dart';
|
||||||
@@ -12,6 +14,7 @@ import 'package:obtainium/providers/settings_provider.dart';
|
|||||||
import 'package:obtainium/providers/source_provider.dart';
|
import 'package:obtainium/providers/source_provider.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
import 'package:share_plus/share_plus.dart';
|
import 'package:share_plus/share_plus.dart';
|
||||||
|
import 'package:shizuku_apk_installer/shizuku_apk_installer.dart';
|
||||||
import 'package:url_launcher/url_launcher_string.dart';
|
import 'package:url_launcher/url_launcher_string.dart';
|
||||||
|
|
||||||
class SettingsPage extends StatefulWidget {
|
class SettingsPage extends StatefulWidget {
|
||||||
@@ -22,78 +25,196 @@ class SettingsPage extends StatefulWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class _SettingsPageState extends State<SettingsPage> {
|
class _SettingsPageState extends State<SettingsPage> {
|
||||||
|
List<int> updateIntervalNodes = [
|
||||||
|
15, 30, 60, 120, 180, 360, 720, 1440, 4320, 10080, 20160, 43200];
|
||||||
|
int updateInterval = 0;
|
||||||
|
late SplineInterpolation updateIntervalInterpolator; // 🤓
|
||||||
|
String updateIntervalLabel = tr('neverManualOnly');
|
||||||
|
bool showIntervalLabel = true;
|
||||||
|
final Map<ColorSwatch<Object>, String> colorsNameMap =
|
||||||
|
<ColorSwatch<Object>, String> {
|
||||||
|
ColorTools.createPrimarySwatch(obtainiumThemeColor): 'Obtainium'
|
||||||
|
};
|
||||||
|
|
||||||
|
void initUpdateIntervalInterpolator() {
|
||||||
|
List<InterpolationNode> nodes = [];
|
||||||
|
for (final (index, element) in updateIntervalNodes.indexed) {
|
||||||
|
nodes.add(InterpolationNode(x: index.toDouble()+1, y: element.toDouble()));
|
||||||
|
}
|
||||||
|
updateIntervalInterpolator = SplineInterpolation(nodes: nodes);
|
||||||
|
}
|
||||||
|
|
||||||
|
void processIntervalSliderValue(double val) {
|
||||||
|
if (val < 0.5) {
|
||||||
|
updateInterval = 0;
|
||||||
|
updateIntervalLabel = tr('neverManualOnly');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
int valInterpolated = 0;
|
||||||
|
if (val < 1) {
|
||||||
|
valInterpolated = 15;
|
||||||
|
} else {
|
||||||
|
valInterpolated = updateIntervalInterpolator.compute(val).round();
|
||||||
|
}
|
||||||
|
if (valInterpolated < 60) {
|
||||||
|
updateInterval = valInterpolated;
|
||||||
|
updateIntervalLabel = plural('minute', valInterpolated);
|
||||||
|
} else if (valInterpolated < 8 * 60) {
|
||||||
|
int valRounded = (valInterpolated / 15).floor() * 15;
|
||||||
|
updateInterval = valRounded;
|
||||||
|
updateIntervalLabel = plural('hour', valRounded ~/ 60);
|
||||||
|
int mins = valRounded % 60;
|
||||||
|
if (mins != 0) updateIntervalLabel += " ${plural('minute', mins)}";
|
||||||
|
} else if (valInterpolated < 24 * 60) {
|
||||||
|
int valRounded = (valInterpolated / 30).floor() * 30;
|
||||||
|
updateInterval = valRounded;
|
||||||
|
updateIntervalLabel = plural('hour', valRounded / 60);
|
||||||
|
} else if (valInterpolated < 7 * 24 * 60){
|
||||||
|
int valRounded = (valInterpolated / (12 * 60)).floor() * 12 * 60;
|
||||||
|
updateInterval = valRounded;
|
||||||
|
updateIntervalLabel = plural('day', valRounded / (24 * 60));
|
||||||
|
} else {
|
||||||
|
int valRounded = (valInterpolated / (24 * 60)).floor() * 24 * 60;
|
||||||
|
updateInterval = valRounded;
|
||||||
|
updateIntervalLabel = plural('day', valRounded ~/ (24 * 60));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
SettingsProvider settingsProvider = context.watch<SettingsProvider>();
|
SettingsProvider settingsProvider = context.watch<SettingsProvider>();
|
||||||
SourceProvider sourceProvider = SourceProvider();
|
SourceProvider sourceProvider = SourceProvider();
|
||||||
if (settingsProvider.prefs == null) {
|
if (settingsProvider.prefs == null) settingsProvider.initializeSettings();
|
||||||
settingsProvider.initializeSettings();
|
initUpdateIntervalInterpolator();
|
||||||
|
processIntervalSliderValue(settingsProvider.updateIntervalSliderVal);
|
||||||
|
|
||||||
|
var themeDropdown = FutureBuilder(
|
||||||
|
builder: (ctx, val) {
|
||||||
|
return DropdownButtonFormField(
|
||||||
|
decoration: InputDecoration(labelText: tr('theme')),
|
||||||
|
value: settingsProvider.theme,
|
||||||
|
items: [
|
||||||
|
DropdownMenuItem(
|
||||||
|
value: ThemeSettings.light,
|
||||||
|
child: Text(tr('light')),
|
||||||
|
),
|
||||||
|
DropdownMenuItem(
|
||||||
|
value: ThemeSettings.dark,
|
||||||
|
child: Text(tr('dark')),
|
||||||
|
),
|
||||||
|
if ((val.data?.version.sdkInt ?? 0) >= 29) DropdownMenuItem(
|
||||||
|
value: ThemeSettings.system,
|
||||||
|
child: Text(tr('followSystem')),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
onChanged: (value) {
|
||||||
|
if (value != null) {
|
||||||
|
settingsProvider.theme = value;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
future: DeviceInfoPlugin().androidInfo
|
||||||
|
);
|
||||||
|
|
||||||
|
Future<bool> colorPickerDialog() async {
|
||||||
|
return ColorPicker(
|
||||||
|
color: settingsProvider.themeColor,
|
||||||
|
onColorChanged: (Color color) =>
|
||||||
|
setState(() =>
|
||||||
|
settingsProvider.themeColor = color
|
||||||
|
),
|
||||||
|
actionButtons: const ColorPickerActionButtons(
|
||||||
|
okButton: true,
|
||||||
|
closeButton: true,
|
||||||
|
dialogActionButtons: false,
|
||||||
|
),
|
||||||
|
pickersEnabled: const <ColorPickerType, bool>{
|
||||||
|
ColorPickerType.both: false,
|
||||||
|
ColorPickerType.primary: false,
|
||||||
|
ColorPickerType.accent: false,
|
||||||
|
ColorPickerType.bw: false,
|
||||||
|
ColorPickerType.custom: true,
|
||||||
|
ColorPickerType.wheel: true,
|
||||||
|
},
|
||||||
|
pickerTypeLabels: <ColorPickerType, String>{
|
||||||
|
ColorPickerType.custom: tr('standard'),
|
||||||
|
ColorPickerType.wheel: tr('custom')
|
||||||
|
},
|
||||||
|
title: Text(tr('selectX', args: [tr('colour')]),
|
||||||
|
style: Theme.of(context).textTheme.titleLarge),
|
||||||
|
wheelDiameter: 192,
|
||||||
|
wheelSquareBorderRadius: 32,
|
||||||
|
width: 48,
|
||||||
|
height: 48,
|
||||||
|
borderRadius: 24,
|
||||||
|
spacing: 8,
|
||||||
|
runSpacing: 8,
|
||||||
|
enableShadesSelection: false,
|
||||||
|
customColorSwatchesAndNames: colorsNameMap,
|
||||||
|
showMaterialName: true,
|
||||||
|
showColorName: true,
|
||||||
|
materialNameTextStyle: Theme.of(context).textTheme.bodySmall,
|
||||||
|
colorNameTextStyle: Theme.of(context).textTheme.bodySmall,
|
||||||
|
copyPasteBehavior: const ColorPickerCopyPasteBehavior(longPressMenu: true),
|
||||||
|
).showPickerDialog(
|
||||||
|
context,
|
||||||
|
transitionBuilder: (BuildContext context,
|
||||||
|
Animation<double> a1, Animation<double> a2, Widget widget) {
|
||||||
|
final double curvedValue = Curves.easeInCubic.transform(a1.value);
|
||||||
|
return Transform(
|
||||||
|
alignment: Alignment.center,
|
||||||
|
transform: Matrix4.diagonal3Values(curvedValue, curvedValue, 1),
|
||||||
|
child: Opacity(
|
||||||
|
opacity: curvedValue,
|
||||||
|
child: widget
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
transitionDuration: const Duration(milliseconds: 250),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
var installMethodDropdown = DropdownButtonFormField(
|
var colorPicker = ListTile(
|
||||||
decoration: InputDecoration(labelText: tr('installMethod')),
|
dense: true,
|
||||||
value: settingsProvider.installMethod,
|
contentPadding: EdgeInsets.zero,
|
||||||
items: [
|
title: Text(tr('selectX', args: [tr('colour')])),
|
||||||
DropdownMenuItem(
|
subtitle: Text("${ColorTools.nameThatColor(settingsProvider.themeColor)} "
|
||||||
value: InstallMethodSettings.normal,
|
"(${ColorTools.materialNameAndCode(settingsProvider.themeColor,
|
||||||
child: Text(tr('normal')),
|
colorSwatchNameMap: colorsNameMap)})"),
|
||||||
),
|
trailing: ColorIndicator(
|
||||||
const DropdownMenuItem(
|
width: 40,
|
||||||
value: InstallMethodSettings.shizuku,
|
height: 40,
|
||||||
child: Text('Shizuku'),
|
borderRadius: 20,
|
||||||
),
|
color: settingsProvider.themeColor,
|
||||||
DropdownMenuItem(
|
onSelectFocus: false,
|
||||||
value: InstallMethodSettings.root,
|
onSelect: () async {
|
||||||
child: Text(tr('root')),
|
final Color colorBeforeDialog = settingsProvider.themeColor;
|
||||||
)
|
if (!(await colorPickerDialog())) {
|
||||||
],
|
setState(() {
|
||||||
onChanged: (value) {
|
settingsProvider.themeColor = colorBeforeDialog;
|
||||||
if (value != null) {
|
});
|
||||||
settingsProvider.installMethod = value;
|
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
var themeDropdown = DropdownButtonFormField(
|
var useMaterialThemeSwitch = FutureBuilder(
|
||||||
decoration: InputDecoration(labelText: tr('theme')),
|
builder: (ctx, val) {
|
||||||
value: settingsProvider.theme,
|
return ((val.data?.version.sdkInt ?? 0) >= 31) ?
|
||||||
items: [
|
Row(
|
||||||
DropdownMenuItem(
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
value: ThemeSettings.dark,
|
children: [
|
||||||
child: Text(tr('dark')),
|
Flexible(child: Text(tr('useMaterialYou'))),
|
||||||
),
|
Switch(
|
||||||
DropdownMenuItem(
|
value: settingsProvider.useMaterialYou,
|
||||||
value: ThemeSettings.light,
|
onChanged: (value) {
|
||||||
child: Text(tr('light')),
|
settingsProvider.useMaterialYou = value;
|
||||||
),
|
})
|
||||||
DropdownMenuItem(
|
],
|
||||||
value: ThemeSettings.system,
|
) : const SizedBox.shrink();
|
||||||
child: Text(tr('followSystem')),
|
},
|
||||||
)
|
future: DeviceInfoPlugin().androidInfo
|
||||||
],
|
);
|
||||||
onChanged: (value) {
|
|
||||||
if (value != null) {
|
|
||||||
settingsProvider.theme = value;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
var colourDropdown = DropdownButtonFormField(
|
|
||||||
decoration: InputDecoration(labelText: tr('colour')),
|
|
||||||
value: settingsProvider.colour,
|
|
||||||
items: const [
|
|
||||||
DropdownMenuItem(
|
|
||||||
value: ColourSettings.basic,
|
|
||||||
child: Text('Obtainium'),
|
|
||||||
),
|
|
||||||
DropdownMenuItem(
|
|
||||||
value: ColourSettings.materialYou,
|
|
||||||
child: Text('Material You'),
|
|
||||||
)
|
|
||||||
],
|
|
||||||
onChanged: (value) {
|
|
||||||
if (value != null) {
|
|
||||||
settingsProvider.colour = value;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
var sortDropdown = DropdownButtonFormField(
|
var sortDropdown = DropdownButtonFormField(
|
||||||
isExpanded: true,
|
isExpanded: true,
|
||||||
@@ -165,30 +286,29 @@ class _SettingsPageState extends State<SettingsPage> {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
var intervalDropdown = DropdownButtonFormField(
|
var intervalSlider = Slider(
|
||||||
decoration: InputDecoration(labelText: tr('bgUpdateCheckInterval')),
|
value: settingsProvider.updateIntervalSliderVal,
|
||||||
value: settingsProvider.updateInterval,
|
max: updateIntervalNodes.length.toDouble(),
|
||||||
items: updateIntervals.map((e) {
|
divisions: updateIntervalNodes.length * 20,
|
||||||
int displayNum = (e < 60
|
label: updateIntervalLabel,
|
||||||
? e
|
onChanged: (double value) {
|
||||||
: e < 1440
|
setState(() {
|
||||||
? e / 60
|
settingsProvider.updateIntervalSliderVal = value;
|
||||||
: e / 1440)
|
processIntervalSliderValue(value);
|
||||||
.round();
|
|
||||||
String display = e == 0
|
|
||||||
? tr('neverManualOnly')
|
|
||||||
: (e < 60
|
|
||||||
? plural('minute', displayNum)
|
|
||||||
: e < 1440
|
|
||||||
? plural('hour', displayNum)
|
|
||||||
: plural('day', displayNum));
|
|
||||||
return DropdownMenuItem(value: e, child: Text(display));
|
|
||||||
}).toList(),
|
|
||||||
onChanged: (value) {
|
|
||||||
if (value != null) {
|
|
||||||
settingsProvider.updateInterval = value;
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
},
|
||||||
|
onChangeStart: (double value) {
|
||||||
|
setState(() {
|
||||||
|
showIntervalLabel = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
onChangeEnd: (double value) {
|
||||||
|
setState(() {
|
||||||
|
showIntervalLabel = true;
|
||||||
|
settingsProvider.updateInterval = updateInterval;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
var sourceSpecificFields = sourceProvider.sources.map((e) {
|
var sourceSpecificFields = sourceProvider.sources.map((e) {
|
||||||
if (e.sourceConfigSettingFormItems.isNotEmpty) {
|
if (e.sourceConfigSettingFormItems.isNotEmpty) {
|
||||||
@@ -239,15 +359,19 @@ class _SettingsPageState extends State<SettingsPage> {
|
|||||||
fontWeight: FontWeight.bold,
|
fontWeight: FontWeight.bold,
|
||||||
color: Theme.of(context).colorScheme.primary),
|
color: Theme.of(context).colorScheme.primary),
|
||||||
),
|
),
|
||||||
intervalDropdown,
|
//intervalDropdown,
|
||||||
|
height16,
|
||||||
|
if (showIntervalLabel) SizedBox(
|
||||||
|
child: Text("${tr('bgUpdateCheckInterval')}: $updateIntervalLabel")
|
||||||
|
) else const SizedBox(height: 16),
|
||||||
|
intervalSlider,
|
||||||
FutureBuilder(
|
FutureBuilder(
|
||||||
builder: (ctx, val) {
|
builder: (ctx, val) {
|
||||||
return (val.data?.version.sdkInt ?? 0) >= 30
|
return ((val.data?.version.sdkInt ?? 0) >= 30) || settingsProvider.useShizuku
|
||||||
? Column(
|
? Column(
|
||||||
crossAxisAlignment:
|
crossAxisAlignment:
|
||||||
CrossAxisAlignment.start,
|
CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
height16,
|
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment:
|
mainAxisAlignment:
|
||||||
MainAxisAlignment
|
MainAxisAlignment
|
||||||
@@ -385,38 +509,65 @@ class _SettingsPageState extends State<SettingsPage> {
|
|||||||
children: [
|
children: [
|
||||||
Flexible(
|
Flexible(
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
children: [
|
children: [
|
||||||
Text(tr(
|
Text(tr(
|
||||||
'beforeNewInstallsShareToAppVerifier')),
|
'beforeNewInstallsShareToAppVerifier')),
|
||||||
GestureDetector(
|
GestureDetector(
|
||||||
onTap: () {
|
onTap: () {
|
||||||
launchUrlString(
|
launchUrlString(
|
||||||
'https://github.com/soupslurpr/AppVerifier',
|
'https://github.com/soupslurpr/AppVerifier',
|
||||||
mode: LaunchMode
|
mode: LaunchMode
|
||||||
.externalApplication);
|
.externalApplication);
|
||||||
},
|
},
|
||||||
child: Text(
|
child: Text(
|
||||||
tr('about'),
|
tr('about'),
|
||||||
style: const TextStyle(
|
style: const TextStyle(
|
||||||
decoration:
|
decoration:
|
||||||
TextDecoration.underline,
|
TextDecoration.underline,
|
||||||
fontSize: 12),
|
fontSize: 12),
|
||||||
)),
|
)),
|
||||||
],
|
],
|
||||||
)),
|
)),
|
||||||
Switch(
|
Switch(
|
||||||
value: settingsProvider
|
value: settingsProvider
|
||||||
.beforeNewInstallsShareToAppVerifier,
|
.beforeNewInstallsShareToAppVerifier,
|
||||||
onChanged: (value) {
|
onChanged: (value) {
|
||||||
settingsProvider
|
settingsProvider
|
||||||
.beforeNewInstallsShareToAppVerifier =
|
.beforeNewInstallsShareToAppVerifier =
|
||||||
value;
|
value;
|
||||||
})
|
})
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
installMethodDropdown,
|
height16,
|
||||||
|
Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
|
children: [
|
||||||
|
Flexible(child: Text(tr('useShizuku'))),
|
||||||
|
Switch(
|
||||||
|
value: settingsProvider.useShizuku,
|
||||||
|
onChanged: (useShizuku) {
|
||||||
|
if (useShizuku) {
|
||||||
|
ShizukuApkInstaller.checkPermission().then((resCode) {
|
||||||
|
settingsProvider.useShizuku = resCode!.startsWith('granted');
|
||||||
|
switch(resCode){
|
||||||
|
case 'binder_not_found':
|
||||||
|
showError(ObtainiumError(tr('shizukuBinderNotFound')), context);
|
||||||
|
case 'old_shizuku':
|
||||||
|
showError(ObtainiumError(tr('shizukuOld')), context);
|
||||||
|
case 'old_android_with_adb':
|
||||||
|
showError(ObtainiumError(tr('shizukuOldAndroidWithADB')), context);
|
||||||
|
case 'denied':
|
||||||
|
showError(ObtainiumError(tr('cancelled')), context);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
settingsProvider.useShizuku = false;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
],
|
||||||
|
),
|
||||||
height32,
|
height32,
|
||||||
Text(
|
Text(
|
||||||
tr('sourceSpecific'),
|
tr('sourceSpecific'),
|
||||||
@@ -445,8 +596,9 @@ class _SettingsPageState extends State<SettingsPage> {
|
|||||||
})
|
})
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
colourDropdown,
|
|
||||||
height16,
|
height16,
|
||||||
|
useMaterialThemeSwitch,
|
||||||
|
if (!settingsProvider.useMaterialYou) colorPicker,
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
@@ -460,34 +612,35 @@ class _SettingsPageState extends State<SettingsPage> {
|
|||||||
),
|
),
|
||||||
height16,
|
height16,
|
||||||
localeDropdown,
|
localeDropdown,
|
||||||
height16,
|
FutureBuilder(
|
||||||
Row(
|
builder: (ctx, val) {
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
return (val.data?.version.sdkInt ?? 0) >= 34
|
||||||
children: [
|
? Column(
|
||||||
Flexible(child: Text(tr('useSystemFont'))),
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
Switch(
|
children: [
|
||||||
value: settingsProvider.useSystemFont,
|
height16,
|
||||||
onChanged: (useSystemFont) {
|
Row(
|
||||||
if (useSystemFont) {
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
NativeFeatures.loadSystemFont()
|
children: [
|
||||||
.then((fontLoadRes) {
|
Flexible(child: Text(tr('useSystemFont'))),
|
||||||
if (fontLoadRes == 'ok') {
|
Switch(
|
||||||
settingsProvider.useSystemFont =
|
value: settingsProvider.useSystemFont,
|
||||||
true;
|
onChanged: (useSystemFont) {
|
||||||
} else {
|
if (useSystemFont) {
|
||||||
showError(
|
NativeFeatures.loadSystemFont().then((val) {
|
||||||
ObtainiumError(tr(
|
settingsProvider.useSystemFont = true;
|
||||||
'systemFontError',
|
});
|
||||||
args: [fontLoadRes])),
|
} else {
|
||||||
context);
|
settingsProvider.useSystemFont = false;
|
||||||
}
|
}
|
||||||
});
|
})
|
||||||
} else {
|
]
|
||||||
settingsProvider.useSystemFont = false;
|
)
|
||||||
}
|
]
|
||||||
})
|
)
|
||||||
],
|
: const SizedBox.shrink();
|
||||||
),
|
},
|
||||||
|
future: DeviceInfoPlugin().androidInfo),
|
||||||
height16,
|
height16,
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ import 'package:android_intent_plus/android_intent.dart';
|
|||||||
import 'package:flutter_archive/flutter_archive.dart';
|
import 'package:flutter_archive/flutter_archive.dart';
|
||||||
import 'package:share_plus/share_plus.dart';
|
import 'package:share_plus/share_plus.dart';
|
||||||
import 'package:shared_storage/shared_storage.dart' as saf;
|
import 'package:shared_storage/shared_storage.dart' as saf;
|
||||||
import 'native_provider.dart';
|
import 'package:shizuku_apk_installer/shizuku_apk_installer.dart';
|
||||||
|
|
||||||
final pm = AndroidPackageManager();
|
final pm = AndroidPackageManager();
|
||||||
|
|
||||||
@@ -507,9 +507,6 @@ class AppsProvider with ChangeNotifier {
|
|||||||
.isNotEmpty;
|
.isNotEmpty;
|
||||||
|
|
||||||
Future<bool> canInstallSilently(App app) async {
|
Future<bool> canInstallSilently(App app) async {
|
||||||
if (app.id == obtainiumId) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (!settingsProvider.enableBackgroundUpdates) {
|
if (!settingsProvider.enableBackgroundUpdates) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -517,8 +514,7 @@ class AppsProvider with ChangeNotifier {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (app.apkUrls.length > 1) {
|
if (app.apkUrls.length > 1) {
|
||||||
// Manual API selection means silent install is not possible
|
return false; // Manual API selection means silent install is not possible
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var osInfo = await DeviceInfoPlugin().androidInfo;
|
var osInfo = await DeviceInfoPlugin().androidInfo;
|
||||||
@@ -529,20 +525,29 @@ class AppsProvider with ChangeNotifier {
|
|||||||
?.installingPackageName
|
?.installingPackageName
|
||||||
: (await pm.getInstallerPackageName(packageName: app.id));
|
: (await pm.getInstallerPackageName(packageName: app.id));
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
// Probably not installed - ignore
|
return false; // App probably not installed
|
||||||
}
|
}
|
||||||
if (installerPackageName != obtainiumId) {
|
|
||||||
// If we did not install the app (or it isn't installed), silent install is not possible
|
int? targetSDK = (await getInstalledInfo(app.id))?.applicationInfo?.targetSdkVersion;
|
||||||
|
// The APK should target a new enough API
|
||||||
|
// https://developer.android.com/reference/android/content/pm/PackageInstaller.SessionParams#setRequireUserAction(int)
|
||||||
|
if (!(targetSDK != null && targetSDK >= (osInfo.version.sdkInt - 3))) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
int? targetSDK =
|
|
||||||
(await getInstalledInfo(app.id))?.applicationInfo?.targetSdkVersion;
|
|
||||||
|
|
||||||
// The OS must also be new enough and the APK should target a new enough API
|
if (settingsProvider.useShizuku) {
|
||||||
return osInfo.version.sdkInt >= 31 &&
|
return true;
|
||||||
targetSDK != null &&
|
}
|
||||||
targetSDK >= // https://developer.android.com/reference/android/content/pm/PackageInstaller.SessionParams#setRequireUserAction(int)
|
|
||||||
(osInfo.version.sdkInt - 3);
|
if (app.id == obtainiumId) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (installerPackageName != obtainiumId) {
|
||||||
|
// If we did not install the app, silent install is not possible
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// The OS must also be new enough
|
||||||
|
return osInfo.version.sdkInt >= 31;
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> waitForUserToReturnToForeground(BuildContext context) async {
|
Future<void> waitForUserToReturnToForeground(BuildContext context) async {
|
||||||
@@ -566,7 +571,7 @@ class AppsProvider with ChangeNotifier {
|
|||||||
|
|
||||||
Future<bool> installXApkDir(
|
Future<bool> installXApkDir(
|
||||||
DownloadedXApkDir dir, BuildContext? firstTimeWithContext,
|
DownloadedXApkDir dir, BuildContext? firstTimeWithContext,
|
||||||
{bool needsBGWorkaround = false}) async {
|
{bool needsBGWorkaround = false, bool shizukuPretendToBeGooglePlay = false}) async {
|
||||||
// We don't know which APKs in an XAPK are supported by the user's device
|
// We don't know which APKs in an XAPK are supported by the user's device
|
||||||
// So we try installing all of them and assume success if at least one installed
|
// So we try installing all of them and assume success if at least one installed
|
||||||
// If 0 APKs installed, throw the first install error encountered
|
// If 0 APKs installed, throw the first install error encountered
|
||||||
@@ -581,7 +586,8 @@ class AppsProvider with ChangeNotifier {
|
|||||||
somethingInstalled = somethingInstalled ||
|
somethingInstalled = somethingInstalled ||
|
||||||
await installApk(
|
await installApk(
|
||||||
DownloadedApk(dir.appId, file), firstTimeWithContext,
|
DownloadedApk(dir.appId, file), firstTimeWithContext,
|
||||||
needsBGWorkaround: needsBGWorkaround);
|
needsBGWorkaround: needsBGWorkaround,
|
||||||
|
shizukuPretendToBeGooglePlay: shizukuPretendToBeGooglePlay);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
logs.add(
|
logs.add(
|
||||||
'Could not install APK from XAPK \'${file.path}\': ${e.toString()}');
|
'Could not install APK from XAPK \'${file.path}\': ${e.toString()}');
|
||||||
@@ -604,7 +610,7 @@ class AppsProvider with ChangeNotifier {
|
|||||||
|
|
||||||
Future<bool> installApk(
|
Future<bool> installApk(
|
||||||
DownloadedApk file, BuildContext? firstTimeWithContext,
|
DownloadedApk file, BuildContext? firstTimeWithContext,
|
||||||
{bool needsBGWorkaround = false}) async {
|
{bool needsBGWorkaround = false, bool shizukuPretendToBeGooglePlay = false}) async {
|
||||||
if (firstTimeWithContext != null &&
|
if (firstTimeWithContext != null &&
|
||||||
settingsProvider.beforeNewInstallsShareToAppVerifier &&
|
settingsProvider.beforeNewInstallsShareToAppVerifier &&
|
||||||
(await getInstalledInfo('dev.soupslurpr.appverifier')) != null) {
|
(await getInstalledInfo('dev.soupslurpr.appverifier')) != null) {
|
||||||
@@ -632,8 +638,7 @@ class AppsProvider with ChangeNotifier {
|
|||||||
!(await canDowngradeApps())) {
|
!(await canDowngradeApps())) {
|
||||||
throw DowngradeError();
|
throw DowngradeError();
|
||||||
}
|
}
|
||||||
if (needsBGWorkaround &&
|
if (needsBGWorkaround) {
|
||||||
settingsProvider.installMethod == InstallMethodSettings.normal) {
|
|
||||||
// The below 'await' will never return if we are in a background process
|
// The below 'await' will never return if we are in a background process
|
||||||
// To work around this, we should assume the install will be successful
|
// To work around this, we should assume the install will be successful
|
||||||
// So we update the app's installed version first as we will never get to the later code
|
// So we update the app's installed version first as we will never get to the later code
|
||||||
@@ -645,20 +650,11 @@ class AppsProvider with ChangeNotifier {
|
|||||||
attemptToCorrectInstallStatus: false);
|
attemptToCorrectInstallStatus: false);
|
||||||
}
|
}
|
||||||
int? code;
|
int? code;
|
||||||
switch (settingsProvider.installMethod) {
|
if (!settingsProvider.useShizuku) {
|
||||||
case InstallMethodSettings.normal:
|
code = await AndroidPackageInstaller.installApk(apkFilePath: file.file.path);
|
||||||
code = await AndroidPackageInstaller.installApk(
|
} else {
|
||||||
apkFilePath: file.file.path);
|
code = await ShizukuApkInstaller.installAPK(file.file.uri.toString(),
|
||||||
case InstallMethodSettings.shizuku:
|
shizukuPretendToBeGooglePlay ? "com.android.vending" : "");
|
||||||
code = (await NativeFeatures.installWithShizuku(
|
|
||||||
apkFileUri: file.file.uri.toString()))
|
|
||||||
? 0
|
|
||||||
: 1;
|
|
||||||
case InstallMethodSettings.root:
|
|
||||||
code =
|
|
||||||
(await NativeFeatures.installWithRoot(apkFilePath: file.file.path))
|
|
||||||
? 0
|
|
||||||
: 1;
|
|
||||||
}
|
}
|
||||||
bool installed = false;
|
bool installed = false;
|
||||||
if (code != null && code != 0 && code != 3) {
|
if (code != null && code != 0 && code != 3) {
|
||||||
@@ -716,8 +712,8 @@ class AppsProvider with ChangeNotifier {
|
|||||||
List<String> archs = (await DeviceInfoPlugin().androidInfo).supportedAbis;
|
List<String> archs = (await DeviceInfoPlugin().androidInfo).supportedAbis;
|
||||||
|
|
||||||
if (urlsToSelectFrom.length > 1 && context != null) {
|
if (urlsToSelectFrom.length > 1 && context != null) {
|
||||||
// ignore: use_build_context_synchronously
|
|
||||||
appFileUrl = await showDialog(
|
appFileUrl = await showDialog(
|
||||||
|
// ignore: use_build_context_synchronously
|
||||||
context: context,
|
context: context,
|
||||||
builder: (BuildContext ctx) {
|
builder: (BuildContext ctx) {
|
||||||
return AppFilePicker(
|
return AppFilePicker(
|
||||||
@@ -737,10 +733,9 @@ class AppsProvider with ChangeNotifier {
|
|||||||
if (appFileUrl != null &&
|
if (appFileUrl != null &&
|
||||||
getHost(appFileUrl.value) != getHost(app.url) &&
|
getHost(appFileUrl.value) != getHost(app.url) &&
|
||||||
context != null) {
|
context != null) {
|
||||||
// ignore: use_build_context_synchronously
|
|
||||||
if (!(settingsProvider.hideAPKOriginWarning) &&
|
if (!(settingsProvider.hideAPKOriginWarning) &&
|
||||||
// ignore: use_build_context_synchronously
|
|
||||||
await showDialog(
|
await showDialog(
|
||||||
|
// ignore: use_build_context_synchronously
|
||||||
context: context,
|
context: context,
|
||||||
builder: (BuildContext ctx) {
|
builder: (BuildContext ctx) {
|
||||||
return APKOriginWarningDialog(
|
return APKOriginWarningDialog(
|
||||||
@@ -828,23 +823,21 @@ class AppsProvider with ChangeNotifier {
|
|||||||
}
|
}
|
||||||
id = downloadedFile?.appId ?? downloadedDir!.appId;
|
id = downloadedFile?.appId ?? downloadedDir!.appId;
|
||||||
bool willBeSilent = await canInstallSilently(apps[id]!.app);
|
bool willBeSilent = await canInstallSilently(apps[id]!.app);
|
||||||
switch (settingsProvider.installMethod) {
|
if (!settingsProvider.useShizuku) {
|
||||||
case InstallMethodSettings.normal:
|
if (!(await settingsProvider.getInstallPermission(enforce: false))) {
|
||||||
if (!(await settingsProvider.getInstallPermission(
|
throw ObtainiumError(tr('cancelled'));
|
||||||
enforce: false))) {
|
}
|
||||||
throw ObtainiumError(tr('cancelled'));
|
} else {
|
||||||
}
|
switch((await ShizukuApkInstaller.checkPermission())!){
|
||||||
case InstallMethodSettings.shizuku:
|
case 'binder_not_found':
|
||||||
int code = await NativeFeatures.checkPermissionShizuku();
|
|
||||||
if (code == -1) {
|
|
||||||
throw ObtainiumError(tr('shizukuBinderNotFound'));
|
throw ObtainiumError(tr('shizukuBinderNotFound'));
|
||||||
} else if (code == 0) {
|
case 'old_shizuku':
|
||||||
|
throw ObtainiumError(tr('shizukuOld'));
|
||||||
|
case 'old_android_with_adb':
|
||||||
|
throw ObtainiumError(tr('shizukuOldAndroidWithADB'));
|
||||||
|
case 'denied':
|
||||||
throw ObtainiumError(tr('cancelled'));
|
throw ObtainiumError(tr('cancelled'));
|
||||||
}
|
}
|
||||||
case InstallMethodSettings.root:
|
|
||||||
if (!(await NativeFeatures.checkPermissionRoot())) {
|
|
||||||
throw ObtainiumError(tr('cancelled'));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (!willBeSilent && context != null) {
|
if (!willBeSilent && context != null) {
|
||||||
// ignore: use_build_context_synchronously
|
// ignore: use_build_context_synchronously
|
||||||
@@ -857,27 +850,32 @@ class AppsProvider with ChangeNotifier {
|
|||||||
bool sayInstalled = true;
|
bool sayInstalled = true;
|
||||||
var contextIfNewInstall =
|
var contextIfNewInstall =
|
||||||
apps[id]?.installedInfo == null ? context : null;
|
apps[id]?.installedInfo == null ? context : null;
|
||||||
|
bool needBGWorkaround = willBeSilent && context == null && !settingsProvider.useShizuku;
|
||||||
if (downloadedFile != null) {
|
if (downloadedFile != null) {
|
||||||
if (willBeSilent && context == null) {
|
if (needBGWorkaround) {
|
||||||
installApk(downloadedFile, contextIfNewInstall,
|
// ignore: use_build_context_synchronously
|
||||||
needsBGWorkaround: true);
|
installApk(downloadedFile, contextIfNewInstall, needsBGWorkaround: true);
|
||||||
} else {
|
} else {
|
||||||
sayInstalled =
|
// ignore: use_build_context_synchronously
|
||||||
await installApk(downloadedFile, contextIfNewInstall);
|
sayInstalled = await installApk(downloadedFile, contextIfNewInstall, shizukuPretendToBeGooglePlay: apps[id]!.app.additionalSettings['shizukuPretendToBeGooglePlay'] == true);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (willBeSilent && context == null) {
|
if (needBGWorkaround) {
|
||||||
installXApkDir(downloadedDir!, contextIfNewInstall,
|
// ignore: use_build_context_synchronously
|
||||||
needsBGWorkaround: true);
|
installXApkDir(downloadedDir!, contextIfNewInstall, needsBGWorkaround: true);
|
||||||
} else {
|
} else {
|
||||||
sayInstalled =
|
// ignore: use_build_context_synchronously
|
||||||
await installXApkDir(downloadedDir!, contextIfNewInstall);
|
sayInstalled = await installXApkDir(downloadedDir!, contextIfNewInstall, shizukuPretendToBeGooglePlay: apps[id]!.app.additionalSettings['shizukuPretendToBeGooglePlay'] == true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (willBeSilent && context == null) {
|
if (willBeSilent && context == null) {
|
||||||
notificationsProvider?.notify(SilentUpdateAttemptNotification(
|
if (!settingsProvider.useShizuku) {
|
||||||
[apps[id]!.app],
|
notificationsProvider?.notify(SilentUpdateAttemptNotification(
|
||||||
id: id.hashCode));
|
[apps[id]!.app], id: id.hashCode));
|
||||||
|
} else {
|
||||||
|
notificationsProvider?.notify(SilentUpdateNotification(
|
||||||
|
[apps[id]!.app], sayInstalled, id: id.hashCode));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (sayInstalled) {
|
if (sayInstalled) {
|
||||||
installedIds.add(id);
|
installedIds.add(id);
|
||||||
@@ -1710,7 +1708,7 @@ Future<void> bgUpdateCheck(String taskId, Map<String, dynamic>? params) async {
|
|||||||
int maxRetryWaitSeconds = 5;
|
int maxRetryWaitSeconds = 5;
|
||||||
|
|
||||||
var netResult = await (Connectivity().checkConnectivity());
|
var netResult = await (Connectivity().checkConnectivity());
|
||||||
if (netResult == ConnectivityResult.none) {
|
if (netResult.contains(ConnectivityResult.none)) {
|
||||||
logs.add('BG update task: No network.');
|
logs.add('BG update task: No network.');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -1747,8 +1745,8 @@ Future<void> bgUpdateCheck(String taskId, Map<String, dynamic>? params) async {
|
|||||||
|
|
||||||
var networkRestricted = false;
|
var networkRestricted = false;
|
||||||
if (appsProvider.settingsProvider.bgUpdatesOnWiFiOnly) {
|
if (appsProvider.settingsProvider.bgUpdatesOnWiFiOnly) {
|
||||||
networkRestricted = (netResult != ConnectivityResult.wifi) &&
|
networkRestricted = !netResult.contains(ConnectivityResult.wifi) &&
|
||||||
(netResult != ConnectivityResult.ethernet);
|
!netResult.contains(ConnectivityResult.ethernet);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (toCheck.isNotEmpty) {
|
if (toCheck.isNotEmpty) {
|
||||||
@@ -1792,8 +1790,8 @@ Future<void> bgUpdateCheck(String taskId, Map<String, dynamic>? params) async {
|
|||||||
var networkRestricted = false;
|
var networkRestricted = false;
|
||||||
if (appsProvider.settingsProvider.bgUpdatesOnWiFiOnly) {
|
if (appsProvider.settingsProvider.bgUpdatesOnWiFiOnly) {
|
||||||
var netResult = await (Connectivity().checkConnectivity());
|
var netResult = await (Connectivity().checkConnectivity());
|
||||||
networkRestricted = (netResult != ConnectivityResult.wifi) &&
|
networkRestricted = !netResult.contains(ConnectivityResult.wifi) &&
|
||||||
(netResult != ConnectivityResult.ethernet);
|
!netResult.contains(ConnectivityResult.ethernet);
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -1,75 +1,22 @@
|
|||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
import 'package:android_system_font/android_system_font.dart';
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
|
|
||||||
class NativeFeatures {
|
class NativeFeatures {
|
||||||
static const MethodChannel _channel = MethodChannel('native');
|
|
||||||
static bool _systemFontLoaded = false;
|
static bool _systemFontLoaded = false;
|
||||||
static bool _callbacksApplied = false;
|
|
||||||
static int _resPermShizuku = -2; // not set
|
|
||||||
|
|
||||||
static Future<ByteData> _readFileBytes(String path) async {
|
static Future<ByteData> _readFileBytes(String path) async {
|
||||||
var file = File(path);
|
var bytes = await File(path).readAsBytes();
|
||||||
var bytes = await file.readAsBytes();
|
|
||||||
return ByteData.view(bytes.buffer);
|
return ByteData.view(bytes.buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
static Future _handleCalls(MethodCall call) async {
|
static Future loadSystemFont() async {
|
||||||
if (call.method == 'resPermShizuku') {
|
if (_systemFontLoaded) return;
|
||||||
_resPermShizuku = call.arguments['res'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static Future _waitWhile(bool Function() test,
|
|
||||||
[Duration pollInterval = const Duration(milliseconds: 250)]) {
|
|
||||||
var completer = Completer();
|
|
||||||
check() {
|
|
||||||
if (test()) {
|
|
||||||
Timer(pollInterval, check);
|
|
||||||
} else {
|
|
||||||
completer.complete();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
check();
|
|
||||||
return completer.future;
|
|
||||||
}
|
|
||||||
|
|
||||||
static Future<String> loadSystemFont() async {
|
|
||||||
if (_systemFontLoaded) { return "ok"; }
|
|
||||||
var getFontRes = await _channel.invokeMethod('getSystemFont');
|
|
||||||
if (getFontRes[0] != '/') { return getFontRes; } // Error
|
|
||||||
var fontLoader = FontLoader('SystemFont');
|
var fontLoader = FontLoader('SystemFont');
|
||||||
fontLoader.addFont(_readFileBytes(getFontRes));
|
var fontFilePath = await AndroidSystemFont().getFilePath();
|
||||||
await fontLoader.load();
|
fontLoader.addFont(_readFileBytes(fontFilePath!));
|
||||||
|
fontLoader.load();
|
||||||
_systemFontLoaded = true;
|
_systemFontLoaded = true;
|
||||||
return "ok";
|
|
||||||
}
|
|
||||||
|
|
||||||
static Future<int> checkPermissionShizuku() async {
|
|
||||||
if (!_callbacksApplied) {
|
|
||||||
_channel.setMethodCallHandler(_handleCalls);
|
|
||||||
_callbacksApplied = true;
|
|
||||||
}
|
|
||||||
int res = await _channel.invokeMethod('checkPermissionShizuku');
|
|
||||||
if (res == -2) {
|
|
||||||
await _waitWhile(() => _resPermShizuku == -2);
|
|
||||||
res = _resPermShizuku;
|
|
||||||
_resPermShizuku = -2;
|
|
||||||
}
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
|
|
||||||
static Future<bool> checkPermissionRoot() async {
|
|
||||||
return await _channel.invokeMethod('checkPermissionRoot');
|
|
||||||
}
|
|
||||||
|
|
||||||
static Future<bool> installWithShizuku({required String apkFileUri}) async {
|
|
||||||
return await _channel.invokeMethod(
|
|
||||||
'installWithShizuku', {'apkFileUri': apkFileUri});
|
|
||||||
}
|
|
||||||
|
|
||||||
static Future<bool> installWithRoot({required String apkFilePath}) async {
|
|
||||||
return await _channel.invokeMethod(
|
|
||||||
'installWithRoot', {'apkFilePath': apkFilePath});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -41,20 +41,26 @@ class UpdateNotification extends ObtainiumNotification {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class SilentUpdateNotification extends ObtainiumNotification {
|
class SilentUpdateNotification extends ObtainiumNotification {
|
||||||
SilentUpdateNotification(List<App> updates, {int? id})
|
SilentUpdateNotification(List<App> updates, bool succeeded, {int? id})
|
||||||
: super(
|
: super(
|
||||||
id ?? 3,
|
id ?? 3,
|
||||||
tr('appsUpdated'),
|
succeeded
|
||||||
|
? tr('appsUpdated')
|
||||||
|
: tr('appsNotUpdated'),
|
||||||
'',
|
'',
|
||||||
'APPS_UPDATED',
|
'APPS_UPDATED',
|
||||||
tr('appsUpdatedNotifChannel'),
|
tr('appsUpdatedNotifChannel'),
|
||||||
tr('appsUpdatedNotifDescription'),
|
tr('appsUpdatedNotifDescription'),
|
||||||
Importance.defaultImportance) {
|
Importance.defaultImportance) {
|
||||||
message = updates.length == 1
|
message = updates.length == 1
|
||||||
? tr('xWasUpdatedToY',
|
? tr(succeeded
|
||||||
args: [updates[0].finalName, updates[0].latestVersion])
|
? 'xWasUpdatedToY'
|
||||||
: plural('xAndNMoreUpdatesInstalled', updates.length - 1,
|
: 'xWasNotUpdatedToY',
|
||||||
args: [updates[0].finalName, (updates.length - 1).toString()]);
|
args: [updates[0].finalName, updates[0].latestVersion])
|
||||||
|
: plural(succeeded
|
||||||
|
? 'xAndNMoreUpdatesInstalled'
|
||||||
|
: "xAndNMoreUpdatesFailed",
|
||||||
|
updates.length - 1, args: [updates[0].finalName, (updates.length - 1).toString()]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -17,41 +17,14 @@ import 'package:shared_storage/shared_storage.dart' as saf;
|
|||||||
String obtainiumTempId = 'imranr98_obtainium_${GitHub().hosts[0]}';
|
String obtainiumTempId = 'imranr98_obtainium_${GitHub().hosts[0]}';
|
||||||
String obtainiumId = 'dev.imranr.obtainium';
|
String obtainiumId = 'dev.imranr.obtainium';
|
||||||
String obtainiumUrl = 'https://github.com/ImranR98/Obtainium';
|
String obtainiumUrl = 'https://github.com/ImranR98/Obtainium';
|
||||||
|
Color obtainiumThemeColor = const Color(0xFF6438B5);
|
||||||
|
|
||||||
enum InstallMethodSettings { normal, shizuku, root }
|
enum ThemeSettings { light, dark, system }
|
||||||
|
|
||||||
enum ThemeSettings { system, light, dark }
|
|
||||||
|
|
||||||
enum ColourSettings { basic, materialYou }
|
|
||||||
|
|
||||||
enum SortColumnSettings { added, nameAuthor, authorName, releaseDate }
|
enum SortColumnSettings { added, nameAuthor, authorName, releaseDate }
|
||||||
|
|
||||||
enum SortOrderSettings { ascending, descending }
|
enum SortOrderSettings { ascending, descending }
|
||||||
|
|
||||||
const maxAPIRateLimitMinutes = 30;
|
|
||||||
const minUpdateIntervalMinutes = maxAPIRateLimitMinutes + 30;
|
|
||||||
const maxUpdateIntervalMinutes = 43200;
|
|
||||||
List<int> updateIntervals = [
|
|
||||||
15,
|
|
||||||
30,
|
|
||||||
60,
|
|
||||||
120,
|
|
||||||
180,
|
|
||||||
360,
|
|
||||||
720,
|
|
||||||
1440,
|
|
||||||
4320,
|
|
||||||
10080,
|
|
||||||
20160,
|
|
||||||
43200,
|
|
||||||
0
|
|
||||||
]
|
|
||||||
.where((element) =>
|
|
||||||
(element >= minUpdateIntervalMinutes &&
|
|
||||||
element <= maxUpdateIntervalMinutes) ||
|
|
||||||
element == 0)
|
|
||||||
.toList();
|
|
||||||
|
|
||||||
class SettingsProvider with ChangeNotifier {
|
class SettingsProvider with ChangeNotifier {
|
||||||
SharedPreferences? prefs;
|
SharedPreferences? prefs;
|
||||||
String? defaultAppDir;
|
String? defaultAppDir;
|
||||||
@@ -75,19 +48,18 @@ class SettingsProvider with ChangeNotifier {
|
|||||||
notifyListeners();
|
notifyListeners();
|
||||||
}
|
}
|
||||||
|
|
||||||
InstallMethodSettings get installMethod {
|
bool get useShizuku{
|
||||||
return InstallMethodSettings.values[
|
return prefs?.getBool('useShizuku') ?? false;
|
||||||
prefs?.getInt('installMethod') ?? InstallMethodSettings.normal.index];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
set installMethod(InstallMethodSettings t) {
|
set useShizuku(bool useShizuku) {
|
||||||
prefs?.setInt('installMethod', t.index);
|
prefs?.setBool('useShizuku', useShizuku);
|
||||||
notifyListeners();
|
notifyListeners();
|
||||||
}
|
}
|
||||||
|
|
||||||
ThemeSettings get theme {
|
ThemeSettings get theme {
|
||||||
return ThemeSettings
|
return ThemeSettings
|
||||||
.values[prefs?.getInt('theme') ?? ThemeSettings.system.index];
|
.values[prefs?.getInt('theme') ?? ThemeSettings.light.index];
|
||||||
}
|
}
|
||||||
|
|
||||||
set theme(ThemeSettings t) {
|
set theme(ThemeSettings t) {
|
||||||
@@ -95,13 +67,23 @@ class SettingsProvider with ChangeNotifier {
|
|||||||
notifyListeners();
|
notifyListeners();
|
||||||
}
|
}
|
||||||
|
|
||||||
ColourSettings get colour {
|
Color get themeColor {
|
||||||
return ColourSettings
|
int? colorCode = prefs?.getInt('themeColor');
|
||||||
.values[prefs?.getInt('colour') ?? ColourSettings.basic.index];
|
return (colorCode != null) ?
|
||||||
|
Color(colorCode) : obtainiumThemeColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
set colour(ColourSettings t) {
|
set themeColor(Color themeColor) {
|
||||||
prefs?.setInt('colour', t.index);
|
prefs?.setInt('themeColor', themeColor.value);
|
||||||
|
notifyListeners();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool get useMaterialYou {
|
||||||
|
return prefs?.getBool('useMaterialYou') ?? false;
|
||||||
|
}
|
||||||
|
|
||||||
|
set useMaterialYou(bool useMaterialYou) {
|
||||||
|
prefs?.setBool('useMaterialYou', useMaterialYou);
|
||||||
notifyListeners();
|
notifyListeners();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -115,21 +97,20 @@ class SettingsProvider with ChangeNotifier {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int get updateInterval {
|
int get updateInterval {
|
||||||
var min = prefs?.getInt('updateInterval') ?? 360;
|
return prefs?.getInt('updateInterval') ?? 360;
|
||||||
if (!updateIntervals.contains(min)) {
|
|
||||||
var temp = updateIntervals[0];
|
|
||||||
for (var i in updateIntervals) {
|
|
||||||
if (min > i && i != 0) {
|
|
||||||
temp = i;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
min = temp;
|
|
||||||
}
|
|
||||||
return min;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
set updateInterval(int min) {
|
set updateInterval(int min) {
|
||||||
prefs?.setInt('updateInterval', (min < 15 && min != 0) ? 15 : min);
|
prefs?.setInt('updateInterval', min);
|
||||||
|
notifyListeners();
|
||||||
|
}
|
||||||
|
|
||||||
|
double get updateIntervalSliderVal {
|
||||||
|
return prefs?.getDouble('updateIntervalSliderVal') ?? 6.0;
|
||||||
|
}
|
||||||
|
|
||||||
|
set updateIntervalSliderVal(double val) {
|
||||||
|
prefs?.setDouble('updateIntervalSliderVal', val);
|
||||||
notifyListeners();
|
notifyListeners();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -521,6 +521,11 @@ abstract class AppSource {
|
|||||||
label: tr('autoApkFilterByArch'), defaultValue: true)
|
label: tr('autoApkFilterByArch'), defaultValue: true)
|
||||||
],
|
],
|
||||||
[GeneratedFormTextField('appName', label: tr('appName'), required: false)],
|
[GeneratedFormTextField('appName', label: tr('appName'), required: false)],
|
||||||
|
[
|
||||||
|
GeneratedFormSwitch('shizukuPretendToBeGooglePlay',
|
||||||
|
label: tr('shizukuPretendToBeGooglePlay'),
|
||||||
|
defaultValue: false)
|
||||||
|
],
|
||||||
[
|
[
|
||||||
GeneratedFormSwitch('exemptFromBackgroundUpdates',
|
GeneratedFormSwitch('exemptFromBackgroundUpdates',
|
||||||
label: tr('exemptFromBackgroundUpdates'))
|
label: tr('exemptFromBackgroundUpdates'))
|
||||||
|
|||||||
76
pubspec.lock
76
pubspec.lock
@@ -26,6 +26,15 @@ packages:
|
|||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.7.1"
|
version: "0.7.1"
|
||||||
|
android_system_font:
|
||||||
|
dependency: "direct main"
|
||||||
|
description:
|
||||||
|
path: "."
|
||||||
|
ref: master
|
||||||
|
resolved-ref: "355f897e92a58a803f91d9270d389d9ec40ba550"
|
||||||
|
url: "https://github.com/re7gog/android_system_font"
|
||||||
|
source: git
|
||||||
|
version: "1.0.0"
|
||||||
animations:
|
animations:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
@@ -174,10 +183,10 @@ packages:
|
|||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: cupertino_icons
|
name: cupertino_icons
|
||||||
sha256: d57953e10f9f8327ce64a508a355f0b1ec902193f66288e8cb5070e7c47eeb2d
|
sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.0.6"
|
version: "1.0.8"
|
||||||
dbus:
|
dbus:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -226,6 +235,14 @@ packages:
|
|||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.0.2"
|
version: "0.0.2"
|
||||||
|
equations:
|
||||||
|
dependency: "direct main"
|
||||||
|
description:
|
||||||
|
name: equations
|
||||||
|
sha256: ae30e977d601e19aa1fc3409736c5eac01559d1d653a4c30141fbc4e86aa605c
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "5.0.2"
|
||||||
fake_async:
|
fake_async:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -254,10 +271,10 @@ packages:
|
|||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: file_picker
|
name: file_picker
|
||||||
sha256: d1d0ac3966b36dc3e66eeefb40280c17feb87fa2099c6e22e6a1fc959327bd03
|
sha256: b6283d7387310ad83bc4f3bc245b75d223a032ae6eba275afcd585de2b9a1476
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "8.0.0+1"
|
version: "8.0.1"
|
||||||
fixnum:
|
fixnum:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -266,6 +283,22 @@ packages:
|
|||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.1.0"
|
version: "1.1.0"
|
||||||
|
flex_color_picker:
|
||||||
|
dependency: "direct main"
|
||||||
|
description:
|
||||||
|
name: flex_color_picker
|
||||||
|
sha256: "5c846437069fb7afdd7ade6bf37e628a71d2ab0787095ddcb1253bf9345d5f3a"
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "3.4.1"
|
||||||
|
flex_seed_scheme:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: flex_seed_scheme
|
||||||
|
sha256: "4cee2f1d07259f77e8b36f4ec5f35499d19e74e17c7dce5b819554914082bc01"
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "1.5.0"
|
||||||
flutter:
|
flutter:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description: flutter
|
description: flutter
|
||||||
@@ -336,10 +369,10 @@ packages:
|
|||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: flutter_markdown
|
name: flutter_markdown
|
||||||
sha256: "04c4722cc36ec5af38acc38ece70d22d3c2123c61305d555750a091517bbe504"
|
sha256: "9921f9deda326f8a885e202b1e35237eadfc1345239a0f6f0f1ff287e047547f"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.6.23"
|
version: "0.7.1"
|
||||||
flutter_plugin_android_lifecycle:
|
flutter_plugin_android_lifecycle:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -366,6 +399,14 @@ packages:
|
|||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "8.2.5"
|
version: "8.2.5"
|
||||||
|
fraction:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: fraction
|
||||||
|
sha256: "09e9504c9177bbd77df56e5d147abfbb3b43360e64bf61510059c14d6a82d524"
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "5.0.2"
|
||||||
gtk:
|
gtk:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -634,10 +675,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: petitparser
|
name: petitparser
|
||||||
sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27
|
sha256: cb3798bef7fc021ac45b308f4b51208a152792445cce0448c9a4ba5879dd8750
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "6.0.2"
|
version: "5.4.0"
|
||||||
platform:
|
platform:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -658,10 +699,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: pointycastle
|
name: pointycastle
|
||||||
sha256: "70fe966348fe08c34bf929582f1d8247d9d9408130723206472b4687227e4333"
|
sha256: "79fbafed02cfdbe85ef3fd06c7f4bc2cbcba0177e61b765264853d4253b21744"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.8.0"
|
version: "3.9.0"
|
||||||
provider:
|
provider:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
@@ -750,6 +791,15 @@ packages:
|
|||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.8.1"
|
version: "0.8.1"
|
||||||
|
shizuku_apk_installer:
|
||||||
|
dependency: "direct main"
|
||||||
|
description:
|
||||||
|
path: "."
|
||||||
|
ref: master
|
||||||
|
resolved-ref: "25acc02612c2e0fcae40d312e047ac48106f8f6b"
|
||||||
|
url: "https://github.com/re7gog/shizuku_apk_installer"
|
||||||
|
source: git
|
||||||
|
version: "0.0.1"
|
||||||
sky_engine:
|
sky_engine:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description: flutter
|
description: flutter
|
||||||
@@ -1007,10 +1057,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: xml
|
name: xml
|
||||||
sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226
|
sha256: "5bc72e1e45e941d825fd7468b9b4cc3b9327942649aeb6fc5cdbf135f0a86e84"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "6.5.0"
|
version: "6.3.0"
|
||||||
yaml:
|
yaml:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -1020,5 +1070,5 @@ packages:
|
|||||||
source: hosted
|
source: hosted
|
||||||
version: "3.1.2"
|
version: "3.1.2"
|
||||||
sdks:
|
sdks:
|
||||||
dart: ">=3.3.0 <4.0.0"
|
dart: ">=3.3.3 <4.0.0"
|
||||||
flutter: ">=3.19.0"
|
flutter: ">=3.19.0"
|
||||||
|
|||||||
14
pubspec.yaml
14
pubspec.yaml
@@ -17,7 +17,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
|||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
# In Windows, build-name is used as the major, minor, and patch parts
|
# In Windows, build-name is used as the major, minor, and patch parts
|
||||||
# of the product and file versions while build-number is used as the build suffix.
|
# of the product and file versions while build-number is used as the build suffix.
|
||||||
version: 1.1.4+2261
|
version: 1.1.5+2262
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=3.0.0 <4.0.0'
|
sdk: '>=3.0.0 <4.0.0'
|
||||||
@@ -60,7 +60,7 @@ dependencies:
|
|||||||
sqflite: ^2.2.0+3
|
sqflite: ^2.2.0+3
|
||||||
easy_localization: ^3.0.1
|
easy_localization: ^3.0.1
|
||||||
android_intent_plus: ^5.0.1
|
android_intent_plus: ^5.0.1
|
||||||
flutter_markdown: ^0.6.14
|
flutter_markdown: ^0.7.1
|
||||||
flutter_archive: ^6.0.0
|
flutter_archive: ^6.0.0
|
||||||
hsluv: ^1.1.3
|
hsluv: ^1.1.3
|
||||||
connectivity_plus: ^6.0.1
|
connectivity_plus: ^6.0.1
|
||||||
@@ -68,6 +68,16 @@ dependencies:
|
|||||||
crypto: ^3.0.3
|
crypto: ^3.0.3
|
||||||
app_links: ^4.0.0
|
app_links: ^4.0.0
|
||||||
background_fetch: ^1.2.1
|
background_fetch: ^1.2.1
|
||||||
|
equations: ^5.0.2
|
||||||
|
flex_color_picker: ^3.4.1
|
||||||
|
android_system_font:
|
||||||
|
git:
|
||||||
|
url: https://github.com/re7gog/android_system_font
|
||||||
|
ref: master
|
||||||
|
shizuku_apk_installer:
|
||||||
|
git:
|
||||||
|
url: https://github.com/re7gog/shizuku_apk_installer
|
||||||
|
ref: master
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_test:
|
flutter_test:
|
||||||
|
|||||||
Reference in New Issue
Block a user