From cb97aa2fe1848593bb61627cee425d301656f76b Mon Sep 17 00:00:00 2001 From: X1nto Date: Tue, 16 Feb 2021 18:41:06 +0400 Subject: [PATCH 001/143] reverted MIUI warning system --- app/src/main/java/com/vanced/manager/ui/MainActivity.kt | 4 ---- .../java/com/vanced/manager/ui/dialogs/DialogContainer.kt | 4 ++-- app/src/main/java/com/vanced/manager/utils/AppUtils.kt | 2 +- app/src/main/java/com/vanced/manager/utils/MiuiHelper.kt | 4 ++-- app/src/main/res/values/strings.xml | 2 +- 5 files changed, 6 insertions(+), 10 deletions(-) diff --git a/app/src/main/java/com/vanced/manager/ui/MainActivity.kt b/app/src/main/java/com/vanced/manager/ui/MainActivity.kt index 7565ccb1..4bc629a2 100644 --- a/app/src/main/java/com/vanced/manager/ui/MainActivity.kt +++ b/app/src/main/java/com/vanced/manager/ui/MainActivity.kt @@ -206,10 +206,6 @@ class MainActivity : AppCompatActivity() { subscribeToTopic("Music-Update") subscribeToTopic("MicroG-Update") } - } else { - if (isMiuiOptimizationsEnabled) { - DialogContainer.applyAccentMiuiDialog(this) - } } if (!prefs.getBoolean("statement", true)) { diff --git a/app/src/main/java/com/vanced/manager/ui/dialogs/DialogContainer.kt b/app/src/main/java/com/vanced/manager/ui/dialogs/DialogContainer.kt index 769dc2a7..c00aee91 100644 --- a/app/src/main/java/com/vanced/manager/ui/dialogs/DialogContainer.kt +++ b/app/src/main/java/com/vanced/manager/ui/dialogs/DialogContainer.kt @@ -6,7 +6,7 @@ import androidx.preference.PreferenceManager import com.google.android.material.dialog.MaterialAlertDialogBuilder import com.vanced.manager.R import com.vanced.manager.utils.applyAccent -import com.vanced.manager.utils.isMiuiOptimizationsEnabled +import com.vanced.manager.utils.isMiui import com.vanced.manager.utils.openUrl object DialogContainer { @@ -19,7 +19,7 @@ object DialogContainer { dialog.cancel() } setOnCancelListener { - if (isMiuiOptimizationsEnabled) { + if (isMiui) { applyAccentMiuiDialog(context) } } diff --git a/app/src/main/java/com/vanced/manager/utils/AppUtils.kt b/app/src/main/java/com/vanced/manager/utils/AppUtils.kt index b0922699..38c0ce77 100644 --- a/app/src/main/java/com/vanced/manager/utils/AppUtils.kt +++ b/app/src/main/java/com/vanced/manager/utils/AppUtils.kt @@ -128,7 +128,7 @@ object AppUtils: CoroutineScope by CoroutineScope(Dispatchers.IO) { status.contains("Files_Missing_VA") -> context.getString(R.string.files_missing_va) status.contains("Path_Missing") -> context.getString(R.string.path_missing) status.contains("INSTALL_FAILED_INTERNAL_ERROR: Permission Denied") -> { - if (isMiuiOptimizationsEnabled) + if (isMiui) context.getString(R.string.installation_miui) else context.getString(R.string.installation_blocked) diff --git a/app/src/main/java/com/vanced/manager/utils/MiuiHelper.kt b/app/src/main/java/com/vanced/manager/utils/MiuiHelper.kt index 8aa2b40b..2731f3ff 100644 --- a/app/src/main/java/com/vanced/manager/utils/MiuiHelper.kt +++ b/app/src/main/java/com/vanced/manager/utils/MiuiHelper.kt @@ -2,9 +2,9 @@ package com.vanced.manager.utils import com.topjohnwu.superuser.Shell -private const val MIUI_OPTIMIZATIONS_PROP = "persist.sys.miui_optimization" +private const val MIUI_PROP = "ro.miui.ui.version.name" -val isMiuiOptimizationsEnabled get() = getSystemProperty(MIUI_OPTIMIZATIONS_PROP) == "true" +val isMiui get() = !getSystemProperty(MIUI_PROP).isNullOrEmpty() fun getSystemProperty(propname: String): String? { return try { diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index bea06c1b..3cc6778e 100755 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -81,7 +81,7 @@ Guide Stop! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - MIUI Optimizations are enabled! + MIUI Detected! To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Error Redownload From 537e76499aa4e3a1b3a2c5be790089092e29dbc8 Mon Sep 17 00:00:00 2001 From: X1nto Date: Tue, 16 Feb 2021 19:30:24 +0400 Subject: [PATCH 002/143] added another way to check if miui optimizations are enabled --- .../java/com/vanced/manager/ui/MainActivity.kt | 4 ++++ .../vanced/manager/ui/dialogs/DialogContainer.kt | 4 ++-- .../java/com/vanced/manager/utils/AppUtils.kt | 2 +- .../java/com/vanced/manager/utils/MiuiHelper.kt | 15 ++++----------- app/src/main/res/values/strings.xml | 2 +- 5 files changed, 12 insertions(+), 15 deletions(-) diff --git a/app/src/main/java/com/vanced/manager/ui/MainActivity.kt b/app/src/main/java/com/vanced/manager/ui/MainActivity.kt index 4bc629a2..7565ccb1 100644 --- a/app/src/main/java/com/vanced/manager/ui/MainActivity.kt +++ b/app/src/main/java/com/vanced/manager/ui/MainActivity.kt @@ -206,6 +206,10 @@ class MainActivity : AppCompatActivity() { subscribeToTopic("Music-Update") subscribeToTopic("MicroG-Update") } + } else { + if (isMiuiOptimizationsEnabled) { + DialogContainer.applyAccentMiuiDialog(this) + } } if (!prefs.getBoolean("statement", true)) { diff --git a/app/src/main/java/com/vanced/manager/ui/dialogs/DialogContainer.kt b/app/src/main/java/com/vanced/manager/ui/dialogs/DialogContainer.kt index c00aee91..c1208ca0 100644 --- a/app/src/main/java/com/vanced/manager/ui/dialogs/DialogContainer.kt +++ b/app/src/main/java/com/vanced/manager/ui/dialogs/DialogContainer.kt @@ -6,7 +6,7 @@ import androidx.preference.PreferenceManager import com.google.android.material.dialog.MaterialAlertDialogBuilder import com.vanced.manager.R import com.vanced.manager.utils.applyAccent -import com.vanced.manager.utils.isMiui +import com.vanced.manager.utils.isMiuiOptimizationsEnabled import com.vanced.manager.utils.openUrl object DialogContainer { @@ -19,7 +19,7 @@ object DialogContainer { dialog.cancel() } setOnCancelListener { - if (isMiui) { + if (context.isMiuiOptimizationsEnabled) { applyAccentMiuiDialog(context) } } diff --git a/app/src/main/java/com/vanced/manager/utils/AppUtils.kt b/app/src/main/java/com/vanced/manager/utils/AppUtils.kt index 38c0ce77..8d2a8497 100644 --- a/app/src/main/java/com/vanced/manager/utils/AppUtils.kt +++ b/app/src/main/java/com/vanced/manager/utils/AppUtils.kt @@ -128,7 +128,7 @@ object AppUtils: CoroutineScope by CoroutineScope(Dispatchers.IO) { status.contains("Files_Missing_VA") -> context.getString(R.string.files_missing_va) status.contains("Path_Missing") -> context.getString(R.string.path_missing) status.contains("INSTALL_FAILED_INTERNAL_ERROR: Permission Denied") -> { - if (isMiui) + if (context.isMiuiOptimizationsEnabled) context.getString(R.string.installation_miui) else context.getString(R.string.installation_blocked) diff --git a/app/src/main/java/com/vanced/manager/utils/MiuiHelper.kt b/app/src/main/java/com/vanced/manager/utils/MiuiHelper.kt index 2731f3ff..bbf59ec9 100644 --- a/app/src/main/java/com/vanced/manager/utils/MiuiHelper.kt +++ b/app/src/main/java/com/vanced/manager/utils/MiuiHelper.kt @@ -1,15 +1,8 @@ package com.vanced.manager.utils -import com.topjohnwu.superuser.Shell +import android.content.Context +import android.provider.Settings -private const val MIUI_PROP = "ro.miui.ui.version.name" +private const val MIUI_OPTIMIZATION = "miui_optimization" -val isMiui get() = !getSystemProperty(MIUI_PROP).isNullOrEmpty() - -fun getSystemProperty(propname: String): String? { - return try { - Shell.sh("getprop $propname").exec().out.joinToString(" ") - } catch (e: Exception) { - null - } -} \ No newline at end of file +val Context.isMiuiOptimizationsEnabled: Boolean get() = Settings.Secure.getString(contentResolver, MIUI_OPTIMIZATION) == "1" \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 3cc6778e..bea06c1b 100755 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -81,7 +81,7 @@ Guide Stop! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - MIUI Detected! + MIUI Optimizations are enabled! To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Error Redownload From f99cb1136ac41d0ad78145b69186d2a392b8c0aa Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Tue, 16 Feb 2021 18:48:48 +0000 Subject: [PATCH 003/143] New translations strings.xml (Turkish) --- app/src/main/res/values-tr-rTR/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-tr-rTR/strings.xml b/app/src/main/res/values-tr-rTR/strings.xml index ea0e8016..66ce0110 100644 --- a/app/src/main/res/values-tr-rTR/strings.xml +++ b/app/src/main/res/values-tr-rTR/strings.xml @@ -73,8 +73,8 @@ Kılavuz Durdur! Geliştirilmesi durdurulan ve bu uygulama ile güncellenemeyen Vanced\'ın, Magisk/TWRP sürümünü kullanıyorsunuz. Lütfen Magisk/TWRP sürümünü cihazınızdan kaldırın. - MIUI tespit edildi! - Vanced\'i yüklemek için geliştirici ayarlarından MIUI Optimizasyonları, devre dışı bırakılmalıdır. (xiaomi.eu tabanlı 20.2.20 veya üzeri bir ROM kullanıyorsanız, bu uyarıyı göz ardı edebilirsiniz) + MIUI Optimizasyonu etkinleştirildi! + Vanced\'ı yükleyebilmek için, geliştirici ayarlarından/seçeneklerinden MIUI optimizasyonunu devre dışı bırakmalısın. (xiaomi.eu tabanlı 20.2.20 sürüm veya üzeri ROM kullanıyorsan, bu uyarıyı göz ardı edebilirsin) Hata Tekrar İndir Uygulamayı vancedapp.com, Vanced Discord sunucusu, veya Vanced GitHub\'dan indirdiğinizden emin olun From d0c9329a6a5bc662a1b41a02c5a21635404ebd38 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Tue, 16 Feb 2021 18:48:49 +0000 Subject: [PATCH 004/143] New translations strings.xml (Vietnamese) --- app/src/main/res/values-vi-rVN/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-vi-rVN/strings.xml b/app/src/main/res/values-vi-rVN/strings.xml index 8de8c287..43b2fe40 100644 --- a/app/src/main/res/values-vi-rVN/strings.xml +++ b/app/src/main/res/values-vi-rVN/strings.xml @@ -73,8 +73,8 @@ Hướng dẫn Khoan đã! Bạn đang sử dụng phiên bản Magisk/TWRP của Vanced, hiện đã bị ngừng phát triển và không thể được cập nhập bằng ứng dụng này. Hãy gỡ mô-đun Magisk/flash trình gỡ cài đặt TWRP. - Phát hiện MIUI! - Để cài đặt Vanced, bạn BẮT BUỘC PHẢI vô hiệu hóa Tối ưu hóa MIUI trong cài đặt nhà phát triển. (Bỏ qua cảnh báo này nếu bạn đang sử dụng ROM dựa trên xiaomi.eu phiên bản 20.2.20 hoặc mới hơn) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Lỗi Tải lại Chắc chắn rằng bạn đã tải ứng dụng này từ vancedapp.com, server Discord của Vanced hoặc GitHub của Vanced From abfabe10f27d5d1f6882824a9c49254e6dc76175 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Tue, 16 Feb 2021 18:48:50 +0000 Subject: [PATCH 005/143] New translations strings.xml (Kurdish) --- app/src/main/res/values-ku-rTR/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-ku-rTR/strings.xml b/app/src/main/res/values-ku-rTR/strings.xml index d3e16471..b7dfb4b0 100644 --- a/app/src/main/res/values-ku-rTR/strings.xml +++ b/app/src/main/res/values-ku-rTR/strings.xml @@ -73,8 +73,8 @@ Rêzan Rawestîne! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - MIUI destnîşan bû! - To install Vanced, you MUST disable MIUI Optimisations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Çewtî Ji nû ve daxîne Make sure that you downloaded the app from vancedapp.com, the Vanced Discord server, or the Vanced GitHub From 9dfa8b774aef94c2b8c5f29c77959a503291ca8a Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Tue, 16 Feb 2021 18:48:52 +0000 Subject: [PATCH 006/143] New translations strings.xml (Dutch) --- app/src/main/res/values-nl-rNL/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-nl-rNL/strings.xml b/app/src/main/res/values-nl-rNL/strings.xml index 2d465056..9ece44ab 100644 --- a/app/src/main/res/values-nl-rNL/strings.xml +++ b/app/src/main/res/values-nl-rNL/strings.xml @@ -73,8 +73,8 @@ Handleiding Stoppen! Je gebruikt de Magisk/TWRP-versie van Vanced, die stopgezet is en niet kan bijgewerkt worden met deze app. Verwijder deze eerst door het verwijderen van de Magisk-module / door de TWRP Vanced uninstaller te gebruiken. - MIUI gedetecteerd! - Om Vanced te installeren MOET je MIUI-optimalisaties uitschakelen in de ontwikkelaarsinstellingen (je kunt deze waarschuwing negeren als je de op xiaomi.eu gebaseerde ROM 20.2.20 of later gebruikt) + MIUI optimalisaties zijn ingeschakeld! + Om Vanced te installeren MOET je MIUI optimalisaties uitschakelen in de ontwikkelaarsinstellingen (je kan deze waarschuwing negeren als je de op xiaomi.eu gebaseerde ROM 20.2.20 of later gebruikt) Fout Opnieuw downloaden Zorg ervoor dat je de app hebt gedownload van vancedapp.com, de Vanced Discord-server of Vanced GitHub From b4690d97b283efde423eec1a76f42ba58577cf9b Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Tue, 16 Feb 2021 18:48:53 +0000 Subject: [PATCH 007/143] New translations strings.xml (Norwegian) --- app/src/main/res/values-no-rNO/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-no-rNO/strings.xml b/app/src/main/res/values-no-rNO/strings.xml index a2984a91..b257d49b 100644 --- a/app/src/main/res/values-no-rNO/strings.xml +++ b/app/src/main/res/values-no-rNO/strings.xml @@ -73,8 +73,8 @@ Guide Stopp! Du bruker Magisk/TWRP-versjonen av Vansert, som seponeres og som ikke kan oppdateres ved hjelp av denne appen. Vennligst fjern den ved å fjerne Magisk modul/bruke TWRP Vanced uninstaller. - MIUI oppdaget! - For å installere Vananced, MÅ du deaktivere MIUI Optimaliseringer i utviklerinnstillingene. (Du kan ignorere denne advarselen hvis du bruker 20.2.20 eller senere xiaomi.eu basert ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Feil Last ned på nytt Sørg for at du lastet ned appen fra vancedapp.com, Vanced Discord server, eller Vanced GitHub From 9a0313d450a5f83d6153c568fe6de8d0a6790dc4 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Tue, 16 Feb 2021 18:48:54 +0000 Subject: [PATCH 008/143] New translations strings.xml (Punjabi) --- app/src/main/res/values-pa-rIN/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-pa-rIN/strings.xml b/app/src/main/res/values-pa-rIN/strings.xml index 4369e668..dda01d73 100644 --- a/app/src/main/res/values-pa-rIN/strings.xml +++ b/app/src/main/res/values-pa-rIN/strings.xml @@ -73,8 +73,8 @@ ਗਾਇਡ ਉਡੀਕੋ! ਤੁਸੀਂ Vanced ਦੇ Magisk / TWRP ਸੰਸਕਰਣ ਦਾ ਉਪਯੋਗ ਕਰ ਰਹੇ ਹੋ, ਜਿਸਨੂੰ ਬੰਦ ਕਰ ਦਿੱਤਾ ਗਿਆ ਹੈ ਅੱਤੇ ਇਸ ਐਪ ਦਾ ਉਪਯੋਗ ਕਰਕੇ ਅੱਪਡੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ| ਕਿਰਪਾ ਇਸ Magisk ਮੋਡੂਅਲ ਨੂੰ / TWRP Vanced uninstaller ਦਾ ਉਪਯੋਗ ਕਰਕੇ ਹੱਟਾ ਦੇਵੋਂ. - ਪਤਾ ਲਗਾਇਆ MiUI ਉਪਯੋਗਕਰਤਾ! - Vanced ਇੰਸਟਾਲ ਕਰਨ ਲਈ, ਤੁਸੀੰ ਡਵੇਲਪਰ ਸੇਟਿੰਗ ਵਿੱਚ MIUI Optimization ਨੂੰ ਬੰਦ ਕਰੋ| (ਜੇਕਰ ਤੁਸੀਂ 20.2.20 ਜਾਂ ਬਾਅਦ ਵਿੱਚ xiaomi.eu ਆਧਾਰਿਤ ROM ਦਾ ਉਪਯੋਗ ਕਰ ਰਹੇ ਹੋ ਤਾਂ ਤੁਸੀਂ ਇਸ ਚੇਤਾਵਨੀ ਨੂੰ ਅਣਦੇਖਾ ਕਰ ਸਕਦੇ ਹੋ) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) ਗਲਤੀ ਮੁੜ ਡਾਉਨਲੋਡ ਪੱਕਾ ਕਰੋ ਕਿ ਤੁਸੀਂ vancedapp.com, Vanced Discord ਸਰਵਰ ਜਾਂ Vanced GitHub ਤੋਂ ਐਪ ਡਾਉਨਲੋਡ ਕੀਤਾ ਹੈ From c19ffdac1b92767622f7c4d5f7154313efc5f6b2 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Tue, 16 Feb 2021 18:48:56 +0000 Subject: [PATCH 009/143] New translations strings.xml (Polish) --- app/src/main/res/values-pl-rPL/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-pl-rPL/strings.xml b/app/src/main/res/values-pl-rPL/strings.xml index b3863b3c..12e84a3e 100644 --- a/app/src/main/res/values-pl-rPL/strings.xml +++ b/app/src/main/res/values-pl-rPL/strings.xml @@ -73,8 +73,8 @@ Przewodnik Stop! Używasz wersji Magisk/TWRP Vanced, która została przerwana i nie może zostać zaktualizowana za pomocą tej aplikacji. Proszę go usunąć usuwając moduł Magisk/używając TWRP Vanced deinstalatora. - MIUI wykryte! - Aby zainstalować Vanced, MUSISZ wyłączyć optymalizację MIUI w ustawieniach dewelopera. (Możesz zignorować to ostrzeżenie, jeśli używasz oprogramowania 20.2.20 lub później z bazą na xiaomi.eu) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Błąd Pobierz ponownie Upewnij się, że pobrałeś aplikację z vancedapp.com, serwera Vanced Discord lub Vanced GitHub From 52a8581f500056de4e45e5de0d2f24e11c1e0059 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Tue, 16 Feb 2021 18:48:57 +0000 Subject: [PATCH 010/143] New translations strings.xml (Portuguese) --- app/src/main/res/values-pt-rPT/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml index 99810069..c9193ada 100644 --- a/app/src/main/res/values-pt-rPT/strings.xml +++ b/app/src/main/res/values-pt-rPT/strings.xml @@ -73,8 +73,8 @@ Guia Parar! Você está usando a versão Magisk/TWRP do Vanced, que está descontinuada e não pode ser atualizada usando este aplicativo. Por favor, remova-o removendo o módulo Magisk/usando a desinstalação TWRP Vanced Uninstaler. - MIUI detetado! - Para instalar o Vanced, você DEVE desativar as Otimizações MIUI nas configurações do desenvolvedor. (Você pode ignorar este aviso se você estiver usando 20.2.20 ou ROM baseada em xiaomi.eu) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Erro Voltar a descarregar Certifique-se de que você baixou o aplicativo do vancedapp.com, o servidor Vanced Discord ou o Vanced GitHub From 84005a7f858b9b19bb45fad3b0013ca41bf26333 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Tue, 16 Feb 2021 18:48:58 +0000 Subject: [PATCH 011/143] New translations strings.xml (Russian) --- app/src/main/res/values-ru-rRU/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-ru-rRU/strings.xml b/app/src/main/res/values-ru-rRU/strings.xml index f10aca12..d53ddb58 100644 --- a/app/src/main/res/values-ru-rRU/strings.xml +++ b/app/src/main/res/values-ru-rRU/strings.xml @@ -73,8 +73,8 @@ Руководство Стойте! Похоже, вы используете Magisk/TWRP версию Vanced, которая больше не поддерживается и не может быть обновлена с помощью этого приложения. Пожалуйста, удалите модуль Vanced через Magisk или с помощью деинсталлятора Vanced для TWRP. - Обнаружен пользователь MIUI! - Чтобы установить Vanced, вы ДОЛЖНЫ отключить оптимизацию MIUI в настройках разработчика. (Вы можете проигнорировать это предупреждение, если вы используете прошивку на xiaomi.eu версии 20.2.20+) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Ошибка Скачать заново Пожалуйста, убедитесь, что вы скачали это приложение с vancedapp.com, сервера Vanced в Discord или с официального GitHub From 54103c28d1dbf627f50e34720b80a3311083e889 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Tue, 16 Feb 2021 18:48:59 +0000 Subject: [PATCH 012/143] New translations strings.xml (Serbian (Cyrillic)) --- app/src/main/res/values-sr-rSP/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-sr-rSP/strings.xml b/app/src/main/res/values-sr-rSP/strings.xml index cdf2dd6e..56b9d72d 100644 --- a/app/src/main/res/values-sr-rSP/strings.xml +++ b/app/src/main/res/values-sr-rSP/strings.xml @@ -73,8 +73,8 @@ Водич Заустави! Користите Magisk/TWRP верзију Vanced апликације, која више није подржана и чије коришћење није могуће. Молимо Вас да уклоните ову апликацију из Magisk/TWRP-а путем Vanced апликације за деинсталацију. - MIUI је детектован! - Да би апликација Vanced била исправно инсталирана морате да искључите оптимизацију за ову апликацију у MIUI подешавањима за програмере.( Ову напомену можете да занемарите у случају ако користите верзију 20.2.20 и новију xiaomi.eu ROM-а) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Грешка Поново преузми Преузмите апликацију само са официјелног Vanced сајта vancedapp.com, Vanced Discord сервера или Vanced GitHub-а From 8d2b55aad9f0af80c269af8e468f95468a609ca3 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Tue, 16 Feb 2021 18:49:01 +0000 Subject: [PATCH 013/143] New translations strings.xml (Swedish) --- app/src/main/res/values-sv-rSE/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-sv-rSE/strings.xml b/app/src/main/res/values-sv-rSE/strings.xml index 72d78667..5fd9c629 100644 --- a/app/src/main/res/values-sv-rSE/strings.xml +++ b/app/src/main/res/values-sv-rSE/strings.xml @@ -73,8 +73,8 @@ Guide Stopp! Ser ut som om du använder Magisk versionen av Vanced, som är avbruten och inte kan uppdateras med den här appen. Ta bort den först genom att ta bort magisk modulen. - MIUI upptäckt! - För att installera Vanced, måste du inaktivera MIUI Optimisations i utvecklarinställningarna. (Du kan ignorera denna varning om du använder 20.2.20 eller senare xiaomi.eu-baserad ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Fel Ladda ner igen Se till att du laddade ner appen från vancedapp.com, den Vanced Discord-servern eller den Vanced GitHub From 54b90237fd4d578bc63183abf3a5516aaaef374d Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Tue, 16 Feb 2021 18:49:02 +0000 Subject: [PATCH 014/143] New translations strings.xml (Chinese Traditional) --- app/src/main/res/values-zh-rTW/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index 7f702afa..31e90f70 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -73,8 +73,8 @@ 說明 警告! 您正使用 Magisk/TWRP 版本的 Vanced ,它已停止支援並無法透過此程式更新。請透過移除 Magisk 模組/使用 TWRP Vanced 解除安裝程式來移除它。 - 已偵測到 MIUI! - 為了能夠正確安裝 Vanced ,您必須在開發人員設定中停用 MIUI 優化。 (如果您使用基於 xiomi.eu 20.2.20 或更新的 ROM ,則可以忽略此警告) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) 錯誤 重新下載 請確保您從 vancedapp.com、Vanced Discord 伺服器或 Vanced GitHub 下載本程式 From 4cc4744a3c142dcbd5790bb73bf1d00df1493fc5 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:35 +0000 Subject: [PATCH 015/143] New translations strings.xml (Japanese) --- app/src/main/res/values-ja-rJP/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-ja-rJP/strings.xml b/app/src/main/res/values-ja-rJP/strings.xml index 1a1adf80..d1d3fd82 100644 --- a/app/src/main/res/values-ja-rJP/strings.xml +++ b/app/src/main/res/values-ja-rJP/strings.xml @@ -73,8 +73,8 @@ ガイド ストップ! Vanced の Magisk/TWRP バージョンを使用しているようです。このバージョンは廃止されており、このアプリでは更新できません。 まず Magisk モジュールを削除するか、TWRP で Vanced uninstaller を使用してください。 - MIUI を検知しました! - Vanced をインストールするには、開発者設定で MIUI の最適化を無効化しなければなりません。 (20.2.20 以降の xiaomi.eu ベースの ROM の場合はこの警告は無視してください) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) エラー 再ダウンロード Vancedapp.com、Vanced の Discord サーバーまたは GitHub からアプリをダウンロードしたことを確認してください From 73d7d9e679d633a86822d2afa7207132c7ea96fc Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:37 +0000 Subject: [PATCH 016/143] New translations strings.xml (Bengali) --- app/src/main/res/values-bn-rBD/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-bn-rBD/strings.xml b/app/src/main/res/values-bn-rBD/strings.xml index 443e9cfd..ca32085f 100644 --- a/app/src/main/res/values-bn-rBD/strings.xml +++ b/app/src/main/res/values-bn-rBD/strings.xml @@ -73,8 +73,8 @@ সহায়িকা থামো! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - মিইউআই শনাক্তকৃত! - To install Vanced, you MUST disable MIUI Optimisations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) ত্রুটি Redownload Make sure that you downloaded the app from vancedapp.com, the Vanced Discord server, or the Vanced GitHub From 6e7c64d7d4a09cda88fec7cfd5a2c4c1c38fee52 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:38 +0000 Subject: [PATCH 017/143] New translations strings.xml (German) --- app/src/main/res/values-de-rDE/strings.xml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/app/src/main/res/values-de-rDE/strings.xml b/app/src/main/res/values-de-rDE/strings.xml index 027d450f..4b2b9ea2 100644 --- a/app/src/main/res/values-de-rDE/strings.xml +++ b/app/src/main/res/values-de-rDE/strings.xml @@ -8,8 +8,8 @@ Wähle deine Apps Über - Erklärung - Logs + Anleitung + Protokolle Manager Einstellungen Update Manager @@ -60,8 +60,8 @@ Keine neuen Updates Variante - Logs erfolgreich gespeichert - Logs konnten nicht gespeichert werden + Protokolle erfolgreich gespeichert + Protokolle konnten nicht gespeichert werden Erweitert %1$s Installationsdateien erkannt! @@ -73,16 +73,16 @@ Erklärung Stopp! Du benutzt die Magisk/TWRP-Version von Vanced, die nicht mehr unterstützt wird und mit dieser App nicht aktualisiert werden kann. Bitte entferne siie indem du das Magisk-Modul mit dem TWRP Vanced Uninstaller entfernst. - MIUI erkannt! - Um Vanced zu installieren, musst du die MIUI Optimierungen in den Entwicklereinstellungen deaktivieren. (Du kannst diese Warnung ignorieren, wenn du 20.2.20 oder höher auf xiaomi.eu basierenden ROM verwendest) + MIUI Optimisationen sind aktiviert! + Um Vanced installieren zu können MUSST du MIUI Optimisation in den Entwickleroptionen deaktivieren. (Bitte ignoriere diese Warnung, wenn du xiaomi.eu Roms mit der Version 20.2.20 oder höher verwendest.) Fehler Erneut herunterladen Stelle sicher, dass du die App von vancedapp.com, dem Vanced Discord Server oder dem Vanced GitHub heruntergeladen hast %1$s Installationsoptionen Version Fehler in MicroG - Due to a bug in the original microG, installing Vanced v16+ first requires you to install v15.43.32, open it, then login and only then can you install v16 and higher. Do you want to proceed with the installation of v15.43.32? - Aufgrund eines Fehlers in der Original microG, erfordert die Installation von Music v4.11 oder höher, zunächst die Installation, Öffnung und Anmeldung der v4.07.51 und erst dann kann die v4.11 oder höher installiert werden. Möchten Sie mit der Installation von v4.07.51 fortfahren? + Aufgrund eines Fehlers beim installieren von Vanced v16+ in MicroG, ist es erforderlich zuerst die Version v15.43.32 zu installieren, öffnen und sich anzumelden. Möchten Sie mit der Installation von v15.43.32 fortfahren? + Aufgrund eines Fehlers beim installieren von Music v4.11+ in MicroG, ist es erforderlich zuerst die Version v4.07.51 zu installieren, öffnen und sich anzumelden. Möchten Sie mit der Installation von v4.07.51 fortfahren? Bitte schließen Sie die App NICHT während dieses Prozesses! Willkommen @@ -94,7 +94,7 @@ Dunkel Manager-Entwickler - Other Contributors + Weitere Mitwirkende Quellen Vanced Team From ee8d17a40b6a566f27c5635fa51d4fc76f980dac Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:39 +0000 Subject: [PATCH 018/143] New translations strings.xml (Finnish) --- app/src/main/res/values-fi-rFI/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-fi-rFI/strings.xml b/app/src/main/res/values-fi-rFI/strings.xml index b808eddd..c617938c 100644 --- a/app/src/main/res/values-fi-rFI/strings.xml +++ b/app/src/main/res/values-fi-rFI/strings.xml @@ -73,8 +73,8 @@ Opas Pysähdy! Käytät Magisk / TWRP versio Vanced, joka on lopetettu ja ei voi päivittää käyttämällä tätä sovellusta. Poista se poistamalla Magisk moduuli / käyttämällä TWRP Vanced asennuksen. - MIUI tunnistettu! - Jos haluat asentaa Vanced, sinun täytyy poistaa MIUI-optimoinnit käytöstä kehittäjän asetuksista. (Voit ohittaa tämän varoituksen, jos käytät 20.2.20 tai myöhemmin xiaomi.eu-pohjaista ROM:ia) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Virhe Uudelleenlataa Varmista, että latasit sovelluksen osoitteesta vancedapp.com, Vanced Discord-palvelin tai Vanced GitHub From 3a5db1f7ef0bbf64da80ede409a1d6fd2e11001c Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:43 +0000 Subject: [PATCH 019/143] New translations strings.xml (Hebrew) --- app/src/main/res/values-iw-rIL/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-iw-rIL/strings.xml b/app/src/main/res/values-iw-rIL/strings.xml index 3cb8ce80..6bf16b95 100644 --- a/app/src/main/res/values-iw-rIL/strings.xml +++ b/app/src/main/res/values-iw-rIL/strings.xml @@ -73,8 +73,8 @@ מדריך עצור! נדמה שאתה משתמש בגרסת ה־Magisk/TWRP של Vanced, שהתמיכה בה הופסקה והיא לא יכולה להתעדכן להתעדכן בעזרת האפליקציה הזו. אנא מחק אותה על ידי מחיקת ה־Module ב־Magisk או בשימוש במסיר ההתקנה של TWRP Vanced. - MIUI זוהה! - על מנת להתקין את Vanced, עליך להשבית אופטימיזציות של MIUI בהגדרות מפתח. (אתה יכול להתעלם מאזהרה זו אם אתה משתמש בגרסה 20.2.2. של שיאומי או יותר) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) שגיאה הורד מחדש ודא שהורדת את האפליקציה מהאתר vancedapp.com, שרת הדיסקורד של Vanced או מהעמוד של Vanced ב־GitHub From 7656af8d459c222728c6c591f2470f43d196eb81 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:44 +0000 Subject: [PATCH 020/143] New translations strings.xml (Italian) --- app/src/main/res/values-it-rIT/strings.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/main/res/values-it-rIT/strings.xml b/app/src/main/res/values-it-rIT/strings.xml index 5e5be004..d196b54c 100644 --- a/app/src/main/res/values-it-rIT/strings.xml +++ b/app/src/main/res/values-it-rIT/strings.xml @@ -73,16 +73,16 @@ Guida Aspetta! Stai utilizzando la versione Magisk/TWRP di Vanced, ormai obsoleta e non più aggiornabile tramite questa app. Per favore, rimuovila eliminando il modulo Magisk oppure utilizzando TWRP Vanced uninstaller. - Rilevata l\'interfaccia MIUI! - Per poter installare Vanced, DEVI disattivare le ottimizzazioni MIUI nelle Opzioni Sviluppatore (puoi ignorare questo avviso se stai utilizzando la versione 20.2.20 o successive di una ROM basata su xiaomi.eu) + Le ottimizzazioni MIUI sono abilitate! + Per installare Vanced, DEVI disabilitare le ottimizzazioni MIUI nelle opzioni sviluppatore. (Puoi ignorare questo avviso se stai usando la ROM 20.2.20 o successiva basata su xiaomi.eu) Errore Scarica nuovamente Assicurati di aver scaricato l\'app da vancedapp.com, dal server Discord di Vanced o dalla pagina GitHub di Vanced Preferenze Installazione di %1$s Versione Bug in microG - Due to a bug in the original microG, installing Vanced v16+ first requires you to install v15.43.32, open it, then login and only then can you install v16 and higher. Do you want to proceed with the installation of v15.43.32? - Due to a bug in the original microG, installing Music v4.11+ first requires you to install v4.07.51, open it, then login and only then can you install v4.11 and higher. Do you want to proceed with the installation of v4.07.51? + A causa di un bug nel microG originale, l\'installazione di Vanced v16+ richiede prima l\'installazione della v15.43.32, avviarla, quindi effettuare il login e solo allora è possibile installare la v16 e versioni successive. Vuoi procedere con l\'installazione della v15.43.32? + A causa di un bug nel microG originale, l\'installazione di Music v4.11+ richiede prima l\'installazione della v4.07.51, avviarla, quindi effettuare il login e solo allora è possibile installare la v4.11 e successive. Vuoi procedere con l\'installazione della v4.07.51? Si prega di NON uscire dall\'app durante questo processo! Benvenuto From fd9a4990e165bb3b94170c1f3a21d9737e6d6d6f Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:45 +0000 Subject: [PATCH 021/143] New translations strings.xml (Georgian) --- app/src/main/res/values-ka-rGE/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-ka-rGE/strings.xml b/app/src/main/res/values-ka-rGE/strings.xml index 9ac5b98b..edd87692 100644 --- a/app/src/main/res/values-ka-rGE/strings.xml +++ b/app/src/main/res/values-ka-rGE/strings.xml @@ -73,8 +73,8 @@ ინსტრუქცია შეჩერდი! თქვენ იყენებთ Vanced-ის Magisk/TWRP ვერსიას, მაგრამ მისი მენეჯერიდან განახლება შეუძლებელია. გთხოვთ წაშალოთ იგი Magisk-იდან/TWRP-ს დეინსტალერიდან. - აღმოჩენილია MIUI-ის მომხმარებელი! - Vanced-ის დასაინსტალირებლად, საჭიროა გამორთოთ MIUI-ს ოპტიმიზაციები დეველოპერის პარამეტრებიდან. (შეგიძლიათ გამოტოვოთ ეს შენიშვნა თუ თქვენი სისტემა დაფუძნებულია xiaomi.eu-ს ვერსია 20.2.20-ზე ან უფრო ახალზე) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) შეცდომა თავიდან გადმოწერა დარწმუნდით, რომ აპი გადმოწერეთ vancedapp.com-იდან, Vanced Discord სერვერიდან ან GitHub-იდან From b0d194724cf03385e250af1063adfd2f4236890f Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:46 +0000 Subject: [PATCH 022/143] New translations strings.xml (Polish) --- app/src/main/res/values-pl-rPL/strings.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/src/main/res/values-pl-rPL/strings.xml b/app/src/main/res/values-pl-rPL/strings.xml index 12e84a3e..de0b0105 100644 --- a/app/src/main/res/values-pl-rPL/strings.xml +++ b/app/src/main/res/values-pl-rPL/strings.xml @@ -73,16 +73,16 @@ Przewodnik Stop! Używasz wersji Magisk/TWRP Vanced, która została przerwana i nie może zostać zaktualizowana za pomocą tej aplikacji. Proszę go usunąć usuwając moduł Magisk/używając TWRP Vanced deinstalatora. - MIUI Optimizations are enabled! - To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + Optymalizacja MIUI jest włączona! + Aby zainstalować Vanced, MUSISZ wyłączyć optymalizację MIUI w ustawieniach dewelopera. (Możesz zignorować to ostrzeżenie, jeśli korzystasz z ROM 20.2.20 lub późniejszego xiaomi.eu) Błąd Pobierz ponownie Upewnij się, że pobrałeś aplikację z vancedapp.com, serwera Vanced Discord lub Vanced GitHub Preferencje instalacji %1$s Wersja Błąd w microG - Due to a bug in the original microG, installing Vanced v16+ first requires you to install v15.43.32, open it, then login and only then can you install v16 and higher. Do you want to proceed with the installation of v15.43.32? - Due to a bug in the original microG, installing Music v4.11+ first requires you to install v4.07.51, open it, then login and only then can you install v4.11 and higher. Do you want to proceed with the installation of v4.07.51? + Ze względu na błąd w microG, instalacja Vanced 16+ wymaga najpierw instalacji v15.43.32, otwórz go, a następnie zaloguj się i tylko wtedy możesz zainstalować v16 i nowsze. Czy chcesz kontynuować instalację v15.43.32? + Ze względu na błąd w microG głównej, instalacja Muzyka v4.11+ wymaga najpierw instalacji v4.07.51, otwórz go, a następnie zaloguj się i tylko wtedy możesz zainstalować v4.11 i nowsze. Czy chcesz kontynuować instalację v4.07.51? NIE wychodź z aplikacji podczas trwania tego procesu! Witaj @@ -94,7 +94,7 @@ Ciemny Deweloperzy Menedżera - Other Contributors + Inni współtwórcy Źródła Zespół Vanced From dba3824cbc8c74d1781dc3dc631dc77784b91611 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:47 +0000 Subject: [PATCH 023/143] New translations strings.xml (Tamil) --- app/src/main/res/values-ta-rIN/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-ta-rIN/strings.xml b/app/src/main/res/values-ta-rIN/strings.xml index d8055b23..2613dd0b 100644 --- a/app/src/main/res/values-ta-rIN/strings.xml +++ b/app/src/main/res/values-ta-rIN/strings.xml @@ -73,8 +73,8 @@ வழிகாட்டி நிறுத்து! நீங்கள் வேன்ஸின் மேஜிஸ்க் / டி. டபிள்யூ. ஆர். பி பதிப்பைப் பயன்படுத்துகிறீர்கள், இது நிறுத்தப்பட்டது மற்றும் இந்த பயன்பாட்டைப் பயன்படுத்தி புதுப்பிக்க முடியாது. மேஜிஸ்க் தொகுதியை அகற்றி / TWRP Vanced uninstaller ஐப் பயன்படுத்தி அதை அகற்றவும். - MIUI கண்டறியப்பட்டது! - Vanced ஐ நிறுவ, டெவலப்பர் அமைப்புகளில் MIUI உகப்பாக்கங்களை முடக்க வேண்டும். (நீங்கள் 20.2.20 அல்லது அதற்குப் பிறகு xiaomi.eu அடிப்படையிலான ROM ஐப் பயன்படுத்துகிறீர்கள் என்றால் இந்த எச்சரிக்கையை நீங்கள் புறக்கணிக்கலாம்) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) பிழை மீண்டும் பதிவிறக்கு பயன்பாட்டை vancedapp.com, Vanced Discord சேவையகம் அல்லது Vanced GitHub இலிருந்து பதிவிறக்கம் செய்துள்ளீர்கள் என்பதை உறுதிப்படுத்திக் கொள்ளுங்கள் From fcae09c41a332866d9c852a43ec1c8e46ff9ed71 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:48 +0000 Subject: [PATCH 024/143] New translations strings.xml (Marathi) --- app/src/main/res/values-mr-rIN/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-mr-rIN/strings.xml b/app/src/main/res/values-mr-rIN/strings.xml index b4e8d72f..1c3c0db8 100644 --- a/app/src/main/res/values-mr-rIN/strings.xml +++ b/app/src/main/res/values-mr-rIN/strings.xml @@ -73,8 +73,8 @@ Guide Stop! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - MIUI detected! - To install Vanced, you MUST disable MIUI Optimisations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Error Redownload Make sure that you downloaded the app from vancedapp.com, the Vanced Discord server, or the Vanced GitHub From 8f97203cb4c867d4edc982f841d5f5b66a90060a Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:49 +0000 Subject: [PATCH 025/143] New translations strings.xml (Czech) --- app/src/main/res/values-cs-rCZ/strings.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/res/values-cs-rCZ/strings.xml b/app/src/main/res/values-cs-rCZ/strings.xml index 46e86d85..a662be1c 100644 --- a/app/src/main/res/values-cs-rCZ/strings.xml +++ b/app/src/main/res/values-cs-rCZ/strings.xml @@ -73,7 +73,7 @@ Průvodce Zadržte! Používáte verzi Vanced pro Magisk/TWRP, jejíž vývoj byl ukončen a kterou nelze pomocí této aplikace aktualizovat. Odstraňte ji prosím odebráním modulu Magisk použitím Vanced odinstalátoru v TWRP. - Bylo zjištěno MIUI! + Optimalizace MIUI jsou zapnuty! Chcete‑li nainstalovat Vanced, MUSÍTE vypnout optimalizace MIUI v nastavení pro vývojáře. (Toto varování můžete ignorovat, pokud používáte ROM ze 20. 2. 2020 nebo novější založenou na xiaomi.eu) Chyba Stáhnout znovu From 5f87eb936ab1f39c2a30b1371c3b6aefb88ca2b2 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:51 +0000 Subject: [PATCH 026/143] New translations strings.xml (Estonian) --- app/src/main/res/values-et-rEE/strings.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/main/res/values-et-rEE/strings.xml b/app/src/main/res/values-et-rEE/strings.xml index 5afd8649..483c5ef4 100644 --- a/app/src/main/res/values-et-rEE/strings.xml +++ b/app/src/main/res/values-et-rEE/strings.xml @@ -73,7 +73,7 @@ Juhend Peata! Te kasutate Vanced Magisk/TWRP versiooni, mis on katkestatud, ning seda ei saa uuendada kasutades seda äppi. Palun eemaldage Magisk moodul kasutades TWRP Vanced eemaldajat. - MIUI on tuvastatud! + MIUI optimiseerimine on lubatud! Et paigaldada Vanced, PEAB keelama MIUI optimiseerimise arendaja valikute alt. (Võite seda igroneerida kui kasutate 20.2.20 või uuemat xiaomi.eu põhist ROMi) Viga Lae uuesti alla @@ -81,8 +81,8 @@ %1$s Paigalduseelistused Versioon microG viga - Due to a bug in the original microG, installing Vanced v16+ first requires you to install v15.43.32, open it, then login and only then can you install v16 and higher. Do you want to proceed with the installation of v15.43.32? - Due to a bug in the original microG, installing Music v4.11+ first requires you to install v4.07.51, open it, then login and only then can you install v4.11 and higher. Do you want to proceed with the installation of v4.07.51? + Seoses originaal microG veaga, vajab Vanced v16+ paigaldus ennem v15.43.32 versiooni paigaldust, sisselogimist ja alles siis saab paigaldada v16 või uuema. Kas soovite jätkata v15.43.32 paigaldusega? + Seoses originaal microG veaga, vajab Music v4.11+ paigaldus ennem v4.07.51 versiooni paigaldust, sisselogimist ja alles siis saab paigaldada v4.11 või uuema. Kas soovite jätkata v4.07.51 paigaldusega? Palun ärge väljuge rakendusest protsessi ajal! Tere tulemast @@ -94,7 +94,7 @@ Tume Halduri arendajad - Other Contributors + Teised kaastöötajad Allikad Vanced Meeskond From 2136d21af92d4b7c761a236cce2221471deb765f Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:52 +0000 Subject: [PATCH 027/143] New translations strings.xml (Sinhala) --- app/src/main/res/values-si-rLK/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-si-rLK/strings.xml b/app/src/main/res/values-si-rLK/strings.xml index a941bf39..44558a78 100644 --- a/app/src/main/res/values-si-rLK/strings.xml +++ b/app/src/main/res/values-si-rLK/strings.xml @@ -73,8 +73,8 @@ මාර්ගෝපදේශය නවත්වන්න! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - MIUI detected! - To install Vanced, you MUST disable MIUI Optimisations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) දෝෂය Redownload Make sure that you downloaded the app from vancedapp.com, the Vanced Discord server, or the Vanced GitHub From bda401bd93d28e1b827209db9303bf0367527290 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:53 +0000 Subject: [PATCH 028/143] New translations strings.xml (Bengali, India) --- app/src/main/res/values-bn-rIN/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-bn-rIN/strings.xml b/app/src/main/res/values-bn-rIN/strings.xml index a440d318..dd7ea717 100644 --- a/app/src/main/res/values-bn-rIN/strings.xml +++ b/app/src/main/res/values-bn-rIN/strings.xml @@ -73,8 +73,8 @@ সহায়িকা থামুন! আপনি ভ্যান্সড ম্যাজিস্ক/TWRP সংস্করণ ব্যবহার করছেন যা বন্ধ হয়ে গেছে এবং আপনি এটিকে আপডেট করতে পারবেন না। দয়া করে ম্যাজিস্ক মডিউলটি সরিয়ে/TWRP ভ্যান্সড আনইনস্টলার ব্যবহার করে এটি মুছে ফেলুন। - মিআইইউআই শনাক্তকৃত! - ভ্যান্সড ইনস্টল করার জন্য, আপনাকে সেটিংসে ডেভেলপারের বিকল্পে গিয়ে MIUI অপটিমাইজেশন নিস্ক্রিয় করতে হবে। (আপনি যদি ২০.২.২০ বা তার পরে xiaomi.eu ভিত্তিক রম ব্যবহার করেন তবে আপনি এই সতর্কতাটিকে এড়িয়ে যেতে পারেন) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) ত্রুটি পুনরায় ডাউনলোড করুন নিশ্চিত করুন যে আপনি অ্যাপটি vancedapp.com, ভ্যান্সড ডিসকার্ড সার্ভার বা ভ্যান্সড গিটহাব থেকে ডাউনলোড করেছেন From b4b950e5e4a167d869a9d61ad4a85ffc731d5397 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:54 +0000 Subject: [PATCH 029/143] New translations strings.xml (Kurmanji (Kurdish)) --- app/src/main/res/values-kmr-rTR/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-kmr-rTR/strings.xml b/app/src/main/res/values-kmr-rTR/strings.xml index ec8a0200..6199011e 100644 --- a/app/src/main/res/values-kmr-rTR/strings.xml +++ b/app/src/main/res/values-kmr-rTR/strings.xml @@ -73,8 +73,8 @@ Guide Stop! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - MIUI detected! - To install Vanced, you MUST disable MIUI Optimisations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Error Redownload Make sure that you downloaded the app from vancedapp.com, the Vanced Discord server, or the Vanced GitHub From 073caa4469d76418ee2792ebe52ce0a254c19a56 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:56 +0000 Subject: [PATCH 030/143] New translations strings.xml (Pashto) --- app/src/main/res/values-ps-rAF/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-ps-rAF/strings.xml b/app/src/main/res/values-ps-rAF/strings.xml index ec8a0200..6199011e 100644 --- a/app/src/main/res/values-ps-rAF/strings.xml +++ b/app/src/main/res/values-ps-rAF/strings.xml @@ -73,8 +73,8 @@ Guide Stop! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - MIUI detected! - To install Vanced, you MUST disable MIUI Optimisations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Error Redownload Make sure that you downloaded the app from vancedapp.com, the Vanced Discord server, or the Vanced GitHub From 835e6c4611e84d513dbe4bcd1b50da711a0b5017 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:57 +0000 Subject: [PATCH 031/143] New translations strings.xml (Somali) --- app/src/main/res/values-so-rSO/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-so-rSO/strings.xml b/app/src/main/res/values-so-rSO/strings.xml index e3b8cade..c695641f 100644 --- a/app/src/main/res/values-so-rSO/strings.xml +++ b/app/src/main/res/values-so-rSO/strings.xml @@ -73,8 +73,8 @@ Hagitaan Jooji! Waxaad isticmaalaysaa version-ka Vanced ee loogu talagalay Magisk/TWRP, kaasoo aan hada la taageerin halkana lagama cusboonaysiin karo. Fadlan iska saar lifaaqa Magisk/adoo isticmaalaya kasaaraha Vanced ee TWRP-ga xagiisa. - Waxaad isticmaalaysaa MIUI! - Si aad ugu shubto Vanced, WAA INAAD ka xidhaa MIUI Optimizations xaga fadhiga Developer Settings-ka. (Waad iska indhatiri kartaa digniintan hadaad isticmaalayso version-ka 20.2.20 iyo wixii ka dambeeyay ee nidaamka barnaamijyada ROM-ka ee kusalaysan xiaomi.eu) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Khalad Dib udaji Iska hubi inaad app-ka kaso dajisatay vancedapp.com, xaga martigaliyaha Discord, ama meesha Vanced ee GitHub From 9c9c93c0ee44fc92cfa41f49e269adc72c2c50e1 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:58 +0000 Subject: [PATCH 032/143] New translations strings.xml (Punjabi, Pakistan) --- app/src/main/res/values-pa-rPK/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-pa-rPK/strings.xml b/app/src/main/res/values-pa-rPK/strings.xml index ec8a0200..6199011e 100644 --- a/app/src/main/res/values-pa-rPK/strings.xml +++ b/app/src/main/res/values-pa-rPK/strings.xml @@ -73,8 +73,8 @@ Guide Stop! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - MIUI detected! - To install Vanced, you MUST disable MIUI Optimisations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Error Redownload Make sure that you downloaded the app from vancedapp.com, the Vanced Discord server, or the Vanced GitHub From fb57354a3a9abcfe3f3841d90f7090fa9a4027e7 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:48:59 +0000 Subject: [PATCH 033/143] New translations strings.xml (Danish) --- app/src/main/res/values-da-rDK/strings.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/src/main/res/values-da-rDK/strings.xml b/app/src/main/res/values-da-rDK/strings.xml index 42d78185..1a07afdb 100644 --- a/app/src/main/res/values-da-rDK/strings.xml +++ b/app/src/main/res/values-da-rDK/strings.xml @@ -73,16 +73,16 @@ Vejledning Stop! Det ser ud som om du bruger Magisk/TWRP versionen af Vanced. Den er ikke længere understøttet og kan derfor ikke opdateres igennem denne app. Vær venlig at fjerne magisk modulet/brug TWRP Vanced uninstaller. - MIUI fundet! - For at installere Vanced er du NØDT til at slå MIUI optimering fra i udvikler indstillingerne. (Du kan ignorere denne advarsel hvis du bruger en 20.2.20 eller nyere xiaomi.eu baseret ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Fejl Hent igen Venligst sørg for kun at have downloaded appen fra vancedapp.com, Vanced Discord serveren eller Vanced GitHub siden %1$s Installationsindstillinger Version Fejl i microG - Due to a bug in the original microG, installing Vanced v16+ first requires you to install v15.43.32, open it, then login and only then can you install v16 and higher. Do you want to proceed with the installation of v15.43.32? - Due to a bug in the original microG, installing Music v4.11+ first requires you to install v4.07.51, open it, then login and only then can you install v4.11 and higher. Do you want to proceed with the installation of v4.07.51? + På grund af en fejl i microG, kræver installationen af Vanced 16+ først at du installerer v15.43.32, åbner, logger ind og først derefter kan du installere v16 og over. Vil du fortsætte med at installere v15.43.32? + På grund af en fejl i microG, kræver installationen af Music v4.11+ først at du installerer v4.07.51, åbner, logger ind og først derefter kan du installere v4.11 og over. Vil du at fortsætte med at installere v4.07.51? Afslut venligst IKKE appen under denne proces! Velkommen @@ -94,7 +94,7 @@ Mørk Manager udviklere - Other Contributors + Øvrige Bidragsydere Kilder Vanced holdet From 00d4c42a57cdb2a874bcd2e4eeed585e4bf3ae48 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:00 +0000 Subject: [PATCH 034/143] New translations strings.xml (Catalan) --- app/src/main/res/values-ca-rES/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-ca-rES/strings.xml b/app/src/main/res/values-ca-rES/strings.xml index e2d3cb8d..dfc757ca 100644 --- a/app/src/main/res/values-ca-rES/strings.xml +++ b/app/src/main/res/values-ca-rES/strings.xml @@ -73,8 +73,8 @@ Guia Atura! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - MIUI detectat! - To install Vanced, you MUST disable MIUI Optimisations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Error Redownload Make sure that you downloaded the app from vancedapp.com, the Vanced Discord server, or the Vanced GitHub From bd972706265306118450b7e65a6d6c7e8679f079 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:02 +0000 Subject: [PATCH 035/143] New translations strings.xml (Thai) --- app/src/main/res/values-th-rTH/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-th-rTH/strings.xml b/app/src/main/res/values-th-rTH/strings.xml index 51be585d..0c965705 100644 --- a/app/src/main/res/values-th-rTH/strings.xml +++ b/app/src/main/res/values-th-rTH/strings.xml @@ -73,8 +73,8 @@ คู่มือ หยุด! คุณกำลังใช้ Vanced เวอร์ชัน Magisk / TWRP ซึ่งถูกยกเลิกและไม่สามารถอัปเดตได้จากแอปนี้ กรุณาลบออกโดยการถอดโมดูล Magisk / ใช้โปรแกรมถอนการติดตั้ง TWRP Vanced - ตรวจพบ MIUI! - ในการติดตั้ง Vanced คุณต้องปิดใช้งาน MIUI Optimisations ในการตั้งค่าสำหรับนักพัฒนา (คุณสามารถเพิกเฉยต่อคำเตือนนี้ได้หากคุณใช้ ROM ที่ใช้ xiaomi.eu 20.2.20 ขึ้นไป) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) ผิดพลาด ดาวน์โหลดอีกครั้ง ตรวจสอบให้แน่ใจว่าคุณดาวน์โหลดแอพจากช่องทางที่ถูกต้อง vancedapp.com, เซิร์ฟเวอร์ Vanced Discord หรือ Vanced GitHub From 438ddffc85204bb3c147ec63a48f585de31f8d68 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:03 +0000 Subject: [PATCH 036/143] New translations strings.xml (Croatian) --- app/src/main/res/values-hr-rHR/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-hr-rHR/strings.xml b/app/src/main/res/values-hr-rHR/strings.xml index 86168167..371f1c29 100644 --- a/app/src/main/res/values-hr-rHR/strings.xml +++ b/app/src/main/res/values-hr-rHR/strings.xml @@ -73,8 +73,8 @@ Vodič Zaustavi! Koristite Magisk/TWRP inačicu Vanceda, koja više nije podržana i ne može se ažurirati ovom aplikacijom. Uklonite ju uklanjanjem Magisk modula/koristeći TWRP Vanced deinstalator. - MIUI je otkriven! - Kako bi instalirali Vanced, MORATE isključiti MIUI optimizaciju u razvijateljskim postavkama. (Možete zanemariti ovo upozorenje ako koristite 20.2.20 ili noviji xiaomi.eu temeljeni ROM) + MIUI optimizacija je omogućena! + Da biste instalirali Vanced, MORATE onemogućiti MIUI optimizaciju u opcijama za programere. (Ovo upozorenje možete zanemariti ako koristite 20.2.20 ili noviji xiaomi.eu ROM) Greška Ponovno preuzmi Aplikaciju obavezno preuzmite s vancedapp.com, Vanced Discord poslužitelja ili Vanced GitHuba From 37cedd74a96904037fac3c28dda164e0ba235510 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:04 +0000 Subject: [PATCH 037/143] New translations strings.xml (Malayalam) --- app/src/main/res/values-ml-rIN/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-ml-rIN/strings.xml b/app/src/main/res/values-ml-rIN/strings.xml index 64e562a4..bdda6304 100644 --- a/app/src/main/res/values-ml-rIN/strings.xml +++ b/app/src/main/res/values-ml-rIN/strings.xml @@ -73,8 +73,8 @@ മാർഗരേഖ നിർത്തുക! നിങ്ങൾ വാൻ‌സെഡിന്റെ മാജിസ്ക് / ടി‌ഡബ്ല്യുആർ‌പി പതിപ്പ് ഉപയോഗിക്കുന്നു, അത് നിർത്തലാക്കുകയും ഈ അപ്ലിക്കേഷൻ ഉപയോഗിച്ച് അപ്‌ഡേറ്റ് ചെയ്യാൻ കഴിയില്ല. മാജിസ്ക് മൊഡ്യൂൾ നീക്കംചെയ്ത് / ടി‌ഡബ്ല്യുആർ‌പി വാൻ‌സ്ഡ് അൺ‌ഇൻ‌സ്റ്റാളർ ഉപയോഗിച്ച് ഇത് നീക്കംചെയ്യുക. - MIUI കണ്ടെത്തി! - വാൻ‌സ്ഡ് ഇൻ‌സ്റ്റാൾ‌ ചെയ്യുന്നതിന്, ഡവലപ്പർ‌ ക്രമീകരണങ്ങളിൽ‌ നിങ്ങൾ‌ MIUI ഒപ്റ്റിമൈസേഷനുകൾ‌ അപ്രാപ്‌തമാക്കണം. (നിങ്ങൾ 20.2.20 അല്ലെങ്കിൽ അതിനുശേഷമുള്ള xiaomi.eu അടിസ്ഥാനമാക്കിയുള്ള റോം ഉപയോഗിക്കുകയാണെങ്കിൽ നിങ്ങൾക്ക് ഈ മുന്നറിയിപ്പ് അവഗണിക്കാം) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) തെറ്റ് വീണ്ടും ഡൗൺലോഡുചെയ്യുക നിങ്ങൾ vancedapp.com, Vanced Discord സെർവർ, അല്ലെങ്കിൽ Vanced GitHub എന്നിവയിൽ നിന്ന് അപ്ലിക്കേഷൻ download ൺലോഡ് ചെയ്തുവെന്ന് ഉറപ്പാക്കുക From 231916f0a7a2c6f48e16c0a7e743198edb8b2be3 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:05 +0000 Subject: [PATCH 038/143] New translations strings.xml (Spanish) --- app/src/main/res/values-es-rES/strings.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/main/res/values-es-rES/strings.xml b/app/src/main/res/values-es-rES/strings.xml index d9ff7c59..f191c351 100644 --- a/app/src/main/res/values-es-rES/strings.xml +++ b/app/src/main/res/values-es-rES/strings.xml @@ -73,16 +73,16 @@ Guía ¡Detente! Estás usando la versión Magisk/TWRP de Vanced, la cual está descontinuada y no puede ser actualizada usando esta aplicación. Por favor, remuevala eliminando el módulo Magisk o usando el desinstalador TWRP Vanced. - MIUI detectado! - Para instalar Vanced, DEBES desactivar las optimizaciones de MIUI en las opciones de desarrollador. (Puedes omitir este paso si estás utilizando un ROM basado en xiaomi.eu 20.2.20 o posterior) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Error Volver a descargar Asegúrate de haber descargado la app desde vancedapp.com, el grupo de Discord de Vanced, o el GitHub de Vanced %1$s Preferencias de instalación Versión Error en microG - Due to a bug in the original microG, installing Vanced v16+ first requires you to install v15.43.32, open it, then login and only then can you install v16 and higher. Do you want to proceed with the installation of v15.43.32? - Due to a bug in the original microG, installing Music v4.11+ first requires you to install v4.07.51, open it, then login and only then can you install v4.11 and higher. Do you want to proceed with the installation of v4.07.51? + Debido a un error en microG, para poder instalar Vanced v16+ hay que instalar primero la versión v15.43.32, abrirla, iniciar sesión y solo entonces podrás instalar la versión v16 y superior. ¿Quieres instalar la versión v15.43.32? + Debido a un error en microG, para poder instalar Vanced v16+ hay que instalar primero la versión v15.11, abrirla, iniciar sesión y solo entonces podrás instalar la versión v16 y superior. ¿Quieres instalar la versión v15.07.51? ¡Por favor, NO salga de la aplicación durante este proceso! Bienvenido From 2b46f8c3b8ed4dc464b33700d315719c5bfb1dd5 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:06 +0000 Subject: [PATCH 039/143] New translations strings.xml (Indonesian) --- app/src/main/res/values-in-rID/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-in-rID/strings.xml b/app/src/main/res/values-in-rID/strings.xml index 7b34f0ce..a04f50dd 100644 --- a/app/src/main/res/values-in-rID/strings.xml +++ b/app/src/main/res/values-in-rID/strings.xml @@ -73,8 +73,8 @@ Petunjuk Berhenti! Anda memakai Vanced versi Magisk/TWRP, yang pengembangannya dihentikan dan tidak bisa diperbarui menggunakan aplikasi ini. Mohon untuk menghapusnya dengan menghapus modul Magisk/gunakan pencopot Vanced TWRP. - MIUI terdeteksi! - Untuk memasang Vanced, anda HARUS menonaktifkan Optimisasi MIUI di pengaturan pengembang. (Anda bisa mengabaikan peringatan ini jika anda menggunakan ROM versi 20.2.20 atau lebih yang didasarkan xiaomi.eu) + Optimasi MIUI diaktifkan! + Install vanced, anda harus mematikan MIUI Optimasi di pengaturan pengembangan. (Kamu bisa Mengabaikan Peringatan ini jika kamu menggunakan 20.2.20 atau baru berbasis xiaomi.eu ROM) Terjadi kesalahan Unduh ulang Pastikan anda mengunduh aplikasi ini dari vancedapp.com, server Discord Vanced, atau Vanced Github From 38ad7636139193ec4f6f362d9a1951ccd13c8ba4 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:08 +0000 Subject: [PATCH 040/143] New translations strings.xml (Greek) --- app/src/main/res/values-el-rGR/strings.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/res/values-el-rGR/strings.xml b/app/src/main/res/values-el-rGR/strings.xml index 1031804b..11e736cc 100644 --- a/app/src/main/res/values-el-rGR/strings.xml +++ b/app/src/main/res/values-el-rGR/strings.xml @@ -73,7 +73,7 @@ Οδηγίες Σταματήστε! Χρησιμοποιείτε την έκδοση Magisk/TWRP του Vanced, η οποία δεν υποστηρίζεται πλέον και δεν μπορεί να ενημερωθεί μέσω αυτής της εφαρμογής. Παρακαλούμε αφαιρέστε αυτή την έκδοση αφαιρώντας το Magisk Module/χρησιμοποιόντας το πρόγραμμα κατάργησης TWRP Vanced. - Ανιχνεύτηκε MIUI! + MIUI Optimizations are enabled! Για να εγκαταστήσετε το Vanced, ΠΡΕΠΕΙ να απενεργοποιήσετε τις Βελτιστοποιήσεις MIUI στις ρυθμίσεις για προγραμματιστές. (Μπορείτε να αγνοήσετε αυτή την προειδοποίηση αν χρησιμοποιείτε την έκδοση ROM 20.2.20 ή μεταγενέστερη, βάσει του xiaomi.eu) Σφάλμα Επανάληψη λήψης From 043c890bf35719c5f0d5f10148e9377817edfaf3 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:09 +0000 Subject: [PATCH 041/143] New translations strings.xml (Hungarian) --- app/src/main/res/values-hu-rHU/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-hu-rHU/strings.xml b/app/src/main/res/values-hu-rHU/strings.xml index 912c28e7..18fb1cd7 100644 --- a/app/src/main/res/values-hu-rHU/strings.xml +++ b/app/src/main/res/values-hu-rHU/strings.xml @@ -74,8 +74,8 @@ Akarod telepíteni? Útmutató Állj! A Vanced Magisk/TWRP verzióját használod, ami már nem támogatott és nem frissíthető ezzel az alkalmazással. Távolítsd el a Magisk modul eltávolításával vagy TWRP Vanced eltávolítóval. - MIUI észlelve! - Hogy a Vanced-et telepítsd, ki KELL kapcsolnod a MIUI Optimalizációt a fejlesztői beállításokban. (Ezt figyelmen kívül hagyhatod ha 20.2.20 vagy későbbi xiaomi.eu alapú ROM-ot használsz) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Hiba Újra letölt Arra kérünk, győződj meg róla, hogy ezt az alkalmazást a vancedapp.com oldalról, a Vanced Discord szerveréről vagy a Vanced GitHub-ról töltötted le From 629e2e52008bfe592de37d03276c5950a61c218e Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:10 +0000 Subject: [PATCH 042/143] New translations strings.xml (Korean) --- app/src/main/res/values-ko-rKR/strings.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/res/values-ko-rKR/strings.xml b/app/src/main/res/values-ko-rKR/strings.xml index a6001206..4804fc76 100644 --- a/app/src/main/res/values-ko-rKR/strings.xml +++ b/app/src/main/res/values-ko-rKR/strings.xml @@ -73,7 +73,7 @@ 가이드 잠깐만요! 현재 설치되어 있는 Vanced의 Magisk/TWRP 버전은 더 이상 지원되지 않으며 이 앱으로 업데이트할 수 없습니다. 먼저 삭제 프로그램을 이용하여 Vanced의 TWRP/Magisk 모듈을 제거하여 주시기 바랍니다. - MIUI 사용자로 보입니다! + MIUI 최적화 기능이 켜져 있습니다! Vanced를 올바르게 설치하려면, 개발자 설정으로 들어가서 MIUI 최적화 기능을 반드시 끄셔야 합니다. (단, 버전이 20.2.20 이상인 xiaomi.eu 기반 ROM을 사용하는 경우 이 경고를 무시하셔도 좋습니다) 오류 다시 다운로드 From 581cb0c551e3d587d312852ab6aa5df78166e95d Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:11 +0000 Subject: [PATCH 043/143] New translations strings.xml (Ukrainian) --- app/src/main/res/values-uk-rUA/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-uk-rUA/strings.xml b/app/src/main/res/values-uk-rUA/strings.xml index b99f5417..bb5eaa19 100644 --- a/app/src/main/res/values-uk-rUA/strings.xml +++ b/app/src/main/res/values-uk-rUA/strings.xml @@ -73,8 +73,8 @@ Гайд Зупинись! Ви використовуєте Magisk/TWRP версію Vanced, яка припиняється і не може бути оновлена за допомогою цього застосунку. Будь ласка, видаліть його, видаливши модуль Magisk / з використання TWRP Vanced uninstaller. - Виявлено користувача MIUI! - Щоб встановити Vanced, ви ПОВИННІ вимкнути оптимізацію MIUI у налаштуваннях розробника. (Ви можете ігнорувати це попередження якщо ви використовуєте 20.2.20 або новіші xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Помилка Завантажити заново Переконайтеся, що ви завантажили додаток з vancedapp.com, Vanced Discord сервер або Vanced GitHub From 71daba634e4158bb1d8993b02b2ad724b7453c86 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:13 +0000 Subject: [PATCH 044/143] New translations strings.xml (Azerbaijani) --- app/src/main/res/values-az-rAZ/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-az-rAZ/strings.xml b/app/src/main/res/values-az-rAZ/strings.xml index 4801384d..b088ec80 100644 --- a/app/src/main/res/values-az-rAZ/strings.xml +++ b/app/src/main/res/values-az-rAZ/strings.xml @@ -73,8 +73,8 @@ Bələdçi Dayandır! Buraxılışı dayandırılan və bu tətbiq istifadə edərək yenilənə bilməyən Vanced-in Magisk/TWRP versiyasını istifadə edirsiniz. Zəhmət olmasa magisk modulunu/TWRP Vanced silici istifadə edərək silin. - MIUI aşkarlandı! - Vanced-i quraşdırmaq üçün tərtibatçı tənzimləmələrindən MIUI Optimallaşdırmasını sıradan çıxartmaq LAZIMDIR. (20.2.20 və ya yuxarı xiaomi.eu əsaslı ROM istifadə edirsinizsə bu xəbərdarlığı nəzərə almaya bilərsiniz) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Xəta Yenidən endir Tətbiqi vancedapp.com, Vanced Discord server və ya Vanced GitHub\'dan endirdiyinizə əmin olun From e6c7a23cfd86683b23771271eeb8dfd5a1197dff Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:14 +0000 Subject: [PATCH 045/143] New translations strings.xml (Arabic) --- app/src/main/res/values-ar-rSA/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-ar-rSA/strings.xml b/app/src/main/res/values-ar-rSA/strings.xml index 22b41a66..ad72b84a 100644 --- a/app/src/main/res/values-ar-rSA/strings.xml +++ b/app/src/main/res/values-ar-rSA/strings.xml @@ -73,8 +73,8 @@ الدليل إيقاف! يبدو أنك تستخدم إصدار ماجيسك/TWRP من ڤانسد، الذي قد تم إيقافه ولا يمكن تحديثه بإستخدام هذا التطبيق. الرجاء إزالته أولاً من قائمة إضافات ماجيسك أو بإستخدام أداة إلغاء تثبيت ڤانسد من TWRP. - تم اكتشاف MIUI! - من أجل تثبيت ڤانسد، عليك تعطيل تحسينات MIUI في إعدادات المطور. (يمكنك تجاهل هذه الرسالة إذا كنت تستخدم نسخة رقم 20.2.20 أو أجدد تستند إلى نسخة نظام شاومي أوروبا) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) خطأ إعادة التنزيل تأكد من أنك قمت بتنزيل التطبيق من موقع vancedapp.com، أو خادم الديسكورد لڤانسد أو Vanced GitHub From 44ee4a6112e469bfbbc6a2ac6e0a5132a66a0345 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:15 +0000 Subject: [PATCH 046/143] New translations strings.xml (Filipino) --- app/src/main/res/values-fil-rPH/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-fil-rPH/strings.xml b/app/src/main/res/values-fil-rPH/strings.xml index 2dfdf946..3db30403 100644 --- a/app/src/main/res/values-fil-rPH/strings.xml +++ b/app/src/main/res/values-fil-rPH/strings.xml @@ -73,8 +73,8 @@ Gabay Itigil! Gumagamit ka ng Magisk/TWRP na bersyon ng Vanced, dahil hindi iyon pinatuloy at hindi mai-uupdate gamit nitong app. Tanggalin po ang Magisk module sa pamamagitan ng TWRP Vanced uninstaller. - Meron itong MIUI! - Para ma-install ang Vanced, DAPAT mong patayin ang MIUI Optimisations sa developer settings. (Puwede mong pabayaan ang babala kung ikaw ay gumagamit ng 20.2.20 or mas bago na xiaomi.eu base na ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) May pagkamali I-download ulit Siguraduhin mo na nai-download mo ang app galing sa vancedapp.com, o sa Discord server ng Vanced, o sa Github ng Vanced From 0d7ca349c6f96d6429edfa6293d608598ea185d5 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:16 +0000 Subject: [PATCH 047/143] New translations strings.xml (Sorani (Kurdish)) --- app/src/main/res/values-ckb-rIR/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-ckb-rIR/strings.xml b/app/src/main/res/values-ckb-rIR/strings.xml index d6a97a57..26b72a98 100644 --- a/app/src/main/res/values-ckb-rIR/strings.xml +++ b/app/src/main/res/values-ckb-rIR/strings.xml @@ -73,8 +73,8 @@ زانیاری وەستاندن! تۆ وەشانی Magisk/TWRP ـی Vanced بەکاردێنیت، کە ناتوانرێت بە بەکارهێنانی ئەم بەرنامەیە نوێبکرێتەوە، تکایە لایبدە بە سڕینەوەی مۆدیولی ماگیسک/لەڕێی TWRP Vanced. - تۆ ڕووکاری MIUI بەکاردێنیت! - بۆ ئەوەی Vanced دابمەزرێنیت، پێویستە چاکسازییەکانی ڕووکاری MIUI لە ڕێکبەندەکانی پەرەپێدەر لە کار بخەیت، (دەتوانیت ئەم ئاگاداریە پشتگوێ بخەیت ئەگەر ڕومی تایبەتی وەشانی 20.2.20 یان دواتر xiaomi.eu بەکاردەهێنیت. بەکاردەهێنیت) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) هەڵەیەک ڕوویدا داگرتنەوە دڵنیابە کە بەرنامەکەت لە سایتی vancedapp.com، سێرڤەری دیسکۆرد یان Vanced GitHub داگرتووە From 479d3025e581d6a579ed01f93adb67b375ab52b1 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:18 +0000 Subject: [PATCH 048/143] New translations strings.xml (Hindi) --- app/src/main/res/values-hi-rIN/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-hi-rIN/strings.xml b/app/src/main/res/values-hi-rIN/strings.xml index 1de4b45f..4459618c 100644 --- a/app/src/main/res/values-hi-rIN/strings.xml +++ b/app/src/main/res/values-hi-rIN/strings.xml @@ -73,8 +73,8 @@ गाइड रुकें! आप Vanced के Magisk / TWRP संस्करण का उपयोग कर रहे हैं, जिसे बंद कर दिया गया है और इस ऐप का उपयोग करके अपडेट नहीं किया जा सकता है। कृपया इस Magisk मॉड्यूल को हटाकर / TWRP Vanced uninstaller का उपयोग करके हटा दें। - पता लगाया MiUI उपयोगकर्ता! - Vanced इनस्टॉल करने के लिए, आप डेवलपर सेटिंग में MIUI ऑप्टिमाइज़ेशन को निष्क्रिय करें। (यदि आप 20.2.20 या बाद में xiaomi.eu आधारित ROM का उपयोग कर रहे हैं तो आप इस चेतावनी को अनदेखा कर सकते हैं) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) त्रुटि फिर से डाउनलोड करें सुनिश्चित करें कि आपने vancedapp.com, Vanced Discord सर्वर, या Vanced GitHub से ऐप डाउनलोड किया है From 42f2908dc13b5b2449bee6597bcb337f8d9bf360 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:19 +0000 Subject: [PATCH 049/143] New translations strings.xml (Romanian) --- app/src/main/res/values-ro-rRO/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-ro-rRO/strings.xml b/app/src/main/res/values-ro-rRO/strings.xml index 14c5d875..b440af35 100644 --- a/app/src/main/res/values-ro-rRO/strings.xml +++ b/app/src/main/res/values-ro-rRO/strings.xml @@ -73,8 +73,8 @@ Ghid Oprește! Folosiți versiunea Magisk/TWRP a Vanced, care nu mai este în uz și nu poate fi actualizată folosind această aplicație. Vă rugăm să o eliminați prin eliminarea modulului Magisk/folosind dezinstalatorul Vanced TWRP. - MIUI detectat! - Pentru a instala Vanced, TREBUIE să dezactivați Optimizările MIUI în setările dezvoltatorului. (Puteți ignora această avertizare dacă utilizați un ROM cu baza pe xiaomi.eu 20.2.20 sau mai recent) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Eroare Redescărcare Asigurați-vă că ați descărcat aplicația de pe vancedapp.com, de pe serverul Discord Vanced sau de pe GitHub Vanced From 31b36dec76c04c471452d341bebb3e65f8d6c886 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:20 +0000 Subject: [PATCH 050/143] New translations strings.xml (Chinese Simplified) --- app/src/main/res/values-zh-rCN/strings.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index 36e2adba..dd555887 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -73,8 +73,8 @@ 说明 警告! 您正在使用 Magisk/TWRP 版的 Vanced,它已被停止支持且无法通过此应用更新。请通过移除 Magisk 模块 / 使用 TWRP Vanced 卸载器来移除它。 - 检测到 MIUI! - 为了能够正确安装 Vanced ,您必须在开发者设置中禁用 MIUI 优化。 (如果您正在使用基于 xiomi.eu 20.2.20或更新的 ROM,您可以忽略此警告) + MIUI 优化已启用! + 为了能够安装 Vanced,您必须在开发者设置中禁用 MIUI 优化。(如果您正在使用基于 xiaomi.eu 20.2.20 或更新的 ROM,您可以忽略此警告) 错误 重新下载 请确保您是从 vancedapp.com 、 Vanced Discord 服务器或 Vanced Github 下载本应用 @@ -94,7 +94,7 @@ 深色 Manager 开发人员 - Other Contributors + 其它贡献者: 源码 Vanced 团队 From c5991a8456a7e9e181df18dad0d7804bdb674d95 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:22 +0000 Subject: [PATCH 051/143] New translations strings.xml (French) --- app/src/main/res/values-fr-rFR/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-fr-rFR/strings.xml b/app/src/main/res/values-fr-rFR/strings.xml index cf5997d7..ca1338cf 100644 --- a/app/src/main/res/values-fr-rFR/strings.xml +++ b/app/src/main/res/values-fr-rFR/strings.xml @@ -73,8 +73,8 @@ Guide Stop! Vous utilisez la version Magisk/TWRP de Vanced, qui n\'est plus entretenu et ne peut pas être mise à jour à l\'aide de cette application. Veuillez la retirer en supprimant le module Magisk/en utilisant le désinstallateur TWRP pour Vanced. - MIUI détecté! - Afin d\'installer Vanced, vous DEVEZ désactiver les optimisations MIUI dans les paramètres développeur. (Vous pouvez ignorer cet avertissement si vous utilisez une ROM basée sur 20.2.20 ou ultérieure de xiaomi.eu) + MIUI Optimizations are enabled! + Afin d\'installer Vanced, vous DEVEZ désactiver les optimisations MIUI dans les paramètres développeur (vous pouvez ignorer cet avertissement si vous utilisez une ROM basée sur 20.2.20 ou ultérieure de xiaomi.eu). Erreur Re-télécharger Assurez-vous d\'avoir téléchargé l\'application depuis vancedapp.com, le serveur Discord Vanced ou sur le Github Vanced From ad907a65650ef2f165e4a53e707dea7fbedc2e0c Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:23 +0000 Subject: [PATCH 052/143] New translations strings.xml (Afrikaans) --- app/src/main/res/values-af-rZA/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/values-af-rZA/strings.xml b/app/src/main/res/values-af-rZA/strings.xml index d3cc93ec..40992940 100644 --- a/app/src/main/res/values-af-rZA/strings.xml +++ b/app/src/main/res/values-af-rZA/strings.xml @@ -73,8 +73,8 @@ Guide Stop! You are using the Magisk/TWRP version of Vanced, which is discontinued and cannot be updated using this app. Please remove it by removing the Magisk module/using TWRP Vanced uninstaller. - MIUI detected! - To install Vanced, you MUST disable MIUI Optimisations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimizations are enabled! + To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) Error Redownload Make sure that you downloaded the app from vancedapp.com, the Vanced Discord server, or the Vanced GitHub From a4e5c008ec0efe55fb2a3e9472787205e90b10be Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 06:49:24 +0000 Subject: [PATCH 053/143] New translations strings.xml (Bulgarian) --- app/src/main/res/values-bg-rBG/strings.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/res/values-bg-rBG/strings.xml b/app/src/main/res/values-bg-rBG/strings.xml index c1e52269..4abd26e0 100644 --- a/app/src/main/res/values-bg-rBG/strings.xml +++ b/app/src/main/res/values-bg-rBG/strings.xml @@ -73,7 +73,7 @@ Ръководство Стоп! Използвате Magisk/TWRP версията на Vanced, която е прекратена и не може да се актуализира с това приложение. Премахнете я като премахнете Magisk модула или чрез TWRP Vanced uninstaller. - Открит е MIUI! + MIUI оптимизациите са включени! За да инсталирате Vanced, ТРЯБВА да изключите MIUI оптимизациите в настройките за разработчици. (Това не е валидно ако ползвате 20.2.20 или по-нов ROM, базиран на xiaomi.eu) Грешка Изтегли отново From 8c4b8332e80a804d859b03c3c8d07a5e9f3fc040 Mon Sep 17 00:00:00 2001 From: X1nto Date: Wed, 17 Feb 2021 21:00:39 +0400 Subject: [PATCH 054/143] improved AppListAdapter --- .../vanced/manager/adapter/AppListAdapter.kt | 30 ++++++++--------- .../manager/ui/fragments/HomeFragment.kt | 33 ++++++++++--------- 2 files changed, 31 insertions(+), 32 deletions(-) diff --git a/app/src/main/java/com/vanced/manager/adapter/AppListAdapter.kt b/app/src/main/java/com/vanced/manager/adapter/AppListAdapter.kt index d6d24f3d..d4e42ef8 100644 --- a/app/src/main/java/com/vanced/manager/adapter/AppListAdapter.kt +++ b/app/src/main/java/com/vanced/manager/adapter/AppListAdapter.kt @@ -4,7 +4,6 @@ import android.view.LayoutInflater import android.view.ViewGroup import androidx.core.view.isVisible import androidx.fragment.app.FragmentActivity -import androidx.lifecycle.LifecycleOwner import androidx.preference.PreferenceManager.getDefaultSharedPreferences import androidx.recyclerview.widget.RecyclerView import com.github.florent37.viewtooltip.ViewTooltip @@ -17,16 +16,15 @@ import com.vanced.manager.ui.viewmodels.HomeViewModel import com.vanced.manager.utils.* class AppListAdapter( - private val context: FragmentActivity, + private val activity: FragmentActivity, private val viewModel: HomeViewModel, - private val lifecycleOwner: LifecycleOwner, - private val tooltip: ViewTooltip + private val tooltip: ViewTooltip? ) : RecyclerView.Adapter() { private val apps = mutableListOf() private val dataModels = mutableListOf() private val rootDataModels = mutableListOf() - private val prefs = getDefaultSharedPreferences(context) + private val prefs = getDefaultSharedPreferences(activity) private val isRoot = prefs.managerVariant == "root" @@ -36,11 +34,11 @@ class AppListAdapter( val dataModel = if (isRoot) rootDataModels[position] else dataModels[position] with(binding) { appName.text = dataModel?.appName - dataModel?.buttonTxt?.observe(lifecycleOwner) { + dataModel?.buttonTxt?.observe(activity) { appInstallButton.text = it } appInstallButton.setOnClickListener { - if (vanced.value != null) { + if (dataModel?.versionName?.value != activity.getString(R.string.unavailable)) { viewModel.openInstallDialog(it, apps[position]) } else { return@setOnClickListener @@ -52,14 +50,14 @@ class AppListAdapter( appLaunch.setOnClickListener { viewModel.launchApp(apps[position], isRoot) } - dataModel?.isAppInstalled?.observe(lifecycleOwner) { + dataModel?.isAppInstalled?.observe(activity) { appUninstall.isVisible = it appLaunch.isVisible = it } - dataModel?.versionName?.observe(lifecycleOwner) { + dataModel?.versionName?.observe(activity) { appRemoteVersion.text = it } - dataModel?.installedVersionName?.observe(lifecycleOwner) { + dataModel?.installedVersionName?.observe(activity) { appInstalledVersion.text = it } } @@ -67,7 +65,7 @@ class AppListAdapter( } override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ListViewHolder { - val view = ViewAppBinding.inflate(LayoutInflater.from(context), parent, false) + val view = ViewAppBinding.inflate(LayoutInflater.from(activity), parent, false) return ListViewHolder(view) } @@ -75,12 +73,12 @@ class AppListAdapter( holder.bind(position) val dataModel = if (isRoot) rootDataModels[position] else dataModels[position] holder.appCard.setOnClickListener { - tooltip.close() + tooltip?.close() AppInfoDialog.newInstance( appName = apps[position], appIcon = dataModel?.appIcon, changelog = dataModel?.changelog?.value - ).show(context.supportFragmentManager, "info") + ).show(activity.supportFragmentManager, "info") } } @@ -94,7 +92,7 @@ class AppListAdapter( } else { dataModels.add(viewModel.vancedModel.value) } - apps.add(context.getString(R.string.vanced)) + apps.add(activity.getString(R.string.vanced)) } if (prefs.enableMusic) { @@ -103,12 +101,12 @@ class AppListAdapter( } else { dataModels.add(viewModel.musicModel.value) } - apps.add(context.getString(R.string.music)) + apps.add(activity.getString(R.string.music)) } if (!isRoot) { dataModels.add(viewModel.microgModel.value) - apps.add(context.getString(R.string.microg)) + apps.add(activity.getString(R.string.microg)) } } diff --git a/app/src/main/java/com/vanced/manager/ui/fragments/HomeFragment.kt b/app/src/main/java/com/vanced/manager/ui/fragments/HomeFragment.kt index 88c9a546..fe80b603 100644 --- a/app/src/main/java/com/vanced/manager/ui/fragments/HomeFragment.kt +++ b/app/src/main/java/com/vanced/manager/ui/fragments/HomeFragment.kt @@ -30,7 +30,7 @@ import com.vanced.manager.ui.viewmodels.HomeViewModel import com.vanced.manager.ui.viewmodels.HomeViewModelFactory import com.vanced.manager.utils.isFetching -open class HomeFragment : BindingFragment() { +class HomeFragment : BindingFragment() { companion object { const val INSTALL_FAILED = "INSTALL_FAILED" @@ -43,7 +43,7 @@ open class HomeFragment : BindingFragment() { private val localBroadcastManager by lazy { LocalBroadcastManager.getInstance(requireActivity()) } private val prefs by lazy { PreferenceManager.getDefaultSharedPreferences(requireActivity()) } - private lateinit var tooltip: ViewTooltip + private var tooltip: ViewTooltip? = null override fun binding( inflater: LayoutInflater, @@ -61,25 +61,26 @@ open class HomeFragment : BindingFragment() { with (binding) { homeRefresh.setOnRefreshListener { viewModel.fetchData() } isFetching.observe(viewLifecycleOwner) { homeRefresh.isRefreshing = it } - tooltip = ViewTooltip - .on(recyclerAppList) - .position(ViewTooltip.Position.TOP) - .autoHide(false, 0) - .color(ResourcesCompat.getColor(requireActivity().resources, R.color.Twitter, null)) - .withShadow(false) - .corner(25) - .onHide { - prefs.edit { putBoolean("show_changelog_tooltip", false) } - } - .text(requireActivity().getString(R.string.app_changelog_tooltip)) if (prefs.getBoolean("show_changelog_tooltip", true)) { - tooltip.show() + tooltip = ViewTooltip + .on(recyclerAppList) + .position(ViewTooltip.Position.TOP) + .autoHide(false, 0) + .color(ResourcesCompat.getColor(requireActivity().resources, R.color.Twitter, null)) + .withShadow(false) + .corner(25) + .onHide { + prefs.edit { putBoolean("show_changelog_tooltip", false) } + } + .text(requireActivity().getString(R.string.app_changelog_tooltip)) + + tooltip?.show() } recyclerAppList.apply { layoutManager = LinearLayoutManager(requireActivity()) - adapter = AppListAdapter(requireActivity(), viewModel, viewLifecycleOwner, tooltip) + adapter = AppListAdapter(requireActivity(), viewModel, tooltip) setHasFixedSize(true) } @@ -109,7 +110,7 @@ open class HomeFragment : BindingFragment() { override fun onPause() { super.onPause() localBroadcastManager.unregisterReceiver(broadcastReceiver) - tooltip.close() + tooltip?.close() } override fun onResume() { From ccd3d6b71c21b5b8998be26be8cd4eda7bac28bf Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 18:52:53 +0000 Subject: [PATCH 055/143] New translations strings.xml (German) --- app/src/main/res/values-de-rDE/strings.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/main/res/values-de-rDE/strings.xml b/app/src/main/res/values-de-rDE/strings.xml index 4b2b9ea2..661c9080 100644 --- a/app/src/main/res/values-de-rDE/strings.xml +++ b/app/src/main/res/values-de-rDE/strings.xml @@ -73,16 +73,16 @@ Erklärung Stopp! Du benutzt die Magisk/TWRP-Version von Vanced, die nicht mehr unterstützt wird und mit dieser App nicht aktualisiert werden kann. Bitte entferne siie indem du das Magisk-Modul mit dem TWRP Vanced Uninstaller entfernst. - MIUI Optimisationen sind aktiviert! - Um Vanced installieren zu können MUSST du MIUI Optimisation in den Entwickleroptionen deaktivieren. (Bitte ignoriere diese Warnung, wenn du xiaomi.eu Roms mit der Version 20.2.20 oder höher verwendest.) + MIUI Optimierungen sind aktiviert! + Um Vanced installieren zu können, MÜSSEN Sie MIUI Optimierungen in den Entwickleroptionen deaktivieren. (Bitte ignorieren Sie diese Warnung, wenn Sie xiaomi.eu Roms mit der Version 20.2.20 oder höher verwenden.) Fehler Erneut herunterladen Stelle sicher, dass du die App von vancedapp.com, dem Vanced Discord Server oder dem Vanced GitHub heruntergeladen hast %1$s Installationsoptionen Version Fehler in MicroG - Aufgrund eines Fehlers beim installieren von Vanced v16+ in MicroG, ist es erforderlich zuerst die Version v15.43.32 zu installieren, öffnen und sich anzumelden. Möchten Sie mit der Installation von v15.43.32 fortfahren? - Aufgrund eines Fehlers beim installieren von Music v4.11+ in MicroG, ist es erforderlich zuerst die Version v4.07.51 zu installieren, öffnen und sich anzumelden. Möchten Sie mit der Installation von v4.07.51 fortfahren? + Aufgrund eines Fehlers in MicroG ist es erforderlich, zuerst die Version v15.43.32 zu installieren, öffnen und sich anzumelden, um Vanced v16 und höher zu verwenden. Möchten Sie mit der Installation von v15.43.32 fortfahren? + Aufgrund eines Fehlers in MicroG, ist es erforderlich zuerst die Version v4.07.51 zu installieren, öffnen und sich anzumelden, um Vanced Music v4.11+ zu verwenden. Möchten Sie mit der Installation von v4.07.51 fortfahren? Bitte schließen Sie die App NICHT während dieses Prozesses! Willkommen From 87eeeaf65fb9f01b7a1ce96b414050350ed415e4 Mon Sep 17 00:00:00 2001 From: KevinX8 Date: Wed, 17 Feb 2021 18:52:55 +0000 Subject: [PATCH 056/143] New translations strings.xml (Swedish) --- app/src/main/res/values-sv-rSE/strings.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/main/res/values-sv-rSE/strings.xml b/app/src/main/res/values-sv-rSE/strings.xml index 5fd9c629..d7e7b035 100644 --- a/app/src/main/res/values-sv-rSE/strings.xml +++ b/app/src/main/res/values-sv-rSE/strings.xml @@ -73,8 +73,8 @@ Guide Stopp! Ser ut som om du använder Magisk versionen av Vanced, som är avbruten och inte kan uppdateras med den här appen. Ta bort den först genom att ta bort magisk modulen. - MIUI Optimizations are enabled! - To install Vanced, you MUST disable MIUI Optimizations in the developer settings. (You can ignore this warning if you are using 20.2.20 or later xiaomi.eu based ROM) + MIUI Optimeringar är aktiverade! + För att installera Vanced, måste du inaktivera MIUI Optimisations i utvecklarinställningarna. (Du kan ignorera denna varning om du använder 20.2.20 eller senare xiaomi.eu-baserad ROM) Fel Ladda ner igen Se till att du laddade ner appen från vancedapp.com, den Vanced Discord-servern eller den Vanced GitHub @@ -94,7 +94,7 @@ Mörk Hanteraren Dev - Other Contributors + Andra bidragsgivare Källor Vanced Team From ae1d5691ac2943ce2459fd1960036cf6111e48b7 Mon Sep 17 00:00:00 2001 From: X1nto Date: Wed, 17 Feb 2021 23:00:35 +0400 Subject: [PATCH 057/143] implemented a better way to animate welcome activity --- .../vanced/manager/adapter/SponsorAdapter.kt | 2 - .../manager/adapter/WelcomePageAdapter.kt | 23 ++++++ .../com/vanced/manager/ui/WelcomeActivity.kt | 75 +++++++++++++++++-- .../ui/core/SlidingConstraintLayout.kt | 32 -------- .../manager/ui/core/SlidingLinearLayout.kt | 51 ------------- .../ui/core/SlidingSwipeRefreshLayout.kt | 32 -------- .../ui/fragments/SelectAppsFragment.kt | 4 +- .../manager/ui/fragments/WelcomeFragment.kt | 10 +-- .../res/animator/fragment_enter_right.xml | 11 --- .../main/res/animator/fragment_exit_right.xml | 11 --- app/src/main/res/animator/welcome_exit.xml | 19 ----- .../main/res/animator/welcome_pop_enter.xml | 19 ----- .../main/res/drawable/ic_info_black_24dp.xml | 10 --- app/src/main/res/layout/activity_welcome.xml | 18 +---- .../main/res/layout/fragment_grant_root.xml | 12 ++- .../main/res/layout/fragment_select_apps.xml | 4 +- app/src/main/res/layout/fragment_welcome.xml | 5 +- .../res/navigation/welcome_navigation.xml | 42 ----------- app/src/main/res/values/dimens.xml | 1 - app/src/main/res/values/styles.xml | 5 -- 20 files changed, 115 insertions(+), 271 deletions(-) create mode 100644 app/src/main/java/com/vanced/manager/adapter/WelcomePageAdapter.kt delete mode 100644 app/src/main/java/com/vanced/manager/ui/core/SlidingConstraintLayout.kt delete mode 100644 app/src/main/java/com/vanced/manager/ui/core/SlidingLinearLayout.kt delete mode 100644 app/src/main/java/com/vanced/manager/ui/core/SlidingSwipeRefreshLayout.kt delete mode 100644 app/src/main/res/animator/fragment_enter_right.xml delete mode 100644 app/src/main/res/animator/fragment_exit_right.xml delete mode 100644 app/src/main/res/animator/welcome_exit.xml delete mode 100644 app/src/main/res/animator/welcome_pop_enter.xml delete mode 100644 app/src/main/res/drawable/ic_info_black_24dp.xml delete mode 100644 app/src/main/res/navigation/welcome_navigation.xml diff --git a/app/src/main/java/com/vanced/manager/adapter/SponsorAdapter.kt b/app/src/main/java/com/vanced/manager/adapter/SponsorAdapter.kt index ba6413ce..acb87edf 100644 --- a/app/src/main/java/com/vanced/manager/adapter/SponsorAdapter.kt +++ b/app/src/main/java/com/vanced/manager/adapter/SponsorAdapter.kt @@ -11,8 +11,6 @@ import com.vanced.manager.model.SponsorModel import com.vanced.manager.ui.viewmodels.HomeViewModel import com.vanced.manager.utils.LIGHT import com.vanced.manager.utils.currentTheme -import com.vanced.manager.utils.defPrefs -import com.vanced.manager.utils.managerTheme class SponsorAdapter( private val context: Context, diff --git a/app/src/main/java/com/vanced/manager/adapter/WelcomePageAdapter.kt b/app/src/main/java/com/vanced/manager/adapter/WelcomePageAdapter.kt new file mode 100644 index 00000000..40c1cab1 --- /dev/null +++ b/app/src/main/java/com/vanced/manager/adapter/WelcomePageAdapter.kt @@ -0,0 +1,23 @@ +package com.vanced.manager.adapter + +import androidx.fragment.app.Fragment +import androidx.fragment.app.FragmentActivity +import androidx.viewpager2.adapter.FragmentStateAdapter +import com.vanced.manager.ui.fragments.GrantRootFragment +import com.vanced.manager.ui.fragments.SelectAppsFragment +import com.vanced.manager.ui.fragments.WelcomeFragment + +class WelcomePageAdapter(activity: FragmentActivity) : FragmentStateAdapter(activity) { + + override fun getItemCount(): Int = 3 + + override fun createFragment(position: Int): Fragment { + return when (position) { + 0 -> WelcomeFragment() + 1 -> SelectAppsFragment() + 2 -> GrantRootFragment() + else -> throw IllegalArgumentException("Unknown fragment") + } + } + +} \ No newline at end of file diff --git a/app/src/main/java/com/vanced/manager/ui/WelcomeActivity.kt b/app/src/main/java/com/vanced/manager/ui/WelcomeActivity.kt index f4a3c7dc..d823ba9e 100644 --- a/app/src/main/java/com/vanced/manager/ui/WelcomeActivity.kt +++ b/app/src/main/java/com/vanced/manager/ui/WelcomeActivity.kt @@ -1,21 +1,84 @@ package com.vanced.manager.ui +import android.animation.Animator +import android.animation.ValueAnimator import android.os.Bundle +import android.view.animation.AccelerateDecelerateInterpolator import androidx.appcompat.app.AppCompatActivity -import androidx.navigation.findNavController -import com.vanced.manager.R +import androidx.viewpager2.widget.ViewPager2 +import com.vanced.manager.adapter.WelcomePageAdapter +import com.vanced.manager.databinding.ActivityWelcomeBinding +import kotlin.math.abs class WelcomeActivity : AppCompatActivity() { - private val navHost by lazy { findNavController(R.id.welcome_navhost) } + private lateinit var viewPager2: ViewPager2 + private lateinit var binding: ActivityWelcomeBinding override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) - setContentView(R.layout.activity_welcome) + binding = ActivityWelcomeBinding.inflate(layoutInflater) + setContentView(binding.root) + + viewPager2 = binding.welcomeViewpager + viewPager2.apply { + adapter = WelcomePageAdapter(this@WelcomeActivity) + isUserInputEnabled = false + setPageTransformer { page, position -> + page.apply { + val pageWidth = width + //Thank you, fragula dev! + when { + position > 0 && position < 1 -> { + alpha = 1f + translationX = 0f + } + position > -1 && position <= 0 -> { + alpha = 1.0f - abs(position * 0.7f) + translationX = -pageWidth * position / 1.3F + } + } + } + } + } } override fun onBackPressed() { - if (!navHost.popBackStack()) - finish() + if (viewPager2.currentItem == 0) { + super.onBackPressed() + } else { + navigateTo(viewPager2.currentItem - 1) + } } + + fun navigateTo(position: Int) { + viewPager2.currentPosition = position + } + + //Shit way to implement animation duration, but at least it works + private var ViewPager2.currentPosition: Int + get() = currentItem + set(value) { + val pixelsToDrag: Int = width * (value - currentItem) + val animator = ValueAnimator.ofInt(0, pixelsToDrag) + var previousValue = 0 + animator.apply { + addUpdateListener { valueAnimator -> + val currentValue = valueAnimator.animatedValue as Int + val currentPxToDrag = (currentValue - previousValue).toFloat() + fakeDragBy(-currentPxToDrag) + previousValue = currentValue + } + addListener(object : Animator.AnimatorListener { + override fun onAnimationStart(animation: Animator?) { beginFakeDrag() } + override fun onAnimationEnd(animation: Animator?) { endFakeDrag() } + override fun onAnimationCancel(animation: Animator?) {} + override fun onAnimationRepeat(animation: Animator?) {} + }) + interpolator = AccelerateDecelerateInterpolator() + duration = 500 + start() + } + } + } \ No newline at end of file diff --git a/app/src/main/java/com/vanced/manager/ui/core/SlidingConstraintLayout.kt b/app/src/main/java/com/vanced/manager/ui/core/SlidingConstraintLayout.kt deleted file mode 100644 index 2010b8dd..00000000 --- a/app/src/main/java/com/vanced/manager/ui/core/SlidingConstraintLayout.kt +++ /dev/null @@ -1,32 +0,0 @@ -package com.vanced.manager.ui.core - -import android.content.Context -import android.util.AttributeSet -import androidx.constraintlayout.widget.ConstraintLayout - -open class SlidingConstraintLayout : ConstraintLayout { - - constructor(context: Context) : super(context) - constructor(context: Context, attrs: AttributeSet?) : super( - context, - attrs - ) - - var xFraction: Float - get() { - val width = width - return if (width != 0) - x / getWidth() - else - x - } - set(xFraction) { - val width = width - val newWidth = - if (width > 0) - xFraction * width - else - (1).toFloat() - x = newWidth - } -} diff --git a/app/src/main/java/com/vanced/manager/ui/core/SlidingLinearLayout.kt b/app/src/main/java/com/vanced/manager/ui/core/SlidingLinearLayout.kt deleted file mode 100644 index 208634cf..00000000 --- a/app/src/main/java/com/vanced/manager/ui/core/SlidingLinearLayout.kt +++ /dev/null @@ -1,51 +0,0 @@ -package com.vanced.manager.ui.core - -import android.content.Context -import android.util.AttributeSet -import android.widget.LinearLayout - -open class SlidingLinearLayout: LinearLayout { - - constructor(context: Context?) : super(context) - constructor(context: Context?, attrs: AttributeSet?) : super( - context, - attrs - ) - - var yFraction: Float - get() { - val height = height - return if (height != 0) - y / height - else - y - } - set(yFraction) { - val height = height - val newHeight = - if (height > 0) - yFraction * height - else - (1).toFloat() - y = newHeight - } - - var xFraction: Float - get() { - val width = width - return if (width != 0) - x / getWidth() - else - x - } - set(xFraction) { - val width = width - val newWidth = - if (width > 0) - xFraction * width - else - (1).toFloat() - x = newWidth - } - -} \ No newline at end of file diff --git a/app/src/main/java/com/vanced/manager/ui/core/SlidingSwipeRefreshLayout.kt b/app/src/main/java/com/vanced/manager/ui/core/SlidingSwipeRefreshLayout.kt deleted file mode 100644 index 144591fe..00000000 --- a/app/src/main/java/com/vanced/manager/ui/core/SlidingSwipeRefreshLayout.kt +++ /dev/null @@ -1,32 +0,0 @@ -package com.vanced.manager.ui.core - -import android.content.Context -import android.util.AttributeSet -import androidx.swiperefreshlayout.widget.SwipeRefreshLayout - -open class SlidingSwipeRefreshLayout : SwipeRefreshLayout { - - constructor(context: Context?) : super(context!!) - constructor(context: Context?, attrs: AttributeSet?) : super( - context!!, - attrs - ) - - var xFraction: Float - get() { - val width = width - return if (width != 0) - x / getWidth() - else - x - } - set(xFraction) { - val width = width - val newWidth = - if (width > 0) - xFraction * width - else - (1).toFloat() - x = newWidth - } -} \ No newline at end of file diff --git a/app/src/main/java/com/vanced/manager/ui/fragments/SelectAppsFragment.kt b/app/src/main/java/com/vanced/manager/ui/fragments/SelectAppsFragment.kt index 07fc19b7..799d804e 100644 --- a/app/src/main/java/com/vanced/manager/ui/fragments/SelectAppsFragment.kt +++ b/app/src/main/java/com/vanced/manager/ui/fragments/SelectAppsFragment.kt @@ -5,13 +5,13 @@ import android.view.LayoutInflater import android.view.ViewGroup import android.widget.Toast import androidx.core.content.edit -import androidx.navigation.fragment.findNavController import androidx.preference.PreferenceManager.getDefaultSharedPreferences import androidx.recyclerview.widget.LinearLayoutManager import com.vanced.manager.R import com.vanced.manager.adapter.SelectAppsAdapter import com.vanced.manager.core.ui.base.BindingFragment import com.vanced.manager.databinding.FragmentSelectAppsBinding +import com.vanced.manager.ui.WelcomeActivity class SelectAppsFragment : BindingFragment() { @@ -52,6 +52,6 @@ class SelectAppsFragment : BindingFragment() { selectAdapter.apps.forEach { app -> prefs.edit { putBoolean("enable_${app.tag}", app.isChecked) } } - findNavController().navigate(SelectAppsFragmentDirections.selectAppsToGrantRoot()) + (requireActivity() as WelcomeActivity).navigateTo(2) } } \ No newline at end of file diff --git a/app/src/main/java/com/vanced/manager/ui/fragments/WelcomeFragment.kt b/app/src/main/java/com/vanced/manager/ui/fragments/WelcomeFragment.kt index 3cffe219..3b6f309b 100644 --- a/app/src/main/java/com/vanced/manager/ui/fragments/WelcomeFragment.kt +++ b/app/src/main/java/com/vanced/manager/ui/fragments/WelcomeFragment.kt @@ -3,9 +3,9 @@ package com.vanced.manager.ui.fragments import android.os.Bundle import android.view.LayoutInflater import android.view.ViewGroup -import androidx.navigation.fragment.findNavController import com.vanced.manager.core.ui.base.BindingFragment import com.vanced.manager.databinding.FragmentWelcomeBinding +import com.vanced.manager.ui.WelcomeActivity class WelcomeFragment : BindingFragment() { @@ -20,10 +20,8 @@ class WelcomeFragment : BindingFragment() { } private fun bindData() { - binding.welcomeGetStarted.setOnClickListener { navigateToWelcome() } - } - - private fun navigateToWelcome() { - findNavController().navigate(WelcomeFragmentDirections.welcomeToSelectApps()) + binding.welcomeGetStarted.setOnClickListener { + (requireActivity() as WelcomeActivity).navigateTo(1) + } } } \ No newline at end of file diff --git a/app/src/main/res/animator/fragment_enter_right.xml b/app/src/main/res/animator/fragment_enter_right.xml deleted file mode 100644 index 85e54d48..00000000 --- a/app/src/main/res/animator/fragment_enter_right.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/app/src/main/res/animator/fragment_exit_right.xml b/app/src/main/res/animator/fragment_exit_right.xml deleted file mode 100644 index 7e5bc218..00000000 --- a/app/src/main/res/animator/fragment_exit_right.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/app/src/main/res/animator/welcome_exit.xml b/app/src/main/res/animator/welcome_exit.xml deleted file mode 100644 index f81d59cf..00000000 --- a/app/src/main/res/animator/welcome_exit.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/animator/welcome_pop_enter.xml b/app/src/main/res/animator/welcome_pop_enter.xml deleted file mode 100644 index 1facda88..00000000 --- a/app/src/main/res/animator/welcome_pop_enter.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_info_black_24dp.xml b/app/src/main/res/drawable/ic_info_black_24dp.xml deleted file mode 100644 index 44ff6b4a..00000000 --- a/app/src/main/res/drawable/ic_info_black_24dp.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - diff --git a/app/src/main/res/layout/activity_welcome.xml b/app/src/main/res/layout/activity_welcome.xml index 91ee392c..c591147d 100644 --- a/app/src/main/res/layout/activity_welcome.xml +++ b/app/src/main/res/layout/activity_welcome.xml @@ -1,16 +1,6 @@ - - - - \ No newline at end of file + android:layout_height="match_parent" /> \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_grant_root.xml b/app/src/main/res/layout/fragment_grant_root.xml index 3fd26bb2..88d201de 100644 --- a/app/src/main/res/layout/fragment_grant_root.xml +++ b/app/src/main/res/layout/fragment_grant_root.xml @@ -1,6 +1,7 @@ - @@ -9,14 +10,16 @@ android:id="@+id/grant_root_header" android:text="@string/are_you_rooted" app:layout_constraintTop_toTopOf="parent" - style="@style/WelcomeHeaderTitle" /> + style="@style/WelcomeHeaderTitle" + tools:ignore="MissingConstraints" /> + style="@style/WelcomeHeaderSubtitle" + tools:ignore="MissingConstraints" /> - \ No newline at end of file + + \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_select_apps.xml b/app/src/main/res/layout/fragment_select_apps.xml index a8d3211c..624835c1 100644 --- a/app/src/main/res/layout/fragment_select_apps.xml +++ b/app/src/main/res/layout/fragment_select_apps.xml @@ -1,5 +1,5 @@ - - + diff --git a/app/src/main/res/layout/fragment_welcome.xml b/app/src/main/res/layout/fragment_welcome.xml index 478e0e95..1ee2b2fd 100644 --- a/app/src/main/res/layout/fragment_welcome.xml +++ b/app/src/main/res/layout/fragment_welcome.xml @@ -1,5 +1,5 @@ - - + + diff --git a/app/src/main/res/navigation/welcome_navigation.xml b/app/src/main/res/navigation/welcome_navigation.xml deleted file mode 100644 index 775ab980..00000000 --- a/app/src/main/res/navigation/welcome_navigation.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/values/dimens.xml b/app/src/main/res/values/dimens.xml index ebb0e226..a781c629 100644 --- a/app/src/main/res/values/dimens.xml +++ b/app/src/main/res/values/dimens.xml @@ -1,7 +1,6 @@ - 12dp 16dp 128dp diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml index f67eda09..89ee5444 100644 --- a/app/src/main/res/values/styles.xml +++ b/app/src/main/res/values/styles.xml @@ -130,11 +130,6 @@ ?colorLinkImage - -