Skip to content

Commit

Permalink
chore: merge dev to main (#1077)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ushie authored Aug 3, 2023
2 parents 08f6724 + 9cfa274 commit a0339e3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
8 changes: 5 additions & 3 deletions lib/ui/widgets/settingsView/settings_export_section.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit a0339e3

Please sign in to comment.