[Bootanimation] 11-04-2011 Tron Legacy with sound - Android Themes

Hi all
this is my first bootanimation ,hope you like it , it's just my first one ...i still need to upgrade my skills for making more professional bootanimations
Non-flashable
just do it manually using root explorer or adb
* unzip android_audio.rar * "Attachment"
PHP:
1: adb remount
2: adb push <bootanimation.zip path on c:\> <bootanimation path on your device>
3: adb push <android_audio.mp3 path on c:\> <bootanimation path on your device>
4: adb reboot
PHP:
Download Tron Legacy Bootanimation From Here
http://www.easy-share.com/1914628529/bootanimation.zip
Tron Legacy Bootanimation
http://www.youtube.com/watch?v=TDq2GhTCUU8

i really liked your bootanimation can you make bootanimations from other movies too like transformers

Tried this in my evo and the video is stretched and looks very bad. Anyway of fixing that
Extreme EVO, flashing is too much fun lol

Related

Change the Boot Screen in CM3.6.5

In Roger's ROM,I could change the boot Screen to the cute android logo animation by the instructions -
adb remount
adb push boot.gif /system/media
adb push boot.mp3 /system/media
But it could not work in CM3.6.5,nothing happened to the orignal boot screen.
How should I do now in CM3.6.5?
Thanks everybody!
Lol it's different because theres no boot.gif in cyanogen's ROM. Try this, I think it's what you want.
http://forum.xda-developers.com/showthread.php?t=467693&highlight=boot
So although I'm a veteran here at XDA, I must admit i'm a noob at the G1 ( was a pro at the WM smartphone) Is there a way to add a startup sound & or a shutdown sound for the phone. I'm using the dudes cupcake rom. If there is a way. are there a set of instructions to follow?
nemo.mole said:
In Roger's ROM,I could change the boot Screen to the cute android logo animation by the instructions -
adb remount
adb push boot.gif /system/media
adb push boot.mp3 /system/media
But it could not work in CM3.6.5,nothing happened to the orignal boot screen.
How should I do now in CM3.6.5?
Thanks everybody!
Click to expand...
Click to collapse
Cyan's mod uses the classic 2 part animation boot screen, with the green "shining" Android boot screen. This being, the Android lettering is a transparent .png, and the shining animation is a scrolling .gif that shines through it, thus getting that effect. In order to change the boot screen, you have to edit both of those and then use similar adb commands. They're both in a APK file though, which makes it a bit tricky.
This is indeed the correct link: http://forum.xda-developers.com/showthread.php?t=467693&highlight=boot

Bootscreens/Bootanimations by Synaptyc

