You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
957 B
Python
22 lines
957 B
Python
from tools import container
|
|
from tools.helper import shell
|
|
from tools.logger import Logger
|
|
|
|
|
|
class AndroidId:
|
|
def get_id(self):
|
|
if container.is_running():
|
|
try:
|
|
queryout = shell(
|
|
arg="sqlite3 /data/data/com.google.android.gsf/databases/gservices.db \"select * from main where name = 'android_id';\"",
|
|
env="ANDROID_RUNTIME_ROOT=/apex/com.android.runtime ANDROID_DATA=/data ANDROID_TZDATA_ROOT=/apex/com.android.tzdata ANDROID_I18N_ROOT=/apex/com.android.i18n"
|
|
)
|
|
except:
|
|
return
|
|
else:
|
|
Logger.error("Please make sure Waydroid is running and Gapps has been installed!")
|
|
return
|
|
print(queryout.replace("android_id|", "").strip())
|
|
print(" ^----- Open https://google.com/android/uncertified/?pli=1")
|
|
print(" Login with your google id then submit the form with id shown above")
|