从 Play 商店下载的 apk 文件有 4 种变体(arm、arm64、x86、x86-64)
对于平板电脑,您可能只关心 arm 版本,但您需要获取适合特定平板电脑的正确版本。
可以从第三方 apk 网站(例如 apkpure)下载,但变体覆盖往往不完整。
如果所有平板电脑都是相同的,我会执行以下操作:
- 在一台平板电脑上从 apk 商店下载最新版本。
- 通过 USB 线将平板电脑连接到笔记本电脑。
(可能需要将平板电脑设置为开发者模式才能执行此操作。笔记本电脑上必须安装 adb)
- 使用 adb 将 apk 从平板电脑复制到笔记本电脑。
在笔记本电脑上输入类似以下内容:
adb shell pm path org.paratext.ptlite
然后:
adb pull /data/app/org.paratext.ptlite…something… nameToSaveApk.apk
或者,您可以直接给我发电子邮件,让我将最新的 apk 文件放在某个 Google 云端硬盘上。

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.

机器翻译自 English