Advertisement
Guest User

log

a guest
May 8th, 2021
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. LOG:
  2. -- Apps which will be added to whitelist: --
  3. - Fermata Auto (me.aap.fermata.auto)
  4. - Screen2Auto (ru.inceptive.screentwoauto)
  5. - AA Mirror (com.github.slashmax.aamirror)
  6. - CarStream (com.google.android.kk2)
  7.  
  8.  
  9. -- Force stopping Google Play Services --
  10. OutputStream:
  11. am kill all com.google.android.gms
  12.  
  13. -- Gaining ownership of the database --
  14. OutputStream:
  15. chown root /data/data/com.google.android.gms/databases/phenotype.db
  16.  
  17. -- Setting SELINUX to permessive --
  18. OutputStream:
  19. setenforce 0
  20.  
  21. -- run SQL method --
  22. OutputStream:
  23. /data/user/0/sksa.aa.tweaker/sqlite3 -batch /data/data/com.google.android.gms/databases/phenotype.db 'DELETE FROM Flags WHERE name="app_white_list";
  24. DROP TRIGGER IF EXISTS aa_patched_apps;
  25. DROP TRIGGER IF EXISTS after_delete;
  26. DROP TRIGGER IF EXISTS aa_patched_apps_fix;'
  27. OutputStream:
  28. /data/user/0/sksa.aa.tweaker/sqlite3 -batch /data/data/com.google.android.gms/databases/phenotype.db 'CREATE TRIGGER aa_patched_apps AFTER DELETE
  29. ON FlagOverrides
  30. BEGIN
  31. END;'
  32. ErrorStream:
  33. Error: near "END": syntax error
  34.  
  35. -- Restoring ownership of the database --
  36. OutputStream:
  37. chown u0_a189 /data/data/com.google.android.gms/databases/phenotype.db
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement