Skip to content

Commit 11a1373

Browse files
committed
Version 0.5.0
1 parent b79bcb0 commit 11a1373

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
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+
110
# 0.4.3
211
- Fix a crash on Android 14 QPR3 Beta 2 caused by an issue in Compose.
312

app/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ android {
1313
applicationId = "dev.zwander.installwithoptions"
1414
minSdk = 24
1515
targetSdk = 34
16-
versionCode = 10
17-
versionName = "0.4.3"
16+
versionCode = 11
17+
versionName = "0.5.0"
1818

1919
vectorDrawables {
2020
useSupportLibrary = true

app/src/main/java/dev/zwander/installwithoptions/util/IncomingPackageUtils.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ private val DocumentFile.isApk: Boolean
7373
get() = type == "application/vnd.android.package-archive" || name?.endsWith(".apk") == true
7474

7575
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

0 commit comments

Comments
 (0)