Skip to content

Commit

Permalink
Fix crash detected by Google Play Console pre-launch report
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLastProject committed Nov 7, 2020
1 parent a766a25 commit d10c866
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v1.0.1 (2020-11-07)

Changes:
- Fix crash in search with no groups

## v1.0 (2020-11-06)

Changes:
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
applicationId "me.hackerchick.catima"
minSdkVersion 16
targetSdkVersion 29
versionCode 41
versionName "1.0"
versionCode 42
versionName "1.0.1"
}
buildTypes {
release {
Expand Down
Binary file added app/release/app-release.apk
Binary file not shown.
1 change: 1 addition & 0 deletions app/release/output.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":41,"versionName":"1.0","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]
2 changes: 1 addition & 1 deletion app/src/main/java/protect/card_locker/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ public boolean onQueryTextChange(String newText) {

TabLayout groupsTabLayout = findViewById(R.id.groups);

updateLoyaltyCardList(newText, groupsTabLayout.getTabAt(groupsTabLayout.getSelectedTabPosition()).getTag());
updateLoyaltyCardList(newText, groupsTabLayout.getTabCount() > 0 ? groupsTabLayout.getTabAt(groupsTabLayout.getSelectedTabPosition()).getTag() : null);
return true;
}
});
Expand Down

0 comments on commit d10c866

Please sign in to comment.