[MOD] Lockscreen Widgets! - Verizon Galaxy S 5 Themes and Apps

Lockscreen Widgets for the VZW S5 [ NCG ]
HUGE Thanks to Team Alliance for the source for enabling lockscreen widgets on the S5! This is not my code, but I did have to compare their code to ours and merge the smali edits into the Verizon Keyguard.apk smali files.
Just flash this via recovery. It replaces the stock /system/priv-app/Keyguard.apk with a modified Keyguard.apk.
This might work for the DevEd also, but I don't know. If you try it and it works let me know and I'll update this OP :good:
DEODEX ONLY
NCG lockscreen Widgets
NE9 Lockscreen Widgets
NI2 Lockscreen Widgets is currently not working. Still looking into it.
Original thread with the source used
Pics
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Stock NCG lockscreen download
Stock NE9 Lockscreen download

Worked like a charm! Thank you sir.
Sent from my SM-G900V using XDA Premium 4 mobile app

ran out of thanks but this is much needed and appreciated thank you sir......

Thanks, workked just fine, another thing to add to your ROM !!!
Chief

Not to sound totally noob but after flash, how do u apply to lock screen
Sent from my SM-G900V using XDA Premium 4 mobile app

Broadley1 said:
Not to sound totally noob but after flash, how do u apply to lock screen
Sent from my SM-G900V using XDA Premium 4 mobile app
Click to expand...
Click to collapse
I'd also like to know..
How do we go about using these lockscreen widgets?
Preferably without yet another app..

Broadley1 said:
Not to sound totally noob but after flash, how do u apply to lock screen
Sent from my SM-G900V using XDA Premium 4 mobile app
Click to expand...
Click to collapse
jaladhjin said:
I'd also like to know..
How do we go about using these lockscreen widgets?
Preferably without yet another app..
Click to expand...
Click to collapse
On the lock screen, touch the clock and drag down. From that point you should be able to move the screen to your right and add another widget.
---------- Post added at 12:09 AM ---------- Previous post was at 12:07 AM ----------
I would like to know if this includes the center clock fix as I also created this with the fix for the multiple clock the get created if you use a center clock mod.

Only 1 widget allowed per screen?

jaladhjin said:
Only 1 widget allowed per screen?
Click to expand...
Click to collapse
yep only one wigdet per screen

I must be doing something wrong. Booted into safestrap, flashed the zip, rebooted, but I can't pull the clock down. Is that the only way to add widgets?

You drag the clock to the side. You'll then see a button with a + on it. Tap the + and (if you have a secure lockscreen) unlock your devivce to bring up a list of widgets.
And yes, one widget per lockscreen. Seems odd, personally.
EDIT: Added pics to the OP to show what I'm talking about.

I must be crazy....I can't for the life of me figure out how to drag the clock down. I understand lockscreen widgets and had many on my S4, but when I touch the clock in any direction nothing happens. I flashed the zip on a stock rooted rom. I'll just flash your R9 and see if it works for me when baked in or if it really is just operator error on my part. Feeling like I caught a case of the noobs.

chrisbass said:
I must be crazy....I can't for the life of me figure out how to drag the clock down. I understand lockscreen widgets and had many on my S4, but when I touch the clock in any direction nothing happens. I flashed the zip on a stock rooted rom. I'll just flash your R9 and see if it works for me when baked in or if it really is just operator error on my part. Feeling like a caught a case of the noobs.
Click to expand...
Click to collapse
Haha it's all good. It shouldn't make a difference what ROM it is. Just let me know.

MrHyde03 said:
Haha it's all good. It shouldn't make a difference what ROM it is. Just let me know.
Click to expand...
Click to collapse
Flashed your R9 and everything works perfectly....really weird. Have no idea why it didn't work before. Off topic for this thread but great job on the rom, much appreciated.

