Há 4 variantes do arquivo apk que são baixadas da Play Store (arm, arm64, x86, x86-64)
Para tablets, provavelmente você se importa apenas com as variantes arm, mas precisa obter a correta para o tablet específico.
É possível baixá-los de um site de apk de terceiros (ex.: apkpure), mas a cobertura das variantes muitas vezes não é completa.
Se todos os tablets forem iguais, eu faria o seguinte:
- em um tablet, baixe a versão mais recente da loja de apk.
- Conecte o tablet ao laptop via cabo USB.
(pode ser necessário colocar o tablet no modo desenvolvedor para fazer isso. o adb terá que ser instalado no laptop)
- use o adb para copiar o apk do tablet para o laptop.
no laptop, algo como:
adb shell pm path org.paratext.ptlite
então:
adb pull /data/app/org.paratext.ptlite…something… nameToSaveApk.apk
Alternativamente, você pode simplesmente me enviar um e-mail e me pedir para colocar os apks mais recentes em algum lugar no Google Drive.

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.

Tradução automática de English