Skip to content
This repository has been archived by the owner on Jun 8, 2024. It is now read-only.

Commit

Permalink
LauncherActivity: Fix cannot open SchedulerDialog under SDK 23
Browse files Browse the repository at this point in the history
Signed-off-by: Fung <[email protected]>
  • Loading branch information
fython committed Jun 26, 2017
1 parent 77c26c2 commit e64dba8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "info.papdt.blackblub"
minSdkVersion 21
targetSdkVersion 26
versionCode 12
versionName "1.3.0.1"
versionCode 13
versionName "1.3.0.2"
}
buildTypes {
release {
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/java/info/papdt/blackblub/ui/LaunchActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,8 @@ public void onClick(DialogInterface dialogInterface, int i) {
return;
}
showSchedulerDialog();
} else {
showSchedulerDialog();
}
}
});
Expand Down

2 comments on commit e64dba8

@WanderMax
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

great!

@TPS
Copy link

@TPS TPS commented on e64dba8 Jun 26, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To fix #35, I guess.

Please sign in to comment.