This doesn't work on stock rooted.
EDIT:
I got it working on the stock rom using this tutorial to odex the modifications:
http://forum.xda-developers.com/showthread.php?t=1608767
and this script
Code:
adb shell
mount -o remount, rw /system
cp /storage/extSdCard/amestris_mod/Keyguard.apk /system/priv-app/Keyguard.apk
dexopt-wrapper /system/priv-app/Keyguard.apk /system/priv-app/new_Keyguard.odex /system/priv-app/core.jar:/system/priv-app/bouncycastle.jar:/system/priv-app/ext.jar:/system/priv-app/framework.jar:/system/priv-app/android.policy.jar:/system/priv-app/Keyguard.apk:/system/priv-app/core-junit.jar
cp -f /storage/extSdCard/amestris_original/Keyguard.apk /system/priv-app
chmod 777 /system/priv-app/Keyguard.odex
chmod 777 /system/priv-app/Keyguard.apk
chmod 777 /system/priv-app/new_Keyguard.odex
busybox dd if=/system/priv-app/Keyguard.odex of=/system/priv-app/new_Keyguard.odex bs=1 count=20 skip=52 seek=52 conv=notrunc
cp /system/priv-app/new_Keyguard.odex /system/priv-app/Keyguard.odex
chmod 644 /system/priv-app/Keyguard.odex
chown root.root /system/priv-app/Keyguard.odex
rm /system/priv-app/new_Keyguard.odex
mount -o remount, r /system
reboot

Serubin said:
This doesn't work on stock rooted.
EDIT:
I got it working on the stock rom using this tutorial to odex the modifications:
http://forum.xda-developers.com/showthread.php?t=1608767
and this script
Code:
adb shell
mount -o remount, rw /system
cp /storage/extSdCard/amestris_mod/Keyguard.apk /system/priv-app/Keyguard.apk
dexopt-wrapper /system/priv-app/Keyguard.apk /system/priv-app/new_Keyguard.odex /system/priv-app/core.jar:/system/priv-app/bouncycastle.jar:/system/priv-app/ext.jar:/system/priv-app/framework.jar:/system/priv-app/android.policy.jar:/system/priv-app/Keyguard.apk:/system/priv-app/core-junit.jar
cp -f /storage/extSdCard/amestris_original/Keyguard.apk /system/priv-app
chmod 777 /system/priv-app/Keyguard.odex
chmod 777 /system/priv-app/Keyguard.apk
chmod 777 /system/priv-app/new_Keyguard.odex
busybox dd if=/system/priv-app/Keyguard.odex of=/system/priv-app/new_Keyguard.odex bs=1 count=20 skip=52 seek=52 conv=notrunc
cp /system/priv-app/new_Keyguard.odex /system/priv-app/Keyguard.odex
chmod 644 /system/priv-app/Keyguard.odex
chown root.root /system/priv-app/Keyguard.odex
rm /system/priv-app/new_Keyguard.odex
mount -o remount, r /system
reboot
Click to expand...
Click to collapse
Probably should'a mentioned this is deodex only.

MrHyde03 said:
Probably should'a mentioned this is deodex only.
Click to expand...
Click to collapse
You are right, sorry.

Serubin said:
You are right, sorry.
Click to expand...
Click to collapse
No problem. I should have mentioned it in the OP. It's been added :good:

Added NE9 compatible lockscreen widgets to the OP along with stock NE9 lockscreen.

Any way to undo this mod?

Related

Drawer Fix for Haykuro's 6.0r1 / **ADB**

