Hey there everyone! Thought i'd do a little knowledge dump and post up a bunch of guides and things that you can tweak in your rom. Probably will be most helpful for up and coming Devs, but could benefit anyone! I will update this guide with more mods as i get time 
You will need knowledge of how to decompile apk's with apktool and knowledge of smali/baksmali. (I will not go over this) I also recommend notepad++ for editing.
These are currently based on the latest Verizon MD3 premium suite 4.1.2 update
With Said Lets get started!

You will need knowledge of how to decompile apk's with apktool and knowledge of smali/baksmali. (I will not go over this) I also recommend notepad++ for editing.
These are currently based on the latest Verizon MD3 premium suite 4.1.2 update
With Said Lets get started!
]
Decompile SecLauncher2.apk
Navigate to res/values/bool.xml
Find this line:
Change to:
Recompile the app and then you are done!
Decompile your apk you want to hide
Navigate to AndroidManifest.xml
Find this line:
Change to:
Now recompile your app, and you have to do one other thing. Whenever editing the AndroidManifest you must resign your app or it will force close. You can use a program like APK-Multi Tool to do this if you want!
Enjoy and Hit the Thanks button if you like these! SecLauncher2.apk Mods
Enable Wallpaper Scrolling on Touchwiz Launcher
Decompile SecLauncher2.apk
Navigate to res/values/bool.xml
Find this line:
Code:
<bool name="config_fixedWallpaperOffset">true</bool>
Code:
<bool name="config_fixedWallpaperOffset">false</bool>
Framework-res.apk Mods
For all these mods you will need to decompile framework-res.apk
Enable Full 360 Degree rotation
Unplug doesnt turn on screen
Permantly Disable Help text on lockscreen
Change Low Battery Values
Change Help Text on Lockscreen
After editing and performing these mods then recompile and you are done!
Enable Full 360 Degree rotation
Navigate to res/values/bools.xml
Find:
Change To:
Find:
Code:
<bool name="config_allowAllRotations">false</bool>
Code:
<bool name="config_allowAllRotations">true</bool>
Navigate to res/values/bools.xml
Find:
Change To:
Find:
Code:
<bool name="config_unplugTurnsOnScreen">true</bool>
Code:
<bool name="config_unplugTurnsOnScreen">false</bool>
Navigate to res/values/bools.xml
Find:
Change To:
Find:
Code:
<bool name="config_isHelpOverlayEnabled">true</bool>
Code:
<bool name="config_isHelpOverlayEnabled">false</bool>
Navigate to res/values/integers.xml
Find:
Change To:
You can change these to whatever you want but this is what i have.
Find:
Code:
<integer name="config_criticalBatteryWarningLevel">5</integer>
<integer name="config_lowBatteryWarningLevel">15</integer>
<integer name="config_lowBatteryCloseWarningLevel">20</integer>
Code:
<integer name="config_criticalBatteryWarningLevel">1</integer>
<integer name="config_lowBatteryWarningLevel">5</integer>
<integer name="config_lowBatteryCloseWarningLevel">10</integer>
Change Help Text on Lockscreen
Navigate to res/values/strings.xml
Find:
Change To:
You can change this text to have it say whatever you want on the lockscreen
Find:
Code:
<string name="lockscreen_unlock_guide_text">Swipe Screen to Unlock.</string>
Code:
<string name="lockscreen_unlock_guide_text">HYPERDRIVE</string>
After editing and performing these mods then recompile and you are done!
Miscellaneous Mods
Hide any app from the app drawer
Decompile your apk you want to hide
Navigate to AndroidManifest.xml
Find this line:
Code:
<category android:name="android.intent.category.LAUNCHER" />
Code:
<category android:name="android.intent.category.GADGET" />