Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View xdevs23's full-sized avatar
📼
Time does not exist

Simão Gomes Viana xdevs23

📼
Time does not exist
View GitHub Profile
adb shell content query --uri content://settings/secure --where "name=\'android_id\'"
adb shell content delete --uri content://settings/secure --where "name=\'android_id\'"
adb shell content insert --uri content://settings/secure --bind name:s:android_id --bind value:s:7373de1e9e9670c2
#Change permissions recursively only to directories:
find . -type d -exec chmod -R 0755 {} \;
#Change permissions recursively only to files:
find . -type f -exec chmod -R 0644 {} \;