Please delete this thread.
works a treat a-la;
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
link is down..
Can someone please re-upload or is there an updated link?
there isn't the full link in the startpost
full link
edit: works great, no reboot needed - thank you
Download link is ok all works fine for me, have the launcher back working correctly.
you can extract Launcher.apk from the Dude's or JF's build.
all you need to to is actually:
adb remount
adb shell rm /system/app/HTCLauncher.apk
adb push Launcher.apk /system/app
the os will find the new launcher aotumatically, so there's no need to install it.
billc.cn said:
you can extract Launcher.apk from the Dude's or JF's build.
all you need to to is actually:
adb remount
adb shell rm /system/app/HTCLauncher.apk
adb push Launcher.apk /system/app
the os will find the new launcher aotumatically, so there's no need to install it.
Click to expand...
Click to collapse
Doing this broke my clock widget...
I managed to get mine working (as my post shows) by using ADB via;
Putting Launcher.apk onto the root of the SD card (drag and drop)
adb devices
adb remount
adb shell
su
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
cd /sdcard
install Launcher.apk /system/app/Launcher.apk
reboot
so basically instead of downloading terminal emulator i just quickly did it through ADB and Boom!! it works!
Dantehman said:
I managed to get mine working (as my post shows) by using ADB via;
Putting Launcher.apk onto the root of the SD card (drag and drop)
adb devices
adb remount
adb shell
su
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
cd /sdcard
install Launcher.apk /system/app/Launcher.apk
reboot
so basically instead of downloading terminal emulator i just quickly did it through ADB and Boom!! it works!
Click to expand...
Click to collapse
Hey thanks Dantehman! Worked like a charm!
zombierockstar said:
Hey thanks Dantehman! Worked like a charm!
Click to expand...
Click to collapse
Its what I do
Noticed an interesting (and very welcomed) side effect to fixing this issue today...
In order to fix the tab orientation issue, i used the only other Launcher.apk file i had at the time, which happened to be from the Aero15 Theme designed for TheDudes cupcake build. Turns out, not only do i now have the slick Aero styled Launcher, but it gave me 5 desktops in Haykuro's new build as well!
Figured it was worth a mention
Download link is this : http://www.4shared.com/account/file/.../Launcher.html
With the ellipsis in it.
Here's the correct link:
http://www.4shared.com/account/file/100449173/70db245/Launcher.html
oxeneers said:
Download link is this : http://www.4shared.com/account/file/.../Launcher.html
With the ellipsis in it.
Here's the correct link:
http://www.4shared.com/account/file/100449173/70db245/Launcher.html
Click to expand...
Click to collapse
im assuming this (the second link) is for 5 screens desktop??
Dantehman said:
im assuming this (the second link) is for 5 screens desktop??
Click to expand...
Click to collapse
No, it's just a fixed link from the first post. It didn't parse correctly, I guess.
Anyways, here's another annoying bug (or feature?) that is prevalent in 6.0r1 and not there in JF1.5. Take a look at the difference between the two screens, left is JF1.5 and right is Haykuro's 6.0r1:
It seems as though all the "bold" fonts in the browser actually are blurry, and seem to be rendered twice, or something similar. ****.
Oh, and of course we all know about the broken-as-**** location API for the browser and weather widget (among other receivers)..
Interesting
On mine Location is working fine?? im starting to think 6.0h1 is especially different for everyone
Possibly. It worked the first time I tried it, but then after that it doesn't work anymore. I saw another thread where 2 people were claiming the same.
Do you notice that bold font issue? For example, look at twidroid, anything "bold" in there looks like crap.
oxeneers said:
Possibly. It worked the first time I tried it, but then after that it doesn't work anymore. I saw another thread where 2 people were claiming the same.
Do you notice that bold font issue? For example, look at twidroid, anything "bold" in there looks like crap.
Click to expand...
Click to collapse
i can see what you mean about the fuzzy/bluryness but it only looks bad when blown up on a PC screen a-la screenshots,, on the G1 itself i can hearly notice any problems
jgrose said:
Doing this broke my clock widget...
Click to expand...
Click to collapse
The two Launchers store widget information differently, so you'll have to remove your old widget and add them back.
Hmm, great post. But I actually just realized (opening my phone on the home screen for the first time for this build) that the tab GOES to the bottom...I actually think thats really neat. The bug is correct, the screen seems to get off-centered, but, I like the tab at the bottom. It seems more like common sense, thats how your looking at it when its closed (tab at the bottom) when its open, tab should be at the bottom (I think anyway).
So anyone know how to fix that off-center but keep the tab down there?
Thanks

[THEME] Froyo Dynamite

