Skip to content

Commit

Permalink
bump to 24.22
Browse files Browse the repository at this point in the history
  • Loading branch information
yuliskov committed Oct 17, 2024
1 parent eab8de2 commit f8d70aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,8 @@ public Class<?> getTopView() {
private void safeMoveTaskToBack(Activity activity) {
try {
activity.moveTaskToBack(true);
} catch (NullPointerException | IllegalArgumentException e) {
} catch (NullPointerException | IllegalArgumentException | IllegalStateException e) {
// Pinned stack isn't top stack (IllegalStateException)
Log.e(TAG, "Error when moving task to back: %s", e.getMessage());
}
}
Expand Down
4 changes: 2 additions & 2 deletions smarttubetv/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ android {
applicationId "com.liskovsoft.smarttubetv"
minSdkVersion project.properties.minSdkVersion
targetSdkVersion project.properties.targetSdkVersion
versionCode 1611
versionName "24.21"
versionCode 1612
versionName "24.22"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L"

Expand Down

0 comments on commit f8d70aa

Please sign in to comment.