Size: 165
Comment: Create .nomedia files
|
← Revision 3 as of 2018-08-17 05:07:10 ⇥
Size: 670
Comment: How to trigger Google Drive backup
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
== Disable & enable Android's media scanner == {{{#!highlight sh # Disable adb shell su pm disable com.android.providers.media/com.android.providers.media.MediaScannerReceiver # Enable pm enable com.android.providers.media/com.android.providers.media.MediaScannerReceiver }}} Source: http://geeknizer.com/fix-android-media-server-scanner-sdcard-cpu-battery-drain/ |
|
Line 6: | Line 20: |
== Backups == {{{#!highlight sh # Immediately trigger backup to Google Drive adb shell bmgr backupnow --all }}} |
Disable & enable Android's media scanner
Source: http://geeknizer.com/fix-android-media-server-scanner-sdcard-cpu-battery-drain/
Create .nomedia files underneath a directory hierarchy
find ./ -mindepth 1 -type d -exec echo touch \"{}/.nomedia\" \;