All right kiddies here is the ported version of my Red Dynamite. This is about 99% done and is fully functional. Updated with more red that was missing from original Dynamite.
12/24/10
340 Updated version HERE
-Of course you still need to be deodexed and rooted
-Boot into Koush's recovery and apply Dynamite 340.zip
EDIT:
Put stock sliders back in until I fix the .9png's
Fixed the notification text color to white in the framework xml files
Changed BlurHome Menu buttons to red with white highlights when pressed
I AM NOT RESPONSIBLE FOR ANYTHING BAD HAPPENING TO YOUR PHONE. USE AT YOUR OWN RISK!!!
Update.zip HERE
Download
Requirements
Root (duh!)
Deodexed 2.2
ADB/Terminal Emulator
So far the following things are skinned:
Music
Pandora
Battery Indicator
3G Status
BlurHome
Youtube
Power Widget
Fancy Widget
Facebook
Google Search
Widgetlocker
Lockscreen
Settings
Random Notification Icons (Wifi, BT, Airplane Mode, Silent Mode, Voicemail etc)
The Notification bar is based off of teenfaces thread here:
http://forum.xda-developers.com/showthread.php?t=733966
Thanks to bad4u6669 for the settings, power, and skinned Swype
Swype
Power and Settings
I'm gradually getting the hang of Androiding so take it easy. And if I'm forgetting anyone to give credit to let me know and I'll give credit where credit is due. Also I can't post the apk's for the commercial apps like Widgetlocker and Pandora so I can give you the res file to manually insert into the apk.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Directions
Unzip the contents of Froyo Dynamite.zip and put them on the root of your SD card
Open ADB or Terminal Emulator and input the following commands exactly
su
mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system
cp /sdcard/Music.apk /system/app
cp /sdcard/pandora.apk /system/app
cp /sdcard/Vvm.apk /system/app
cp /sdcard/com.facebook.katana.apk /system/app
cp /sdcard/GoogleQuickSearchBox.apk /system/app
cp /sdcard/BlurHome.apk /system/app
cp /sdcard/Swype.apk /system/app
cp /sdcard/Settings.apk /system/app
cp /sdcard/YouTube.apk /system/app
cp /sdcard/services.jar /system/framework
cp /sdcard/framework-res.apk /system/framework
mount -o ro,remount -t ext3 /dev/block/mmcblk1p21 /system
reboot
The Fancywidget.apk is a little more tricky. Check My original Red Dynamite post for instructions.
Your phone might reboot a couple times and/or take a while to boot. Don't freak out just let it do its thing. After that you should be DY-NO-MITE!!
Your using my new swype with the red tracer right?
You know you want me to make an update.zip for this I can hook you up tomorrow or something. or take mine and mod it. I would recommend using 7zip open the zip in and archive then open the apks in an archive and replace the drawable folders with yours. Thats the only way i was able to get it work.
Looks good man. I'm working on my own personal theme (not releasing it) and this gives me a few ideas.
Keep up the good work.
Updated with some stuff that was messed up. If anyone wants to make an update.zip feel free and I will put it in the OP.
that live wallpaper look amazing. can you post the apk for that
Explodee said:
Updated with some stuff that was messed up. If anyone wants to make an update.zip feel free and I will put it in the OP.
Click to expand...
Click to collapse
Here is a link to a blank update.zip. Just download it and drop your updated files in the correct folders and you should be good to go. As mentioned I'd use 7-zip to open it and then just drag and drop your modified *.apks
http://alldroid.org/default.aspx?g=posts&t=855
Update.zip added!!
holy crap your phone is busy looking.
Umm...can we get better links than rapidshare? It keeps falsely telling me that i've used too many free downloads from my IP...and I even tried over 3g...
man I wish this would come to fission.
Explodee said:
Directions
Unzip the contents of Froyo Dynamite.zip and put them on the root of your SD card
Open ADB or Terminal Emulator and input the following commands exactly
su
mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system
cp /sdcard/Music.apk /system/app
cp /sdcard/pandora.apk /system/app
cp /sdcard/Vvm.apk /system/app
cp /sdcard/com.facebook.katana.apk /system/app
cp /sdcard/GoogleQuickSearchBox.apk /system/app
cp /sdcard/BlurHome.apk /system/app
cp /sdcard/Swype.apk /system/app
cp /sdcard/Settings.apk /system/app
cp /sdcard/YouTube.apk /system/app
cp /sdcard/services.jar /system/framework
cp /sdcard/framework-res.apk /system/framework
mount -o ro,remount -t ext3 /dev/block/mmcblk1p21 /system
reboot
The Fancywidget.apk is a little more tricky. Check My original Red Dynamite post for instructions.
Your phone might reboot a couple times and/or take a while to boot. Don't freak out just let it do its thing. After that you should be DY-NO-MITE!!
Click to expand...
Click to collapse
+++++++++++++++++++++
How do you un-do the prompts that you put in? I cant seem to get the colors to return back to normal (not red). I'm assuming you have to type in more code to get it that way, what do I do?
Does anyone know if this will work with the new .340 OTA?
*Coming soon to Fission
All I did was replace .png files so if you are unsure about whether or not it will work, you can add my png's to your apk's or framework and do it manually.
Explodee said:
*Coming soon to Fission
All I did was replace .png files so if you are unsure about whether or not it will work, you can add my png's to your apk's or framework and do it manually.
Click to expand...
Click to collapse
Hey do you know if this theme will work with the .340 OTA?
Working on that now actually. I don't know if I like Fission
Explodee said:
Working on that now actually. I don't know if I like Fission
Click to expand...
Click to collapse
Thanks! Can't wait!!!!
Any new on when this will be available for the new OTA?
koentopp5 said:
+++++++++++++++++++++
How do you un-do the prompts that you put in? I cant seem to get the colors to return back to normal (not red). I'm assuming you have to type in more code to get it that way, what do I do?
Click to expand...
Click to collapse
Not really sure what you mean. If you want to get rid of this theme you need to replace these Dynamite files with your original files. The code is only copying over your stock stuff, not actually making the changes.
Updated for the 340 OTA! Check the OP. Happy Festivus everyone!!!

