Advertisement
metalx1000

Android Get Google Play Store Certification

Nov 18th, 2023 (edited)
1,337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.56 KB | None | 0 0
  1. #for use with custom ROMs such as LineageOS
  2.  
  3. #enable adb root in phones settings
  4. adb root
  5.  
  6. #get key to submit
  7. adb shell 'sqlite3 /data/*/*/*/gservices.db "select * from main where name = \"android_id\";"'
  8.  
  9. #copy it to clipboard
  10. adb shell 'sqlite3 /data/*/*/*/gservices.db "select * from main where name = \"android_id\";"'|cut -d\| -f2|xclip
  11.  
  12. #get certification for Google Play Store
  13. xdg-open https://www.google.com/android/uncertified/
  14.  
  15. #clear google services cache
  16. adb shell pm clear com.google.android.gms
  17.  
  18. #This could take up to 12 hours to activate
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement