Hey guys ,
since this was removed from XXLS7 jellybean by Samsung and i had the MOD allready running externally in ICS i decided to share how easy it is to add the shortcuts with our app.
You can use this app in two ways.
The easy waY.
1: Download CustomSettings with Ripple Lock settings from the attachment below
2: Install it via the flash file from sd option in ROM Customizer as a system app.
3 Close ROM Customizer and re-open it. Now you will find the rom settings option available in ROM Customizer which redirects you to the shortcut picker.
The DEV way (implemented in settings.apk):
1: Download CustomSettings with Ripple Lock settings from the attachment below
2: Push CustomSettings.apk to system app set permissions and reboot
3: Decompile SecSettings.apk with dependancy of twframework-res.apk & framework-res.apk
4: add the png from the attachment or any other png with the same name to res/drawable-xhdpi
next go to SecSettings.apk/res/xml/settings-headers.xml and add the following to where ever you want it .
Credits to ficeto for building the CustomSettings.apk for our team so we can make MODs easily
since this was removed from XXLS7 jellybean by Samsung and i had the MOD allready running externally in ICS i decided to share how easy it is to add the shortcuts with our app.
You can use this app in two ways.
The easy waY.
1: Download CustomSettings with Ripple Lock settings from the attachment below
2: Install it via the flash file from sd option in ROM Customizer as a system app.
3 Close ROM Customizer and re-open it. Now you will find the rom settings option available in ROM Customizer which redirects you to the shortcut picker.
The DEV way (implemented in settings.apk):
1: Download CustomSettings with Ripple Lock settings from the attachment below
2: Push CustomSettings.apk to system app set permissions and reboot
Code:
adb remount && adb push CustomSettings.apk /system/app && adb shell chmod 0644 /system/app/CustomSettins.apk && adb reboot
4: add the png from the attachment or any other png with the same name to res/drawable-xhdpi
next go to SecSettings.apk/res/xml/settings-headers.xml and add the following to where ever you want it .
Code:
<header android:icon="@drawable/ripples" android:title="Samsung ripplelock targets" android:key="lock_screen_shortcut">
<intent android:targetPackage="com.ficeto.customsettings" android:action="android.intent.action.MAIN" android:targetClass="com.ficeto.customsettings.LockScreenShortcutSettings" />
</header>