Compare commits

...
Author SHA1 Message Date
Sylvia van Os 0b2dec3b88 Merge branch 'main' into feature/android_17_target 2026-07-15 17:20:37 +02:00
Sylvia van Os 6d79a2e20d Migrate to sdkSpec 2026-07-15 17:20:01 +02:00
Sylvia van Os 0a12429b41 Target Android 17 2026-06-10 21:25:55 +02:00
2 changed files with 10 additions and 3 deletions

No files matched your search

+9 -3
View File
@@ -13,12 +13,18 @@ kotlin {
android {
namespace = "protect.card_locker"
compileSdk = 36
compileSdk {
version = release(37)
}
defaultConfig {
applicationId = "me.hackerchick.catima"
minSdk = 23
targetSdk = 36
minSdk {
version = release(23)
}
targetSdk {
version = release(37)
}
versionCode = 167
versionName = "2.43.0"
@@ -240,6 +240,7 @@ public class ImportURIHelper {
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
sendIntent.putExtra(Intent.EXTRA_TEXT, text.toString());
sendIntent.setType("text/plain");