File tree 3 files changed +12
-3
lines changed
src/main/java/dev/zwander/installwithoptions/util
3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change
1
+ # 0.5.0
2
+ - Automatically detect split APKs and normal APKs inside a single selection and group them accordingly.
3
+ - Add preliminary ability to import split APKs (.xapk or .apkm).
4
+ - Add view target to open APKs from the system open sheet.
5
+ - Add ability to remove packages or individual APKs from the install queue.
6
+ - Add text below install progress indicator to show how many packages have completed their install.
7
+ - Update explanation for "Grant All Requested Permissions" to be clearer that it's about runtime permission only.
8
+ - UI tweaks.
9
+
1
10
# 0.4.3
2
11
- Fix a crash on Android 14 QPR3 Beta 2 caused by an issue in Compose.
3
12
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ android {
13
13
applicationId = " dev.zwander.installwithoptions"
14
14
minSdk = 24
15
15
targetSdk = 34
16
- versionCode = 10
17
- versionName = " 0.4.3 "
16
+ versionCode = 11
17
+ versionName = " 0.5.0 "
18
18
19
19
vectorDrawables {
20
20
useSupportLibrary = true
Original file line number Diff line number Diff line change @@ -73,4 +73,4 @@ private val DocumentFile.isApk: Boolean
73
73
get() = type == " application/vnd.android.package-archive" || name?.endsWith(" .apk" ) == true
74
74
75
75
private val DocumentFile .isSplitBundle: Boolean
76
- get() = type == " application/zip" || name?.endsWith(" .xapk" ) == true
76
+ get() = type == " application/zip" || name?.endsWith(" .xapk" ) == true || name?.endsWith( " .apkm " ) == true
You can’t perform that action at this time.
0 commit comments