I have made bunches of Bootanimations & Bootscreens in the past.
I will list them here.
Note: some are good ... some are bad.
But you can find anything I make in this thread.
What is the difference between bootscreen and bootanimation? (Both produce an animation upon boot.)
BOOTANIMATION
resides in the "/data/local/" or /system/media/" folder on your phone
is made up of individual picture files and strung together upon boot to make an animation
does not read any audio file therefore doesn't have sound upon boot
BOOTSCREEN
resides in the "/system/media/bootscreen/" folder on your phone
is made up of a animated GIF file and played as an animation upon boot.
plays an mp3 file to add audio to the animation (but only works on certain ROM's. I use them with xtrROM & xtrSENSE ROM's and have no issues. other ROM's may not support them)
NOTE: both should not be on your device at the same time, or it will only play the bootanimation and never the bootscreen
Helpful links
********************************************
Custom Boot Animation Gallery {No root Needed}
[HOW-TO]--Stock Bootscreen w/ Sound
Animations
********************************************
CLICK A PICTURE AND GO TO THAT ANIMATIONS POST
DroidX
Andy Colors
xtrROM & xtrSENSE
Andy Does
Sylock
Droid Eye
3D Plasma
Plasma RGB
Wait Circle
Unstable Core
Andy Colors V2
Loading System Check: Blue
Loading System Check: xtrROM & xtrSENSE
Andy Power Black and Colors
Loading Semicircles
B&W
portrait_________landscape
Red
...coming soon
Green
...coming soon
Blue
Pink
R2-D2 with sound!
Preview Bootanimation on phone while in Android!
1) Install GScript Lite from the app market
2) Create a script called "Bootanimation"
3) Make sure "Needs SU?" is checked
4) In the bottom field type:
Code:
TIMEOUT=20
( bootanimation & sleep $TIMEOUT; kill $! 2>/dev/null )
The TIMEOUT is in seconds and can be changed as you like.
*** this code was contributed by Arabia ***
5) Save the script
6) Click on the Bootanimation script you just created. Let the animation run all the way through until the script ends returning you to the GScript app.
7) Show off your bootanimation whenever you want =)
Helpful files
********************************************
Here are a few BATCH files I use to swap BootAnimations and BootScreens.
(you are responsible for backing up any animations you want to keep before running any of these batch files)
Just make a TEXT file and save it as "whatever.bat"
RemoveAnimations.bat
Code:
:: this batch file will remove ANY bootscreen or bootanimation on the device
:: ***make sure you backup any that you want to keep***
@echo on
path=C:\android-sdk-windows\tools
adb remount
adb shell rm /system/media/bootscreen/*.*
adb shell rm /system/media/bootanimation.zip
adb shell rm /data/local/bootanimation.zip
Preview.bat
Code:
:: connect your phone to your PC and select Charge Only or HTC Sync
:: This batch file will demo the bootscreen/bootanimation on your phone
@echo on
path=C:\Android-SDK-windows\tools
adb shell bootanimation
ADBWireless.bat
Code:
:: Sets the PATH for ADB and enables ADB Wireless. Launch the APK on the phone first.
@echo off
path=c:\android-sdk-windows\tools
adb connect 192.168.1.5:5555
BootanimationRemovePushPreview.bat
Code:
:: connect your phone to your PC and select Charge Only or HTC Sync or install "ADB Wireless".
@echo on
:: Sets the PATH for ADB.
path=C:\android-sdk-windows\tools
:: Enables "adbWireless". Launch the app on your phone first.
adb connect 192.168.1.5:5555
:: Remove ANY bootscreen or bootanimation on the device.
:: ***make sure you backup any that you want to keep***
adb remount
adb shell rm /system/media/bootscreen/*.*
adb shell rm /system/media/bootanimation.zip
adb shell rm /data/local/bootanimation.zip
:: Install the bootanimation on your phone and preview it.
adb push bootanimation.zip /data/local/
adb shell bootanimation
BootscreenRemovePushPreview.bat
Code:
:: connect your phone to your PC and select Charge Only or HTC Sync or install "ADB Wireless".
@echo on
:: Sets the PATH for ADB.
path=C:\android-sdk-windows\tools
:: Enables "adbWireless". Launch the app on your phone first.
adb connect 192.168.1.5:5555
:: Remove ANY bootscreen or bootanimation on the device.
:: ***make sure you backup any that you want to keep***
adb remount
adb shell rm /system/media/bootscreen/*.*
adb shell rm /system/media/bootanimation.zip
adb shell rm /data/local/bootanimation.zip
:: Copies the 5 bootscreen files to your phone and previews the bootscreen.
adb push .DS_Store /system/media/bootscreen
adb push boot1.gif /system/media/bootscreen
adb push boot2.gif /system/media/bootscreen
adb push droid.mp3 /system/media/bootscreen
adb push boot_animation.xml /system/media/bootscreen
adb shell bootanimation
Droid X Bootanimation
Resized to 320x480
Original
{
"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"
}
Original Inverted
Retro
Retro Inverted
OldPhoto
OldPhoto Inverted
Andy Colors
Andy Colors
bootanimation & bootscreen
Bootscreen/Bootanimation for xtrROM & xtrSENSE
This is an animation I made for the xtrROM & xtrSENSE roms
I made 2 versions of this one.
A BootAnimation and a BootScreen (with sound)
As always, the actual animation is sized for the Eris and much better quality and frame rate.
whoa.. these are nice ima try some
Andy Does
Andy Does
BootAnimation & BootScreen with the "Oh Yeah" sound from Ferris Bueller's Day Off
Sylock animations
Sylock bootanimations
The speed and graphics quality of the animated GIF's is very low compared to the animation on your phone.
They are much faster and prettier.
Sylock Red
Sylock Blue
I may add the DROID intro and sound to these.
Droid Eye
I saw this commercial for the Droid X and decided to rip it to a bootanimation.
Sized for our Droid Eris @ 480x320.
View this one in landscape.
Main ______________________________Loop
3D Plasma
*** 3D Plasma ***
Yep... break out your red and blue 3D glasses for this round
(again, the frame rate and quality are much better than these GIF's)
Blue on Red
Main_______________________Loop
Red on Blue
Main_______________________Loop
Plasma RGB
Plasma RGB
with or without sound
Wait Circle animation
Wait Circle animation
Very simple and small.
The default 'desc.txt' file is:
Code:
320 480 12
p 1 0 main
p 0 0 loop
These look great at half size also (like this):
Code:
160 240 12
p 1 0 main
p 0 0 loop
The frame rate looks best at 8, 12, or 16.
*** I also ported this to a BOOTSCREEN (all 3 versions are in one zip file) ***
New Animation
I came across this animation but it was for the Droid. Can you get it to work for the eris? also, can you format it to run vertically so that it takes up the whole screen? the file is included. thanks for the time.
Unstable Core
DroidEris1981 said:
I came across this animation but it was for the Droid. Can you get it to work for the eris? also, can you format it to run vertically so that it takes up the whole screen? the file is included. thanks for the time.
Click to expand...
Click to collapse
Here ya go!
Resized to 320x480
turned to landscape view
added "DROID" sound
(frame rate and image quality are much better)
Andy Colors V2
Andy Colors V2
bootanimation & bootscreen w/sound
how about this one?
http://www.youtube.com/watch?v=ZBuhqzseFN4&feature=related
Funnyface19 said:
how about this one?
http://www.youtube.com/watch?v=ZBuhqzseFN4&feature=related
Click to expand...
Click to collapse
LOVE IT!
I will convert this one later tonight or tomorrow morning for sure. Check back then.
Noob Q alert
Do we just flash in recovery?
TheDoctor1177 said:
Do we just flash in recovery?
Click to expand...
Click to collapse
no. all of mine are meant to be pushed VIA adb. Check the "helpful links" the first post in this thread for more education about bootanimations and bootscreens.
Thanks man! These boot screens are awesome!!
REALLY close to being done with the "LOADING SCREEN" bootanimation.
I have to take a break to pickup my daughter from school =)
Be back in a bit and I will upload the finished product.
Check back in a couple hours.

[THEMEING]with[GUIDES]and[MIRRORS] for TizenMod (updated 16/04/22)

ANYTHING YOU FLASH FROM HERE YOUR DOING SO AT YOUR OWN RISK
AND DOING SO VOIDS YOUR WARRANTY
I WILL TAKE NO RESPONSIBILITY FOR ANY ERRORS YOU MAY HAVE
SEE GUIDES POST BELOW FOR INFO ON FLASHING ANYTHING HERE
<<<< ALL DOWNLOADS AND ROM MIRRORS >>>>
<<<< NOW IN ONE PLACE,AT THE BOTTOM OF THIS POST >>>>
<<<< BROWSE INSIDE EACH LINK TO FIND WHAT YOU WANT >>>>
THEMEING
Icon Packs
icon packs (complete stock icons-for now)
TIZEN LOVE ICONS
Thanks to KASHORTIEXDA
{
"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"
}
GALAXY S5 ICONS
ROUNDED S5 ICONS
Thanks to KASHORTIEXDA
CYANOGENMOD ICONS
BLUE
THIN BLUE BLACK BG
BLUE TRANSPARENT BG
BLUE BLACK BG
THIN BLUE TRANSPARENT BG
]BLUE THIN BORDER
RED
THIN RED BLACK BG
RED BLACK BG
RED TRANSPARENT BG
THIN RED TRANSPARENT BG
RED EXPLOSION
RED THIN BORDER
GREYSCALE
IOS ICONS
thanks to ANDROID_2013
COLOUR
IOS ICONS
thanks to ANDROID_2013
SEE ATTACHMENTS BELOW FOR ICON PACKS
......................................................................................................................................
wallpapers
also available - individually or as wallpaper packs
CYAN converted wallpapers coming soon
more to come soon.......
tell me what you want and il make it happen.........
......................................................................................................................................
BOOT/SHUTDOWN ANIMATIONS
stock samsung
The Simpsons Intro
R2D2 boot
R2D2 shutdown
tizen mod android popping
android with tizen chest spinning
more coming soon
......................................................................................................................................
RINGTONES, NOTIFICATIONS,ALARMS, OTHER SOUNDS
GOOGLE EDITION SOUNDS
CM10.2 SOUNDS
IOS7 SOUNDS
HTC SENSE SOUNDS
......................................................................................................................................
FONTS
TIZEN SANS FONTS
22,385 .TTF FONTS
individually or zipped
......................................................................................................................................
DOWNLOADS AND MIRRORS
HERES THE LINK TO ALL AVAILABLE ROMS, SOUNDS, WALLPAPERS, FONTS BOOT AND SHUTDOWN ANIMATIONS AND ICON PACKS
be sure with roms you pick the correct rom, for the correct gear
downloads
gdrive
dropbox
IF YOU WANT YOUR WORK FEATURED HERE PM ME
.....................................................................................................................................​
WITH THANKS TO
GOOGLE
SAMSUNG
APPLE
HTC
THE CYANOGEN MOD TEAM
ANDROID_2013
SKIN1980
KASHORTIEXDA
GUIDES
FLASHING BOOT ANIMATIONS
first download your custom boot animation
place it on the root of your gears internal memory
then open sdb.exe , and run the following code
Code:
sdb root on
sdb shell mount -o remount rw /
sdb shell install-bootanimation.sh
sdb shell install-shutdownanimation.sh
sdb shell reboot watch
thats it done
FLASHING THEMES
To install these theme packs,open a command propmt naviagtated to sbd.exe, then in windows explorer copy all icons [unzipped, just the .png files] into the theme folder on your gear 2 internal disk, if you dont see it, the script "setup-folder.sh" below, will create it for you
run command
Code:
sdb root on
then
Code:
sdb shell
then if you havent already
Code:
setup-folder.sh
then,
Code:
install-theme.sh
then to complete type
Code:
reboot
CUSTOM SOUNDS
to install custom sounds follow these steps exactly
FIRST YOU MUST COPY CHOSEN SOUND FILES TO THE ROOT FOLDER WHERE YOUR COMMAND PROMPTING SDB.EXE
RINGTONES
Code:
sdb root on
Code:
sdb push (name_of_tone).ogg /opt/share/settings/Ringtones/
IF YOUR TONE NAME HAS SPACES USE "_" SEE BELOW
FOR EXAMPLE ;- sdb push Vega_tone.ogg /opt/share/settings/Ringtones
MUST USE CAPITALS WHERE THEY ARE
Code:
sdb shell reboot watch
DO NOT EXCEED 80MB
MAKE SURE IT LOOKS LIKE THIS
NOTIFICATIONS
FIRST YOU MUST COPY CHOSEN SOUND FILES TO THE ROOT FOLDER WHERE YOUR COMMAND PROMPTING SDB.EXE
Code:
sdb root on
Code:
sdb push "(name_of_tone).ogg" /opt/share/settings/Alerts/
IF YOUR TONE NAME HAS SPACES USE "_" SEE BELOW
FOR EXAMPLE ;- sdb push "Vega_tone.ogg" /opt/share/settings/Alerts/
MUST USE CAPITALS AND QUOTATION MARKS WHERE THEY ARE
Code:
sdb shell reboot watch
DO NOT EXCEED 80MB
MAKE SURE IT LOOKS LIKE THIS
thats it done
CUSTOM FONTS
FIRST YOU MUST COPY CHOSEN FONT FILES TO THE ROOT FOLDER WHERE YOUR COMMAND PROMPTING SDB.EXE
Code:
sdb root on
Code:
sdb push (name_of_font).ttf /usr/share/fonts/
IF YOUR FONT NAME HAS SPACES USE "_" SEE BELOW
FOR EXAMPLE ;- sdb push my_font.ttf /usr/share/fonts/
MUST USE CAPITALS WHERE THEY ARE
Code:
sdb shell reboot watch
MAKE SURE IT LOOKS LIKE THIS
then select chosen font on your gear 2 in display settings
CUSTOM ALARMS
To install custom alarms. First thing you must do is find your chosen sound and make it .ogg
Then make a copy of it in and convert to .wav format (do that fast and free here)
Then rename them both too
Ticktac.ogg
and
Ticktac.wav
Then you will need to turn on root and mount the system rw
With these commands
Code:
sdb shell root on
Code:
sdb shell "mount -o remount rw /"
Then either in tizen in sdk or sdb
remove the Ticktac.ogg and Ticktac.wav files from
opt/usr/share/settings/Alarms folder "with right click, remove"
Or
In sdb.exe using the pull commands
Code:
sdb pull /opt/share/settings/Alarms/Ticktac.ogg
Code:
sdb pull /opt/share/settings/Alarms/Ticktac.wav
Then reboot your watch with commands
Code:
sdb shell reboot watch
then copy Ticktac.ogg and Ticktac.wav to the gears internal disk folder "alarms"
then run sdb.exe again
Code:
sdb root on
Code:
sdb shell "mount -o remount rw /"
Code:
sdb shell install-alarms.sh
Code:
sdb shell reboot watch
disconnect your gear from your computer
and your done
MAKE SURE IT LOOKS LIKE THIS
CUSTOM BLUETOOTH DISCONNECT TONE
copy your desired tone, to the folder your sdb.exe is located
then rename it to "bt_disconnect.ogg"
then push it to "/usr/share/feedback/sound/operation/bt_disconnect.ogg"
like so
Code:
sdb push "C:\Users\Gav\Downloads\tizen\sdb\bt_disconnect.ogg" /usr/share/feedback/sound/operation/bt_disconnect.ogg
you will need to right click the file holding the shift key, and selecting copy as path for its location which i will highlight in bold below
sdb push "C:\Users\Gav\Downloads\tizen\sdb\bt_disconnect.ogg" /usr/share/feedback/sound/operation/bt_disconnect.ogg
(it should look like this)
then run code
Code:
sdb shell reboot watch
and its done
the sam can be done for reconnect tone, by renaming the file "bt_connect.ogg"​
Great work! I would love to see a theme with Galaxy S5 stock icons.
jamas79 said:
Great work! I would love to see a theme with Galaxy S5 stock icons.
Click to expand...
Click to collapse
would you, ok thats easy il get on that
Nice work!! I really want the CYANOGENMOD ICONS but the link is broken due to a lot of traffic Can you PM me the zip or give me a mirror please?
jason.T said:
Nice work!! I really want the CYANOGENMOD ICONS but the link is broken due to a lot of traffic Can you PM me the zip or give me a mirror please?
Click to expand...
Click to collapse
There you go http://forum.xda-developers.com/attachment.php?attachmentid=2897922&d=1408080556
Thanks for letting me know . Uh must have had a lot of traffic IL re duplicate everything on another 2 mirrors tomorrow morning
New links added and more being done as i type this
Updated op
new links added
op updated with custom alarm install guide
I added a ringtone to my gear 1.
the duration is 21 seconds and the size of 307 KB.
when I receive a call the ringtone starts after 7 seconds plays for 3 seconds stops for 2 seconds, plays for 3 seconds stops for 2 seconds etc.
where am I doing wrong?
can you help me?
Thanks in advance
md
What audio format is it in ? Is the audio corrupt ?
Try flashing it to your phone and seeing if it plays correctly then reflect to your watch into ring tones BTW not alerts
Well i reflash my gear 1 with [ROM] TizenMod 3.0 by Skin1980 i paired my note 3 without backup .
in sdb folder (shift right click open command here) : sdb root on then sdb shell then setup-folder.sh then reboot.
i downloaded GE Sounds then i put RobotsforEveryone.ogg in sdb folder then in sdb folder (shift right click open command here) :
sdb root on then sdb push RobotsforEveryone.ogg /opt/share/settings/Ringtones/ then sdb shell reboot watch....
All ok but if i set ringtone RobotsforEveryone.ogg when I receive a call the ringtone starts after 7 seconds plays for 3 seconds stops for 2 seconds, plays for 3 seconds stops for 2 seconds etc.
any suggestions? thanks
md
md70power said:
Well i reflash my gear 1 with [ROM] TizenMod 3.0 by Skin1980 i paired my note 3 without backup .
in sdb folder (shift right click open command here) : sdb root on then sdb shell then setup-folder.sh then reboot.
i downloaded GE Sounds then i put RobotsforEveryone.ogg in sdb folder then in sdb folder (shift right click open command here) :
sdb root on then sdb push RobotsforEveryone.ogg /opt/share/settings/Ringtones/ then sdb shell reboot watch....
All ok but if i set ringtone RobotsforEveryone.ogg when I receive a call the ringtone starts after 7 seconds plays for 3 seconds stops for 2 seconds, plays for 3 seconds stops for 2 seconds etc.
any suggestions? thanks
md
Click to expand...
Click to collapse
it does take a couplr of seconds to send to watch, but i cant explain the gaps, er....... are you sure the audio isnt corrupt, have you tried setting it on your phine to see if it plays flawlessy there
dumb question but if you set RobotsforEveryone.ogg (downloaded from yours GE SOUNDS) like ringtone in your watch, when you receive a call you hear it totally fine ? come on , 30 seconds without no stops?
What do you mean. 30 seconds no stops. Is that good or bad
Sent from my GT-I9305T using XDA Free mobile app
now ok ! i reflashed stock cnf1 then tizenmod 3.0
probably something is corrupt from stock rom and tizenmod upgrade cause i have overwritten everytime
thanks for support i appreciate it
md
new wall papers added
Any news on S5 theme?
Galaxy s5 icons added
more icon packs added

[THEMEING]with[GUIDES]and[MIRRORS] for TizenMod (updated 16/04/22)

ANYTHING YOU FLASH FROM HERE YOUR DOING SO AT YOUR OWN RISK
AND DOING SO VOIDS YOUR WARRANTY
I WILL TAKE NO RESPONSIBILITY FOR ANY ERRORS YOU MAY HAVE
SEE GUIDES POST BELOW FOR INFO ON FLASHING ANYTHING HERE
<<<< ALL DOWNLOADS AND ROM MIRRORS >>>>
<<<< NOW IN ONE PLACE,AT THE BOTTOM OF THIS POST >>>>
<<<< BROWSE INSIDE EACH LINK TO FIND WHAT YOU WANT >>>>
THEMEING
Icon Packs
icon packs (complete stock icons-for now)
TIZEN LOVE ICONS
Thanks to KASHORTIEXDA
{
"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"
}
GALAXY S5 ICONS
ROUNDED S5 ICONS
Thanks to KASHORTIEXDA
CYANOGENMOD ICONS
BLUE
THIN BLUE BLACK BG
BLUE TRANSPARENT BG
BLUE BLACK BG
THIN BLUE TRANSPARENT BG
]BLUE THIN BORDER
RED
THIN RED BLACK BG
RED BLACK BG
RED TRANSPARENT BG
THIN RED TRANSPARENT BG
RED EXPLOSION
RED THIN BORDER
GREYSCALE
IOS ICONS
thanks to ANDROID_2013
COLOUR
IOS ICONS
thanks to ANDROID_2013
SEE ATTACHMENTS BELOW FOR ICON PACKS
......................................................................................................................................
wallpapers
also available - individually or as wallpaper packs
CYAN converted wallpapers coming soon
more to come soon.......
tell me what you want and il make it happen.........
......................................................................................................................................
BOOT/SHUTDOWN ANIMATIONS
stock samsung
The Simpsons Intro
R2D2 boot
R2D2 shutdown
tizen mod android popping
android with tizen chest spinning
more coming soon
......................................................................................................................................
RINGTONES, NOTIFICATIONS,ALARMS, OTHER SOUNDS
GOOGLE EDITION SOUNDS
CM10.2 SOUNDS
IOS7 SOUNDS
HTC SENSE SOUNDS
......................................................................................................................................
FONTS
TIZEN SANS FONTS
22,385 .TTF FONTS
individually or zipped
......................................................................................................................................
DOWNLOADS AND MIRRORS
HERES THE LINK TO ALL AVAILABLE ROMS, SOUNDS, WALLPAPERS, FONTS BOOT AND SHUTDOWN ANIMATIONS AND ICON PACKS
be sure with roms you pick the correct rom, for the correct gear
downloads
gdrive
dropbox
IF YOU WANT YOUR WORK FEATURED HERE PM ME
.....................................................................................................................................​
WITH THANKS TO
GOOGLE
SAMSUNG
APPLE
HTC
THE CYANOGEN MOD TEAM
ANDROID_2013
SKIN1980
KASHORTIEXDA
GUIDES
FLASHING BOOT ANIMATIONS
first download your custom boot animation
place it on the root of your gears internal memory
then open sdb.exe , and run the following code
Code:
sdb root on
sdb shell mount -o remount rw /
sdb shell install-bootanimation.sh
sdb shell install-shutdownanimation.sh
sdb shell reboot watch
thats it done
FLASHING THEMES
To install these theme packs,open a command propmt naviagtated to sbd.exe, then in windows explorer copy all icons [unzipped, just the .png files] into the theme folder on your gear 2 internal disk, if you dont see it, the script "setup-folder.sh" below, will create it for you
run command
Code:
sdb root on
then
Code:
sdb shell
then if you havent already
Code:
setup-folder.sh
then,
Code:
install-theme.sh
then to complete type
Code:
reboot
CUSTOM SOUNDS
to install custom sounds follow these steps exactly
FIRST YOU MUST COPY CHOSEN SOUND FILES TO THE ROOT FOLDER WHERE YOUR COMMAND PROMPTING SDB.EXE
RINGTONES
Code:
sdb root on
Code:
sdb push (name_of_tone).ogg /opt/share/settings/Ringtones/
IF YOUR TONE NAME HAS SPACES USE "_" SEE BELOW
FOR EXAMPLE ;- sdb push Vega_tone.ogg /opt/share/settings/Ringtones
MUST USE CAPITALS WHERE THEY ARE
Code:
sdb shell reboot watch
DO NOT EXCEED 80MB
MAKE SURE IT LOOKS LIKE THIS
NOTIFICATIONS
FIRST YOU MUST COPY CHOSEN SOUND FILES TO THE ROOT FOLDER WHERE YOUR COMMAND PROMPTING SDB.EXE
Code:
sdb root on
Code:
sdb push "(name_of_tone).ogg" /opt/share/settings/Alerts/
IF YOUR TONE NAME HAS SPACES USE "_" SEE BELOW
FOR EXAMPLE ;- sdb push "Vega_tone.ogg" /opt/share/settings/Alerts/
MUST USE CAPITALS AND QUOTATION MARKS WHERE THEY ARE
Code:
sdb shell reboot watch
DO NOT EXCEED 80MB
MAKE SURE IT LOOKS LIKE THIS
thats it done
CUSTOM FONTS
FIRST YOU MUST COPY CHOSEN FONT FILES TO THE ROOT FOLDER WHERE YOUR COMMAND PROMPTING SDB.EXE
Code:
sdb root on
Code:
sdb push (name_of_font).ttf /usr/share/fonts/
IF YOUR FONT NAME HAS SPACES USE "_" SEE BELOW
FOR EXAMPLE ;- sdb push my_font.ttf /usr/share/fonts/
MUST USE CAPITALS WHERE THEY ARE
Code:
sdb shell reboot watch
MAKE SURE IT LOOKS LIKE THIS
then select chosen font on your gear 2 in display settings
CUSTOM ALARMS
To install custom alarms. First thing you must do is find your chosen sound and make it .ogg
Then make a copy of it in and convert to .wav format (do that fast and free here)
Then rename them both too
Ticktac.ogg
and
Ticktac.wav
Then you will need to turn on root and mount the system rw
With these commands
Code:
sdb shell root on
Code:
sdb shell "mount -o remount rw /"
Then either in tizen in sdk or sdb
remove the Ticktac.ogg and Ticktac.wav files from
opt/usr/share/settings/Alarms folder "with right click, remove"
Or
In sdb.exe using the pull commands
Code:
sdb pull /opt/share/settings/Alarms/Ticktac.ogg
Code:
sdb pull /opt/share/settings/Alarms/Ticktac.wav
Then reboot your watch with commands
Code:
sdb shell reboot watch
then copy Ticktac.ogg and Ticktac.wav to the gears internal disk folder "alarms"
then run sdb.exe again
Code:
sdb root on
Code:
sdb shell "mount -o remount rw /"
Code:
sdb shell install-alarms.sh
Code:
sdb shell reboot watch
disconnect your gear from your computer
and your done
MAKE SURE IT LOOKS LIKE THIS
CUSTOM BLUETOOTH DISCONNECT TONE
copy your desired tone, to the folder your sdb.exe is located
then rename it to "bt_disconnect.ogg"
then push it to "/usr/share/feedback/sound/operation/bt_disconnect.ogg"
like so
Code:
sdb push "C:\Users\Gav\Downloads\tizen\sdb\bt_disconnect.ogg" /usr/share/feedback/sound/operation/bt_disconnect.ogg
you will need to right click the file holding the shift key, and selecting copy as path for its location which i will highlight in bold below
sdb push "C:\Users\Gav\Downloads\tizen\sdb\bt_disconnect.ogg" /usr/share/feedback/sound/operation/bt_disconnect.ogg
(it should look like this)
then run code
Code:
sdb shell reboot watch
and its done
the same can be done for reconnect tone, by renaming the file "bt_connect.ogg"​
new wall papers added
Galaxy s5 icons added
more icon packs added
sq s5 icons fixed
Hi you
gav83collins said:
sq s5 icons fixed
Click to expand...
Click to collapse
Theme of you very nice, If I want to back theme my gear as before set up your theme, how can I do?, please show me?
theaminh81 said:
Theme of you very nice, If I want to back theme my gear as before set up your theme, how can I do?, please show me?
Click to expand...
Click to collapse
simply re flash the rom via odin
sdb link and other links updated
so I followed directions to the T and the theming wporked perfectly. As for the notification sounds not so much. Now when i go to settings, sounds, and click on notifications it just takes me back to the home screen.... any ideas sir @gav83collins
ragzz03 said:
so I followed directions to the T and the theming wporked perfectly. As for the notification sounds not so much. Now when i go to settings, sounds, and click on notifications it just takes me back to the home screen.... any ideas sir @gav83collins
Click to expand...
Click to collapse
oh, errrrr ??? thats a new one, i dont know, all i can suggest is re flashing the rom and trying again
gav83collins said:
oh, errrrr ??? thats a new one, i dont know, all i can suggest is re flashing the rom and trying again
Click to expand...
Click to collapse
OK... Is there a way to batch install the sounds. It took forever to push each one...
ragzz03 said:
OK... Is there a way to batch install the sounds. It took forever to push each one...
Click to expand...
Click to collapse
im afraid not, you will find the process quicker this time though, with experience comes speed
the fastest way, is to write the text in to a text editor like notepad, save it, then copy it all into sdb and press enter and it will do it all in 1 go, for example look at my next post
gav83collins said:
im afraid not, you will find the process quicker this time though, with experience comes speed
the fastest way, is to write the text in to a text editor like notepad, save it, then copy it all into sdb and press enter and it will do it all in 1 go, for example look at my next post
Click to expand...
Click to collapse
sdb.exe
sdb root on
sdb shell mount -o remount rw /
sdb push (name_of_tone).ogg /opt/share/settings/Ringtones/
sdb push "(name_of_tone).ogg" /opt/share/settings/Alerts/
sdb shell reboot watch
you could even do fonts and themes
sdb.exe
sdb root on
sdb shell mount -o remount rw /
sdb push (name_of_tone).ogg /opt/share/settings/Ringtones/
sdb push "(name_of_tone).ogg" /opt/share/settings/Alerts/
sdb push (name_of_font).ttf /usr/share/fonts/
sdb shell install-theme.sh
sdb shell reboot watch
gav83collins said:
im afraid not, you will find the process quicker this time though, with experience comes speed
Click to expand...
Click to collapse
You are wise kemosabe..
ragzz03 said:
You are wise kemosabe..
Click to expand...
Click to collapse
lol, dont forget to save the text file in notepad, and update it whenever you add things, then if you need to reflash the rom, its just a couple of clicks to do it all at once
gav83collins said:
lol, dont forget to save the text file in notepad, and update it whenever you add things, then if you need to reflash the rom, its just a couple of clicks to do it all at once
Click to expand...
Click to collapse
Sounds good to me.. I need to be faster as I do all my fiddling at work lol.. Thanks for everything
Custom bluetooth disconnect tone guide added
ragzz03 said:
Sounds good to me.. I need to be faster as I do all my fiddling at work lol.. Thanks for everything
Click to expand...
Click to collapse
http://forum.xda-developers.com/gea...io-guide-installing-mods-to-tizenmod-t2884142
there you go this will make it faster
Is there a way to go back to the stock icon theme after applying one?
Sent from my SAMSUNG-SM-G900A using XDA Free mobile app

[ADT-1] Casting

So I picked up a ADT-1 due to having Ethernet and more HD space on it. FOund out only certain apps can "cast" to it due to it being a dev device has there been anyone that figured out what needs to get it to have full casting features?
https://developer.android.com/tv/adt-1/index.html
Try changing ro.build.type to eng in build.prop, that should open up all apps.
/sub
let us know if this works
Confirmed this works!
HomerSp = worth his weight in gold.
Sorry
HomerSp said:
Try changing ro.build.type to eng in build.prop, that should open up all apps.
Click to expand...
Click to collapse
Sorry to sound like a newbie, however can someone teach me how to do this? I was trying to look it up on xda but had no luck finding anything. If anyone point me in the right direction, I would be very happy. Thank you again
Bboy_LeoGun said:
Sorry to sound like a newbie, however can someone teach me how to do this? I was trying to look it up on xda but had no luck finding anything. If anyone point me in the right direction, I would be very happy. Thank you again
Click to expand...
Click to collapse
1. Root
2. Open /system/build.prop
3. Change the line
4. Reboot
5. Enjoy.
I'm trying to do this but I'm being very unlucky. Not sure what's going wrong and any light on the matter will be greatly appreciated.
I changed the ro.build.type from `user` to `eng` and my device (on LPX13D) stops booting completely. All I see is the android logo and then blank screen. I already tried two times. The process I did is (from sudo on my Ubuntu 14 machine)
- adb pull /system/build.prop
- edit build.prop on `nano` on Ubuntu (change only that line)
- adb push build.prop /sdcard/
- adb shell
- su
- mount -o remount,rw /system
- mv /sdcard/build.prop /system/
the second time I adb pull /system/build.prop again just to check that the only thing changed was that, and it was fine.
The only thing I've been able to do to recover the system is to:
- install CWM from here https://forum.gtvhacker.com/adt-f52/topic1629.html (fastboot flash recovery <filename>)
- flash the image from here http://forum.xda-developers.com/har...t/adt1-stock-molly-images-unbricking-t2927888
- and then using the root from this post: https://plus.google.com/+Chainfire/posts/a5YshULM8hf to be able to "adb shell su"
any help? Maybe some bizarre permission on my ubuntu machine because I'm on "sudo shell" ?
Budius said:
I'm trying to do this but I'm being very unlucky. Not sure what's going wrong and any light on the matter will be greatly appreciated.
I changed the ro.build.type from `user` to `eng` and my device (on LPX13D) stops booting completely. All I see is the android logo and then blank screen. I already tried two times. The process I did is (from sudo on my Ubuntu 14 machine)
- adb pull /system/build.prop
- edit build.prop on `nano` on Ubuntu (change only that line)
- adb push build.prop /sdcard/
- adb shell
- su
- mount -o remount,rw /system
- mv /sdcard/build.prop /system/
the second time I adb pull /system/build.prop again just to check that the only thing changed was that, and it was fine.
The only thing I've been able to do to recover the system is to:
- install CWM from here https://forum.gtvhacker.com/adt-f52/topic1629.html (fastboot flash recovery <filename>)
- flash the image from here http://forum.xda-developers.com/har...t/adt1-stock-molly-images-unbricking-t2927888
- and then using the root from this post: https://plus.google.com/+Chainfire/posts/a5YshULM8hf to be able to "adb shell su"
any help? Maybe some bizarre permission on my ubuntu machine because I'm on "sudo shell" ?
Click to expand...
Click to collapse
build.prop has to be chmodded to 0644, or the device will not boot.
HomeSp I can't thank you enough!
That was exactly the issue. Third time is a charm.
So at the end of the procedure I:
- cd /system/
- mv build.prop build.prop.bak (just for the the sake of it)
- mv /sdcard/build.prop /system/
- chmod 0644 build.prop
- chown :root build.prop (prolly not needed but what-a-heck, why not)
- ls -l (and checked that both build.prop and build.prop.bak are exactly the same permission, owner and group)
- exit, exit adb reboot and all works great"
Thanks again!!!
Budius said:
- and then using the root from this post: https://plus.google.com/+Chainfire/posts/a5YshULM8hf to be able to "adb shell su"
Click to expand...
Click to collapse
For the purposes of modifying build.prop using "adb shell su", do you only have to flash the bootloader image from the linked post? I'd like to make the bare minimum changes so that future OTA's will install after restoring the original build.prop and flashing the stock bootloader.
jm9843 said:
For the purposes of modifying build.prop using "adb shell su", do you only have to flash the bootloader image from the linked post? I'd like to make the bare minimum changes so that future OTA's will install after restoring the original build.prop and flashing the stock bootloader.
Click to expand...
Click to collapse
my idea was a bare-minimum changes too. I just ended up ****ing up stuff and had to re-built a couple of times until I made it right.
but yeah, if you're comfortable with terminal commands and do the proper `chmod` (which I originally didn't), you can get everything done with "adb shell su" following like this:
- from PC: adb shell pull file to your PC
- from PC: edit file
- from PC: adb shell push file to /sdcard/
- from PC: adb shell
- from device shell: su
- from device shell/su: make /system/ writable, chmod file, rename "old" build.prop, copy new one over, double check chmod before rebooting.
ps.: the root from that post does install SuperUser.apk on the device, it's there on the UI, but after you do those changes there's some options in the .apk to remove root and uninstall it (if you want to)
I just thought that I'd directly use some build prop editor apk and do it easily but now my device is bricked :v
Stock ROM on download.
I'm just getting a black screen and bootloader.
So, the build.prop edit detailed in this thread works fine to make the ADT-1 a cast target for all Google Cast enabled apps. The problem is that it's hardly worth doing right now since Google Cast support on Android TV seems to be a work in progress. There's a support article that details third-party apps that are not supported - https://support.google.com/androidtv/answer/6123347
In addition to the apps listed there, I found that Watch ESPN isn't working on ADT-1 either. It's selectable in the app, but the video playback will not start. Here's to hoping that Google brings the Google Cast Receiver app for Android TV up to snuff soon - https://play.google.com/store/apps/details?id=com.google.android.apps.mediashell
jm9843 said:
So, the build.prop edit detailed in this thread works fine to make the ADT-1 a cast target for all Google Cast enabled apps. The problem is that it's hardly worth doing right now since Google Cast support on Android TV seems to be a work in progress. There's a support article that details third-party apps that are not supported - https://support.google.com/androidtv/answer/6123347
In addition to the apps listed there, I found that Watch ESPN isn't working on ADT-1 either. It's selectable in the app, but the video playback will not start. Here's to hoping that Google brings the Google Cast Receiver app for Android TV up to snuff soon - https://play.google.com/store/apps/details?id=com.google.android.apps.mediashell
Click to expand...
Click to collapse
Have any of you tried Slingplayer casting after changing build.prop?
Apple TV just died recently, it was the most reliable thing for Airplaying Slingplayer. Chromecast slingplayer kind of is ****ty at times.
Followed Budius' instructions and it worked perfectly.
adb pull /system/build.prop
----(edit build.prop on Notepad++ and changed ro.build.type=user to ro.build.type=eng)
adb push build.prop /sdcard/
adb shell
su
mount -o remount,rw /system
cd /system/
mv build.prop build.prop.bak
mv /sdcard/build.prop /system/
chmod 0644 build.prop
chown :root build.prop
ls -l
---(checked that both build.prop and build.prop.bak are exactly the same permission, owner, and group)
mount -o remount,ro /system
exit
exit
adb reboot
during the update from 5.0 -> 5.0.2 my ADT-1 stopped working again
It showed the little droid with the belly open and an error message
so that means here I went again to restore it, and this time I manage to streamline a bit the process, so let's share with you guys. Remember, my idea with this process is to have STOCK, but with Cast working from any app. I have no intention to root, or flash custom this or that. I want something that I can cast without issues and hopefully it will update the next update without problems.
first of all, the CWM link I posted before is giving malware warnings on Chrome so I found an alternative, and of course XDA is the source (see downloads).
so to factory restore ADT-1 to good working condition, was the same I said before:
- install CWM:
Code:
fastboot flash recovery cwm_molly_recovery_lpx13d.img
- install stock image. CWM->install zip-> from ADB:
Code:
adb sideload update-molly-Stock-LPV79-1.zip
- reboot and let auto-update run until the end.
now to enable cast to all apps with absolutely minimal modifications to the system (hopefully enabling future updates to run without issues)
- reboot ADT-1, holding the button, enter fastboot mode
- reboot to the CWM, but without installing it:
Code:
fastboot boot cwm_molly_recovery_lpx13d.img
- in CWM go to `mount n storage` -> mount /system
and carry on to do the build.prop modification from there, the trick is that I did not have to install a custom recovery and did not have to install super user. I made the modification directly via a RAM-only CWM and that's it. So below is just a copy of my previous post
Code:
> adb pull /system/build.prop /home/budius/build.prop
then change the build.prop on my computer and rename to new_build.prop.
And back to terminal
Code:
> adb push /home/budius/new_build.prop /system/new_build.prop
> adb shell
# cd system
# mv build.prop build.prop.bak
# mv new_build.prop build.prop
# chmod 0644 build.prop
And that's all! Full cast enabled to ADT-1 with the most absolutely minimal system changes I could come up with :victory: :highfive:
Downloads:
- here you'll find a very nice workin CWM.
- good working stock Android TV image for ADT-1
bonus:
while searching stuff I found this: https://plus.google.com/+AdamLawrence/posts/5Yr5vG7QJUq
I didn't try it but it seems useful, so the link is there.

Categories

Resources