There are 4 variants of the apk file that get downloaded from the play store (arm, arm64, x86, x86-64)
For tablets you likely only care about the arm ones, but you need to get the right for the specific tablet.
One could download them from a third part apk site (eg. apkpure) but the variant coverage is often not complete.
If all the tablets are the same then I’d do the following:
- on one tablet download the latest from the apk store.
- Connect tablet to laptop via usb cable.
(it’s possible one needs to put the tablet into developer mode to do this. adb will have to be installed on the laptop)
- use adb to copy the apk from the tablet to the laptop.
on laptop something like:
adb shell pm path org.paratext.ptlite
then:
adb pull /data/app/org.paratext.ptlite…something… nameToSaveApk.apk
Alternatively you could just email me and ask me to put the latest apk’s on a google drive somewhere.