@ars18 I am having a problem with the google play APK downloader, I am self-hosting it, and whenever I download something, and try to install it, terminal gives me an error:
Performing Streamed Install
adb.exe: failed to install jem.apk: Failure [INSTALL_PARSE_FAILED_NO_CERTIFICATES: Failed collecting certificates for /data/app/vmdl1205480290.tmp/base.apk: Failed to collect certificates from /data/app/vmdl1205480290.tmp/base.apk: Attempt to get length of null array]
and this is with any APK, I try to download after you stopped hosting, do you know what the problem is?
The problem is youre trying to install a split of the apk without the base, I believe.
If it came with multiple apks in a zip, use adb install-multiple base.apk split.apk etc.apk etc.apk
If you used merge and its not working, which makes sense depending on the device, then dont merge it and install all apks together like I showed above.
I meant in the previous paragraph. Uncheck merging, you get a zip file with a few apks, and run adb install-multiple base.apk split.apk (you can tag on as many apks as there are) and it should say success this time. Try it out and let me know