chore: merge dev to main (#1077)

This commit is contained in:
Ushie 2023-08-03 05:24:25 +03:00 committed by GitHub
commit a0339e3c19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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'