# NIGHTLY UPDATER # QUICK HOW TO # Everything after a pound sign/hashtag/"#" is removed from the script # That is, all the tutorials, app descriptions, and apps you don't want to backup # Thus, only leaving the script with the files you want to backup # Edit the list below as you see fit, examples: # /data/app/AdobeReader.apk > Backed up by Nightly Updater (because there is no "#") # #/data/app/AdobeReader.apk > NOT backed up by Nightly Updater (because of "#") # ADDING YOUR OWN FILES # By saving this file to /sdcard/NU/keep.txt you can add files. # Files can be added from anywhere and even using wildcards. # Files and folders backed up ARE case-sensitive, examples: # /path/to/file/file.txt > Backs up file.txt # /path/to/folder/ > Backs up folder ... REMEMBER the trailing "/" # GOOD LUCK # Ask questions at XDA # USER APPS # Location: /data/app/... # Example: /data/app/YourApp.apk #/data/app/com.chrome*.apk #Google Chrome APK # APP DATA # Location: /data/data/... # Example: /data/data/YourAppsFolder/ <- You want the folder, remember the trailing "/" #/data/data/com.chrom*/ #Google Chrome Data (Wildcard for Beta users) # INIT.D SCRIPTS # Location: /system/etc/init.d/... # Example: /system/etc/init.d/00Script (To backup individual scripts) # Example: /system/etc/itit.d/ <- All scripts, so, you want the folder, remember the trailing "/" #/system/etc/init.d/00Script #Example init.d Script #/system/etc/itit.d/ #Backup All init.d Scripts # SYSTEM APPS # Location: /system/app/... # Example: /system/app/YourApp.apk #/system/app/Apollo.apk # FONTS # Location: /system/fonts/... # Example: /system/fonts/YourFont.ttf # Example: /system/fonts/ <- All fonts, so, you want the folder, remember the trailing "/" #/system/fonts/DroidSans.ttf #Default Font #/system/fonts/ #Backup All Fonts # FRAMEWORK - BE CAREFUL!!! # Usefulness: Normally install zip that adds/modifies framework files (USE CAUTION!!!) # Location: /system/framework/... # Example: /system/framework/CustomFramework.jar -or- .apk #/system/framework/ext.jar #Some Framework File # LIBS # Usefulness: Normally install zip that adds/modifies lib files # Location: /system/lib/... # Example: /system/lib/CustomLib.so #/system/lib/libandroid.so #Some Lib File # BOOT ANIMATION # Location: /system/media/bootanimation.zip /system/media/bootanimation.zip #Boot Animation # MEDIA (RINGTONES, NOTIFICATIONS, ALARMS, UI SOUNDS) # Location: /system/media/audio/... # Example: /system/media/audio/notifications/Polaris.ogg #/system/media/audio/ #<- All media, so, you want the folder, remember the trailing "/" #/system/media/audio/alarms/Argon.ogg #Argon Alarm #/system/media/audio/alarms/ #<- All alarms, so, you want the folder, remember the trailing "/" #/system/media/audio/notifications/Polaris.ogg #Polaris Notification #/system/media/audio/notifications/ #<- All notifications, so, you want the folder, remember the trailing "/" #/system/media/audio/ringtones/Acheron.ogg #Acheron Ringtone #/system/media/audio/ringtones/ #<- All ringtones, so, you want the folder, remember the trailing "/" #/system/media/audio/ui/camera_click.ogg #Camera Click #/system/media/audio/ui/ #<- All UI sounds, so, you want the folder, remember the trailing "/" # ADD YOUR OWN # Just include the full file path # Try to stick with /data and /system # Do not backup /data or /system though... # Just subdirectories like /data/app or /system/media # If something is not working right, let me know... it may be a file permissions issue # Run Fix Permissions in recovery and post your results @ XDA # THANK YOU