Đôi khi bạn mod một app nào đó, ví dụ như patch 1 game bởi x8 speeder, tuy nhiên game lại bắt phải tải từ CH Play mới chơi được, bạn có thể làm theo cách dưới đây:
Cách này là dành cho những người có chuyên môn 1 chút, nếu bạn chưa có kiến thức gì về root, hãy tìm hiểu kỹ trước khi làm.
Hướng dẫn:
- Bước 1: Root máy
- Bước 2: dùng terminal hoặc adb shell, thực hiện các lệnh sau:
- Đối với app chưa cài:
pm install -i com.android.vending /somewhere/com.example.someapp.apk
- Đối với app đã cài:
pm set-installer com.example.someexistingapp com.android.vending
- Đối với app chưa cài:
- Lưu ý:
ở đây là đường dẫn gói cài apk/somewhere/com.example.someapp.apk
com.example.someexistingapp
ở đây là tên gói app đã cài
You can already do this without needing an extra app. Just become root in a terminal or use adb shell, and do
pm install -i com.android.vending /somewhere/com.example.someapp.apk
to install a new app that pretends to be from the Play Store, or
pm set-installer com.example.someexistingapp com.android.vending
to mark an already-installed app as having been installed from the Play Store.