Youtube gigngerbread edition on X10

http://forum.xda-developers.com/showthread.php?t=817528
It works fine. Rename it from signed_YouTube.apk to YouTube.apk and replace with one in /system/app. Make sure that permissions are set when overwriting.
Works like a charm and looks quite good, thanks for this!
qwer23
Sent from my rooted X10i using XDA App
yep great mod
widget works great also.
Is it actually working for you ??
I am getting network error 400, both on GSM/3G and on WiFi...
There's some sort of Log-In bug, basically don't sign into your youtube account while using this mod and you should be fine. Hopefully there will be a fix for that soon.
Thanks, looks much better...
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
...and had no trouble signing in. Did those that have uninstall the old app first?
Yeah looks great!
Thanks 4 share
Sent from my X10i using XDA App
XperiaX10iUser said:
Thanks, looks much better...
...and had no trouble signing in. Did those that have uninstall the old app first?
Click to expand...
Click to collapse
XperiaX10iUser: how'd you go about installing it? I'm still a noob when it comes to ADB and such (and yes, I did read your guide ), and want to make sure I'm not going to mess anything up installing this.
also, google geniewidget.apk (news and weather) also works. this one you can install it thru any file manager.
saltorio said:
XperiaX10iUser: how'd you go about installing it? I'm still a noob when it comes to ADB and such (and yes, I did read your guide ), and want to make sure I'm not going to mess anything up installing this.
Click to expand...
Click to collapse
Ok its easy:
Get to adb (shell):
$su
#mount -o remount,rw -t yaffs2 /dev/block/mtdblock2 /system
#rm /system/app/YouTube.apk
Then go to settings -> applications -> find com.android.youtube.apk and uninstall it
Reboot your phone
Then get to adb (shell):
$su
#mount -o remount,rw -t yaffs2 /dev/block/mtdblock2 /system
Install /sdcard/(where the modded .apk is)/signed_youtube.apk /system/app
Reboot phone
I did the permissions with root explorer (rw-r--r--)
How to do that with adb... idk sry
Sent from my X10i using XDA App
saltorio said:
XperiaX10iUser: how'd you go about installing it?
Click to expand...
Click to collapse
This is how I did it, in a command window on the laptop...
cd C:\android-sdk-windows\tools
adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock2 /system
adb shell rm system/app/YouTube.apk
adb uninstall com.google.android.youtube
adb push Youtube.apk /sdcard/Youtube.apk
adb shell dd if=/sdcard/Youtube.apk of=/system/app/Youtube.apk
...but if your Tools folder is elsewhere just change the first line.
PoTi_96 said:
Ok its easy:
I did the permissions with root explorer (rw-r--r--)
Click to expand...
Click to collapse
That should be:
# busybox chmod 644 <file>
XperiaX10iUser said:
This is how I did it, in a command window on the laptop...
cd C:\android-sdk-windows\tools
adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock2 /system
adb shell rm system/app/YouTube.apk
adb uninstall com.google.android.youtube
adb push Youtube.apk /sdcard/Youtube.apk
adb shell dd if=/sdcard/Youtube.apk of=/system/app/Youtube.apk
...but if your Tools folder is elsewhere just change the first line.
Click to expand...
Click to collapse
Wonderful. Worked beautifully, and I was able to login to my profile OK as well.
Thanks!
it didnt worked for me, failed to install.
fogozito said:
it didnt worked for me, failed to install.
Click to expand...
Click to collapse
Make sure to put the .apk in C:\android-sdk-windows\tools, and that it's named "YouTube.apk"
saltorio said:
Make sure to put the .apk in C:\android-sdk-windows\tools, and that it's named "YouTube.apk"
Click to expand...
Click to collapse
Thanks for that I didn't think I need them in both places.
Strange, after it worked perfectly for several hours it now force closes on start every time. Any suggestions?
Btw. I installed with root explorer. I just renamed the apk to YouTube.apk, then did overwrite the old one and set the same permissions that were set in the original youtube app. I was able to log in, too.
Sent from my rooted X10i using XDA App
Edit: reinstall did solve the problem for now. Let's see if it'll last
I also installed it successfully and it was running fine for a bit then suddenly now it is force closing a lot. I had to reboot the phone because it was stuck in a FC loop when I used the search function on the widget.
Wiping the data and resigning in seems to fix it. I guess there could be something wrong with account handling.
qwer23 said:
Strange, after it worked perfectly for several hours it now force closes on start every time. Any suggestions?
Btw. I installed with root explorer. I just renamed the apk to YouTube.apk, then did overwrite the old one and set the same permissions that were set in the original youtube app. I was able to log in, too.
Sent from my rooted X10i using XDA App
Edit: reinstall did solve the problem for now. Let's see if it'll last
Click to expand...
Click to collapse
sierratango88 said:
I also installed it successfully and it was running fine for a bit then suddenly now it is force closing a lot. I had to reboot the phone because it was stuck in a FC loop when I used the search function on the widget.
Wiping the data and resigning in seems to fix it. I guess there could be something wrong with account handling.
Click to expand...
Click to collapse
Did you guys sign in to your YouTube profile in the app? I know there is a problem being reported in the original thread related to signing in.
I did sign in, and it was worked fine initially, but now I'm seeing the same issue as you guys are reporting.

