Skip to content

Commit

Permalink
Change version codes to v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
WrichikBasu committed Oct 1, 2022
1 parent 87cb182 commit 1031bad
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
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "in.basulabs.shakealarmclock"
minSdkVersion 21
targetSdkVersion 31
versionCode 28
versionName "3.0.0-beta"
versionCode 29
versionName "3.0.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ protected void onCreate(@Nullable Bundle savedInstanceState) {
.addToBackStack(BACK_STACK_TAG)
.commit();

} else if (getIntent().getAction().equals(ACTION_EXISTING_ALARM)) {
} else if (Objects.requireNonNull(getIntent().getAction()).equals(ACTION_EXISTING_ALARM)) {

Bundle data = Objects.requireNonNull(getIntent().getExtras()).getBundle(BUNDLE_KEY_ALARM_DETAILS);

Expand Down

0 comments on commit 1031bad

Please sign in to comment.