Skip to content

Commit

Permalink
fix: Incorrect 5 minutes disable
Browse files Browse the repository at this point in the history
  • Loading branch information
tien committed Jun 12, 2021
1 parent c4abedc commit 7881a61
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ android {
applicationId = "com.tien.piholeconnect"
minSdk = 21
targetSdk = 30
versionCode = 17
versionName = "7.0"
versionCode = 18
versionName = "7.1"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
ndk {
debugSymbolLevel = "FULL"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ fun DisableAdsBlockingAlertDialog(
TextButton(onClick = { onDurationButtonClick(Duration.seconds(30)) }) {
Text(stringResource(R.string.disable_dialog_button_30_seconds))
}
TextButton(onClick = { onDurationButtonClick(Duration.seconds(5)) }) {
TextButton(onClick = { onDurationButtonClick(Duration.minutes(5)) }) {
Text(stringResource(R.string.disable_dialog_button_5_minutes))
}
TextButton(onClick = {
Expand Down

0 comments on commit 7881a61

Please sign in to comment.