[THeme] ICS Blue [THEME][WIP]

Theme :
I come from a Development group called Team Whiskey, I primarily made Roms and Themes for Samsung phones before, but I know have the Atrix 2. Here is my first ICS based theme
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
IF anyone wants to install it and can follow brief instructions here you go:
( Sidenote - you need to have ADB installed, you can either install the full Android SDK or copy it from Super One Click)
In a command prompt you want to use:
1.) adb push framework-res.apk /sdcard
2.) adb push SystemUI.apk /sdcard
then
3.) adb shell
4.) su
5.) mount remount,rw /dev/null /system
6.) cp /sdcard/framework-res.apk /system/framework
7.) cp /sdcard/SystemUI.apk /system/app (the case is sensitive)
8.) rm /system/app/SystemUI.odex
9.) reboot
The SystemUI.apk has been deodexed. I have an almost working script for our CWM, so going forward, we can a simple install instead of the tedious manual stuff.
DOWNLOADs:
framework-res.apk
SystemUI.apk
Please enjoy, and if you have any questions, feel free to PM me. I am still working on our Extended Power menu and the Settings menu( which is the power widget like you see in the screen shot), if you want the unfinished Settings.apk please pm me for it. Like I said, it works flawlessly, but the icons are a little weird.
Future:
16 Lockscreens, I have 9 of them working.
Great to have you aboard! Some very nice work. What about notification toggles? How hard would they be to implement?
Not hard at all actually! You know what is funny about that, all of the Samsung roms have the toggles, and we spent days and days ripping them out to give us this look the motorola is going here ! I was planning on doing the same style as miui on that, you know the scrollable one. I will work on that after the lockscreens.
Awesome man. Looks perfect with my setup.
How did you remove at&t from the notification bar? I have tried finding strings.XML and can't..
Sent from my MB865 using Tapatalk
followed the above to the T. Got a Read only error. Changed RW to RO in the cmd prompt and then was able to successfully push SystemUI.apk to system/app. I did it before through root explorer the same way and it just kept force closing. Just rebooted and it all works now.
Thanks given for this!
Nopcodex90 said:
Theme :
I come from a Development group called Team Whiskey, I primarily made Roms and Themes for Samsung phones before, but I know have the Atrix 2. Here is my first ICS based theme
IF anyone wants to install it and can follow brief instructions here you go:
( Sidenote - you need to have ADB installed, you can either install the full Android SDK or copy it from Super One Click)
In a command prompt you want to use:
1.) adb push framework-res.apk /sdcard
2.) adb push SystemUI.apk /sdcard
then
3.) adb shell
4.) su
5.) mount remount,rw /dev/null /system
6.) cp /sdcard/framework-res.apk /system/framework
7.) cp /sdcard/SystemUI.apk /system/app (the case is sensitive)
8.) rm /system/app/SystemUI.odex
9.) reboot
The SystemUI.apk has been deodexed. I have an almost working script for our CWM, so going forward, we can a simple install instead of the tedious manual stuff.
DOWNLOADs:
framework-res.apk
SystemUI.apk
Please enjoy, and if you have any questions, feel free to PM me. I am still working on our Extended Power menu and the Settings menu( which is the power widget like you see in the screen shot), if you want the unfinished Settings.apk please pm me for it. Like I said, it works flawlessly, but the icons are a little weird.
Future:
16 Lockscreens, I have 9 of them working.
Click to expand...
Click to collapse
Looks great so far! Would you mind including detailed instructions for backing up the existing files as well? Don't mind doing things via ADB, but I'm far from being an expert.
armyengineer51 said:
Looks great so far! Would you mind including detailed instructions for backing up the existing files as well? Don't mind doing things via ADB, but I'm far from being an expert.
Click to expand...
Click to collapse
ADB pull /system/framework/framework-res.apk
ADB pull /system/app/SystemUI.apk
ADB pull /system/app/SystemUI.odex
anyone can post the original framework-res.apk, systemui.apk and systemUI.odex??
i accidentally replace mine by copy ICS blue theme into sd card.
For some reason I always have a grey circle with a plus in the middle of it on the top right of my status bar. What's with that? Other than that my only complain is the clear button when you pull down the status bar. Seems to have a little extra room in the box under the word clear.
Updates?
Sent from my mAtrix2!!
[ROM] PURITY v2.5 TPAX
So i tried to install this bionic rom.....and fail.....
This is for Atrix2 why would you try this on the Bionic? But I guess that is how we find out what works and what doesn't...carry on
athris said:
anyone can post the original framework-res.apk, systemui.apk and systemUI.odex??
i accidentally replace mine by copy ICS blue theme into sd card.
Click to expand...
Click to collapse
I got you. Unzip and push.
Corrected instructions for adb. Theme looks great btw, thanks.
In a command prompt you want to use:
1.) adb push framework-res.apk /mnt/sdcard
2.) adb push SystemUI.apk /mnt/sdcard
then
3.) adb shell
4.) su
5.) mount -o rw,remount /dev/null /system
6.) cp /sdcard/framework-res.apk /system/framework
7.) cp /sdcard/SystemUI.apk /system/app (the case is sensitive)
8.) rm /system/app/SystemUI.odex
9.) reboot
Click to expand...
Click to collapse
cootercommander said:
So i tried to install this bionic rom.....and fail.....
Click to expand...
Click to collapse
Did your phone soft-brick? Or did you try restoring a backup?
Since installing this I noticed I'm getting "phantom" icons in my notification bar, almost like a burn in on television. Tilt the phone to extreme angles to see them better, can anyone confirm?
unsivil_audio said:
Since installing this I noticed I'm getting "phantom" icons in my notification bar, almost like a burn in on television. Tilt the phone to extreme angles to see them better, can anyone confirm?
Click to expand...
Click to collapse
I am as well.
Me too but the disappear. Its kinda cool. I like it.
Sent from my mAtrix2!!
holeshot77 said:
Me too but the disappear. Its kinda cool. I like it.
Sent from my mAtrix2!!
Click to expand...
Click to collapse
Yea they do disappear. Seems like you'll get a new text message update or whatever, clear it from the status bar, it goes phantom, then disappears. Other than that I have a grey circle with a plus in the middle that's always at the right of my status bar.

