Fix crash on sharing card + release 2.11.2

This commit is contained in:
Sylvia van Os
2021-12-04 14:03:52 +01:00
parent 6b4a01c954
commit 6a91d59050
3 changed files with 7 additions and 2 deletions

View File

@@ -1,5 +1,9 @@
# Changelog
## v2.11.2 - 95 (2021-12-04)
- Fix crash on sharing card
## v2.11.1 - 94 (2021-11-30)
- Fix blurriness of main screen letter icons

View File

@@ -18,8 +18,8 @@ android {
applicationId "me.hackerchick.catima"
minSdkVersion 21
targetSdkVersion 31
versionCode 94
versionName "2.11.1"
versionCode 95
versionName "2.11.2"
vectorDrawables.useSupportLibrary true
multiDexEnabled true

View File

@@ -197,6 +197,7 @@ public class ImportURIHelper {
sendIntent.setType("text/plain");
Intent shareIntent = Intent.createChooser(sendIntent, null);
shareIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(shareIntent);
}
}