Compare commits

..

4 Commits

Author SHA1 Message Date
a0339e3c19 chore: merge dev to main (#1077) 2023-08-03 05:24:25 +03:00
9cfa274d81 build: bump version to v1.5.1 2023-08-03 05:23:47 +03:00
8c79f5e371 build: bump patcher to v12.1.0 2023-08-03 05:23:16 +03:00
0d716513d7 fix: keystore password dialog showing up before importing (#1068) 2023-08-03 08:36:39 +07:00
3 changed files with 7 additions and 5 deletions

View File

@ -71,7 +71,7 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
// ReVanced
implementation "app.revanced:revanced-patcher:12.0.0"
implementation "app.revanced:revanced-patcher:12.1.0"
// Signing & aligning
implementation("org.bouncycastle:bcpkix-jdk15on:1.70")

View File

@ -73,10 +73,12 @@ class SExportSection extends StatelessWidget {
),
),
subtitle: I18nText('settingsView.importKeystoreHint'),
onTap: () {
_settingsViewModel.importKeystore();
onTap: () async{
await _settingsViewModel.importKeystore();
final sManageKeystorePassword = SManageKeystorePassword();
sManageKeystorePassword.showKeystoreDialog(context);
if(context.mounted){
sManageKeystorePassword.showKeystoreDialog(context);
}
},
),
ListTile(

View File

@ -4,7 +4,7 @@ homepage: https://github.com/revanced/revanced-manager
publish_to: 'none'
version: 1.5.0+100400004
version: 1.5.1+100400005
environment:
sdk: '>=3.0.0 <4.0.0'