[ UNOFFICIAL ][ CM10 ][ CMX ] BOOT ANIMATION (download) working [ 720P ]

It appears Cyanogenmod is using the CM9 boot animation for the official CM10 nightly builds. I'm sure there's some amazing artist somewhere working on a new animation for CM10, but in the mean time I just figured I'd make a CM10 animation for us to have. It's not really a huge deal, but I really anticipated CM10, being titled CMx as it seems a lot cooler. So I went with that idea when making this animation. Its just the stock animation with the 9 removed, and since I didn't have the project file they used, I couldnt manipulate layers, so I did what I could. It's cool i'm running it on my SGSIII CMx nightly.
HOW TO ADB:
1. first of all you have to make sure you have usb debugging turned on
and if your actually rocking cm9 or cm10 and want to use this, you have to "turn on root" too.. for apps and adb
thats in the develop options menu...
2. commands:
Code:
adb shell su -c "busybox mount -o remount,rw /system"
adb push cm_x_bootanimation.zip /sdcard/
adb shell su -c "dd if=/sdcard/cm_x_bootanimation.zip of=/system/media/bootanimation.zip"
adb reboot
HOW TO ROOT EXPLORER:
1. download it to phone
2. copy it and go to /system
3. mount system R/W (important)
4. copy it to /system/media/ "overwriting the current"
5. thats it
(((((( DOWNLOAD ))))))))))
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
halfcab123 said:
It appears Cyanogenmod is using the CM9 boot animation for the official CM10 nightly builds. I'm sure there's some amazing artist somewhere working on a new animation for CM10, but in the mean time I just figured I'd make a CM10 animation for us to have. It's not really a huge deal, but I really anticipated CM10, being titled CMx as it seems a lot cooler. So I went with that idea when making this animation. Its just the stock animation with the 9 removed, and since I didn't have the project file they used, I couldnt manipulate layers, so I did what I could. It's cool i'm running it on my SGSIII CMx nightly.
HOW TO ADB:
1. first of all you have to make sure you have usb debugging turned on
and if your actually rocking cm9 or cm10 and want to use this, you have to "turn on root" too.. for apps and adb
thats in the develop options menu...
2. commands:
Code:
adb shell su -c "busybox mount -o remount,rw /system"
adb push cm_x_bootanimation.zip /sdcard/
adb shell su -c "dd if=/sdcard/cm_x_bootanimation.zip of=/system/media/bootanimation.zip"
adb reboot
HOW TO ROOT EXPLORER:
1. download it to phone
2. copy it and go to /system
3. mount system R/W (important)
4. copy it to /system/media/ "overwriting the current"
5. thats it
(((((( DOWNLOAD ))))))))))
Click to expand...
Click to collapse
Or you could push this to /system/media. :what:
Sent from my SCH-I535 using xda premium
BlueCross said:
Or you could push this to /system/media. :what:
Sent from my SCH-I535 using xda premium
Click to expand...
Click to collapse
Yeah for some reason it wouldn't work, so it put it up like this so it works no matter what. I think you might have to be on a custom kernel or something for it to work, not sure if you knew, but CyanogenMod is getting more security oriented.. go figure.. no insecure boot either, otherwise to mount /system, i'd just of done, adb remount... oh well. But yeah if you have any insight on why pushing directly to system/media/ would get a permission failure thats easily fixable.. but i don't think it is without a kernel.
BlueCross said:
Or you could push this to /system/media. :what:
Sent from my SCH-I535 using xda premium
Click to expand...
Click to collapse
The attached file, that is....
Sent from my SCH-I535 using xda premium
tres sympa !
-------------------
Voyage Vietnam-Halong Jonque Hai Long-Jonque RV La Marguerite
Or us this one
http://db.tt/BgUkyBGb
Sent from my SCH-I535 using Tapatalk 2
umm......kool

Categories

Resources