please some body tell me
how can i install any program in my magic
i can put source file into external memory
but can't find any explorer to fine this source file and install it
how can i do?
3 options:
1) Use the market to load a file manager that has the install feature. These will let you browse your sdcard and install apk files from there. Astro is a very popular file manager.
2) Install via adb and your pc.
3) Install via a terminal app using Linux commands.
Install program into my Magic
bjtheone said:
3 options:
1) Use the market to load a file manager that has the install feature. These will let you browse your sdcard and install apk files from there. Astro is a very popular file manager.
2) Install via adb and your pc.
3) Install via a terminal app using Linux commands.
Click to expand...
Click to collapse
I have downloaded the Astro apk file onto my Notebook. How do I install via adb and my pc?
Android is really great, but there a few points of Android ownership that are a bit of a pain... one of which is installing APKs on your device. Enter installAPK!
What it does
installAPK is currently for Windows only. After installation on your machine, you can double click APK files to install them on your USB attached android device. Simple as that!
{
"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"
}
Where do I get it?
Download the install EXE here - Setup.installAPK.EXE ( 785.37K )
If you are prompted for USB drivers when you connect your device, you can get those here - usbdriver.zip ( 3.14MB )
source: android.modaco.com​
glazeus said:
Android is really great, but there a few points of Android ownership that are a bit of a pain... one of which is installing APKs on your device. Enter installAPK!
What it does
installAPK is currently for Windows only. After installation on your machine, you can double click APK files to install them on your USB attached android device. Simple as that!
Where do I get it?
Download the install EXE here - Setup.installAPK.EXE ( 785.37K )
If you are prompted for USB drivers when you connect your device, you can get those here - usbdriver.zip ( 3.14MB )
source: android.modaco.com​
Click to expand...
Click to collapse
Many thx glazeus for your post and the downloads links. Will do as posted by you.
you are welcome!
glazeus said:
you are welcome!
Click to expand...
Click to collapse
Hi glazeus,
I downloaded the usbdriver.zip file. I unzipped this file and extracted the wdfCoInstaller01......file into my Magic SD card. When I clicked on this file. it says "Windows cannot open this file", eh? What am I to do?
if none of the above works
just download eoe app installer from the market. whack the apk files onto your sd card (doesn't matter where) and when you run eoe it'll bring them up in a list.
long click > install
Re: Install programs into my Magic
Alphabet Soap said:
just download eoe app installer from the market. whack the apk files onto your sd card (doesn't matter where) and when you run eoe it'll bring them up in a list.
long click > install
Click to expand...
Click to collapse
Sigh......... my Magic cannot access Android Market as it landed with the perfect SPL HBOOT-1.7.0007 (SAPP10000).
Anyway, many thx for showing me the way.
mout2u said:
I downloaded the usbdriver.zip file. I unzipped this file and extracted the wdfCoInstaller01......
Click to expand...
Click to collapse
Have you download and installed Setup.installAPK.EXE on your PC?
mout2u said:
..file into my Magic SD card.
Click to expand...
Click to collapse
you shouldn't do this, just doubl click on your PC
mout2u said:
When I clicked on this file. it says "Windows cannot open this file", eh? What am I to do?
Click to expand...
Click to collapse
Did you try to open *.apk file?
Install programs into my Magic
glazeus said:
Have you download and installed Setup.installAPK.EXE on your PC?
Yes I have.
you shouldn't do this, just doubl click on your PC
You mean that I should unzip the USB Driver zip file on my laptop? Which file shld I double click?
Did you try to open *.apk file?
Click to expand...
Click to collapse
Where is this file found?
Sorry if my response does not make sense cause I am a noob. Please guide me.
Many thx glazeus
look screenshot on my answer (post #4)
--
P.S: I can't create links "To prevent spam to the forums, new users are not permitted to post outside links in their messages. All new user accounts will be verified by moderators before this restriction is removed."
Install programs into my Magic
glazeus said:
look screenshot on my answer (post #4)
--
P.S: I can't create links "To prevent spam to the forums, new users are not permitted to post outside links in their messages. All new user accounts will be verified by moderators before this restriction is removed."
Click to expand...
Click to collapse
I had referred back to your post #4. Will try to re-do the steps.
Thx galzeus.
In your P.S, maybe you can send me a PM?
Related
I did some searching but didn't find anything.
Is there a way to bulk install applications if you have all the apks for those applications?
Mr17 said:
I did some searching but didn't find anything.
Is there a way to bulk install applications if you have all the apks for those applications?
Click to expand...
Click to collapse
Emm haven't tried it but it should work.
You could use wildcards.
So let's say you have a bunch of .apk's all in one folder, you could use adb to install them on your phone using this syntax:
Code:
adb install folder/*.apk
This should install all files ending with .apk in the folder
sweet, I'll give that a try and let you know how it works. Would make testing different roms alot easier.
Do you think this would bypass the market? If it did notification of updates would not work. hmm, ill have to test.
Mr17 said:
Do you think this would bypass the market? If it did notification of updates would not work. hmm, ill have to test.
Click to expand...
Click to collapse
use atrackdog
Create a batch script with:
Code:
for %%f in ("C:\path\to\apks\*.apk") do adb install "%%f"
The easiest way (imo) if you are rooted:
1. Put all the apks into a folder structure \data\app
2. Create a text file with the following and rename it update-script (with no extension) then put it into a folder structure \META-INF\com\google\android
Code:
show_progress 0.5 0
copy_dir PACKAGE:data DATA:
show_progress 0.5 10
3. Zip both folder structures into a zip file (you should have folders data and META-INF at the root of the zip).
4. Sign it with signapk and you're done
Whenever you want to bulk reinstall, just put the signed zip file into your sdcard and reboot into recovery. When you want to add or remove apks from the bulk installer, just drag it into your zip file and resign.
Or you can backup all your apps into one folder on your sdcard and run this in terminal:
Code:
su
cd sdcard/apps
busybox install *.apk /data/app
I might add this feature into my ADB File Explorer app
I've added a basic feature to install apps into my ADB file explorer, it can do one off apk's or bulk install from a directory. See my sig for more details.
wow, that was fast! thanks!
jashsu said:
The easiest way (imo) if you are rooted:
1. Put all the apks into a folder structure \data\app
2. Create a text file with the following and rename it update-script (with no extension) then put it into a folder structure \META-INF\com\google\android
Code:
show_progress 0.5 0
copy_dir PACKAGE:data DATA:
show_progress 0.5 10
3. Zip both folder structures into a zip file (you should have folders data and META-INF at the root of the zip).
4. Sign it with signapk and you're done
Whenever you want to bulk reinstall, just put the signed zip file into your sdcard and reboot into recovery. When you want to add or remove apks from the bulk installer, just drag it into your zip file and resign.
Click to expand...
Click to collapse
Thank you for this. This will come in handy a LOT next ROM flashes :]
Seems so easy looking back on it, not sure why I didn't think of it earlier. I may even just edit the rom files to include my installed apps if I need to wipe.
someone made an app for the computer if you have the .apks you just plug in your phone double click the apk and run it and itll install on to your phone, try looking for that.
Bavilo said:
Emm haven't tried it but it should work.
You could use wildcards.
So let's say you have a bunch of .apk's all in one folder, you could use adb to install them on your phone using this syntax:
Code:
adb install folder/*.apk
This should install all files ending with .apk in the folder
Click to expand...
Click to collapse
I just wiped my phone completely clean and reflashed to Cyanogen 3.6.1.
When I try this method, it gives me an error that I don't have enough space. Again, this is after a *complete* wipe.
Screenshots:
{
"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"
}
-----
I'm not sure whether it's using the 5 MB free or the 42 MB space, but Any Cut is 32 kb, so that's a non-issue.
Any ideas on why it's not working?
Paul22000 said:
I just wiped my phone completely clean and reflashed to Cyanogen 3.6.1.
When I try this method, it gives me an error that I don't have enough space. Again, this is after a *complete* wipe.
Screenshots:
-----
I'm not sure whether it's using the 5 MB free or the 42 MB space, but Any Cut is 32 kb, so that's a non-issue.
Any ideas on why it's not working?
Click to expand...
Click to collapse
Do you have your sdcard partitoned to fat32 as the first one and then ext2(3) as your next partition?
PlatinumMOTO said:
Do you have your sdcard partitoned to fat32 as the first one and then ext2(3) as your next partition?
Click to expand...
Click to collapse
I don't think so. If there is an ext2 or ext3 partition, I didn't set it up.
By the way, I got InstallAPK, which lets you double click on APKs on your PC and install them to phone immediately.
http://forum.xda-developers.com/showthread.php?t=521295
It worked just fine at installing all my apps after the wipe.
Minus the fact that I had to double click on an app, wait for it to install, double click the next, wait for it to install, double click.... ad nauseum.........
I'm still interested in finding out why the method I posted in the screenshots isn't working.
Has anyone actually gotten it to work?
We're getting off topic but this is what you need to do in all likelihood you're gonna have to reflash Cy 3.6.1 again but before you do you're gonna need to setup your sdcard like this:
you can use either Paragon Partition Manager (above) Gparted, or SDSplit but you should set it up like the picture to run apps to sd and to fully get the Cy experience
PlatinumMOTO said:
We're getting off topic but this is what you need to do in all likelihood you're gonna have to reflash Cy 3.6.1 again but before you do you're gonna need to setup your sdcard like this:
you can use either Paragon Partition Manager (above) Gparted, or SDSplit but you should set it up like the picture to run apps to sd and to fully get the Cy experience
Click to expand...
Click to collapse
I'm not trying to do apps to sd though.
All I want to do is run "adb install apk".
well how many apps are you trying to install?
PlatinumMOTO said:
well how many apps are you trying to install?
Click to expand...
Click to collapse
29 apps
Which is why I'd like to get a quick adb install *.apk, 1 command and done.
Here is the ported music app from the MIUI Rom. The installation is very simple.
1. Download the zip file and extract the apk file from it.
2. Copy the apk file to /system/app folder and you are done.
Download here
Flashable zip Here Thanks to schizopunk
{
"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"
}
Installing now, will report back. Thanks for this!
LoL @ justin beiber in the screenshots
looks pretty sweet ill check it out...plus i hate you, Mr. 4g haha just joking :]
Does anyone know if you get the controls in the notification menu like the current one in Froyo?
no controls in the notification menu...
Since this doesn't have any controls in the notification bar, does it have a widget or are there any controls for the lock screen?
youngnick09 said:
Since this doesn't have any controls in the notification bar, does it have a widget or are there any controls for the lock screen?
Click to expand...
Click to collapse
There is a widget, (Back, Play, Next buttons)
ok, thanks
Can anyone help me out with Step 2:
2. Copy the apk file to /system/app folder and you are done.
Do I need a certain program or app to do this?
youngnick09 said:
Can anyone help me out with Step 2:
2. Copy the apk file to /system/app folder and you are done.
Do I need a certain program or app to do this?
Click to expand...
Click to collapse
Use any file manager like astro or root explorer. You can also use adb to push it to /system/app folder.
Goto market and download a file manager.
Sent from my SPH-D700 using Tapatalk
I installed multiple file explorers and everytime I try to move the file into the the system/app folder, I keep getting an error saying I do not have enough permission. Any help?
Works really good. Thanks for posting.
youngnick09 said:
I installed multiple file explorers and everytime I try to move the file into the the system/app folder, I keep getting an error saying I do not have enough permission. Any help?
Click to expand...
Click to collapse
Use adb to do the job.
Code:
adb push /path/to/downloaded/apk/MiuiMusic.apk /system/app
Or buy "Root Explorer" from the market
JGeZau said:
Works really good. Thanks for posting.
Use adb to do the job.
Code:
adb push /path/to/downloaded/apk/MiuiMusic.apk /system/app
Or buy "Root Explorer" from the market
Click to expand...
Click to collapse
Sorry, but I'm a nub, so you gotta explain to me how I use adb ha. Is it an app or is it a command?
youngnick09 said:
Sorry, but I'm a nub, so you gotta explain to me how I use adb ha. Is it an app or is it a command?
Click to expand...
Click to collapse
Lets start with the basics to see where you stand...
1. Are you rooted?
2. Goto market and download "Astro File Manager".
answer the first question if its yes then goto step 2. Let me know when done with step 2.
Sent from my SPH-D700 using Tapatalk
does is only come in purple, havet installed yet, and wont until tonite. Just wanna kno
Nice app kinda like DoubleTwist player,doubletwist have few more options though.
Yes, i am both rooted and have astro
youngnick09 said:
Yes, i am both rooted and have astro
Click to expand...
Click to collapse
Ok connect your phone with usb to your computer turn on mass storage copy the apk file not the zip file to the root of your sd card.
Disconnect the phone from the computer open astro copy or move the apk file from the root of your sd card to /system/app folder and you are done.
Sent from my SPH-D700 using Tapatalk
SideKick2 said:
Ok connect your phone with usb to your computer turn on mass storage copy the apk file not the zip file to the root of your sd card.
Disconnect the phone from the computer open astro copy or move the apk file from the root of your sd card to /system/app folder and you are done.
Sent from my SPH-D700 using Tapatalk
Click to expand...
Click to collapse
Right, I've already tried this from the beginning and each file manager I use, including astro does not allow me to move the music player file into the system/app folder.
youngnick09 said:
Right, I've already tried this from the beginning and each file manager I use, including astro does not allow me to move the music player file into the system/app folder.
Click to expand...
Click to collapse
Follow this guide up to Step 3.
After you have ADB working, then type the following
Code:
adb push /path/to/downloaded/apk/MiuiMusic.apk /system/app
Remember to use the correct path to 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"
}
LGNPST 1.3 Developer Edition For XDA
*DO NOT HOST/LINK/REPOST/OR ANYTHING ELSE OUT SIDE OF XDA* WITH OUT MY PERMISSION
[Questions]
Q.) Where is the Right Click Register ?
A.) I recompiled it into the installer, it will automatically install when installing LGNPST
Q.) Is the Right Click Register any different then the one I already have ?
Q.) I don't see the Register DLL in my right click menu.
A.) Most likely the right click register that you got/download/received originally came from me in the first place, this version is newer and updated. This version will install a new menu and ONLY register on dlls that can be registered, it does not show in your right click menu the whole time like the old version. It will only show when right clicking on a valid Active X dll or OCX file.
Q.) Should I remove the old LGNPST ?
A.) Yes remove all old version of LGNPST.
Q.) Can I upgrade my phone that use a .tot with this?
A.) Yes you can, VERY EASILY. You must first change the menu. To do this click (Tool) at the top menu. Click (Show Only Old UI). You will notice the upgrade tab will switch from asking for a .CAB file to a .BIN file. Just click on the little folder icon and change the FILE TYPE to .TOT, then select your .TOT file. No need for having to do any hacks or *.* or using the WRONG method to update the device.
Download Here
[Reserved] Also I don't know why It posted in the General section, maybe a mod will be so kind to move the thread to the development section.
Downloaded twice.
WinRAR message - Unexpected end of archive.
Thanks, Mark
Update your Winarar
Thank You for this thread.
7-Zip = no errors
Gracias.
7 zip would not open. Winzip would not open. Downloaded to phone. Would not open. Downloaded a second time to my phone and worked perfect. Very strange! Might be my internet connection.
Thanks for posting this!
I need help!!!! I think I soft/hard bricked my phone. I'm not sure since I can only get into Download mode. I have the .bin file and LGNPST v 1.3 and after all is in the right place and I hit start I get the ERROR: Unable loading Port Component. What does that mean??? Any help will be greatly appreciated. Thanks in advance.
I just had to pick this old phone and use it again and need to return to stock. It's been a really long time since I played with this phone. I can't find any instructions on using this (LGNPST 1.3) I have already deleted my old version. Are there files I need to download or does this version have everything needed included in it? Any help is very much appreciated.
jcutter347 said:
I just had to pick this old phone and use it again and need to return to stock. It's been a really long time since I played with this phone. I can't find any instructions on using this (LGNPST 1.3) I have already deleted my old version. Are there files I need to download or does this version have everything needed included in it? Any help is very much appreciated.
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=1337386
This contains all the .TOT files you need and instructions. Latest and recommended version is V9.
Good luck!
dbeauch said:
http://forum.xda-developers.com/showthread.php?t=1337386
This contains all the .TOT files you need and instructions. Latest and recommended version is V9.
Good luck!
Click to expand...
Click to collapse
Thank you for your help!!!!!!! Greatly appreciated:good:
How to install a new dll?
I need to install a dll for my Lg Optimus 4x Hd. Lg p880
xavierleonelbr said:
I need to install a dll for my Lg Optimus 4x Hd. Lg p880
Click to expand...
Click to collapse
did you figure out how to do this?
12manytimes said:
did you figure out how to do this?
Click to expand...
Click to collapse
No. What about you?
Sent from my MZ601 using xda premium
xavierleonelbr said:
No. What about you?
Sent from my MZ601 using xda premium
Click to expand...
Click to collapse
lol no I have sum1 else helping me with it so hopefully i have an answer soon..i know its possible
I have done everything with the .bin files and everything but when I click DLL file, it only takes me to LGNPST_Utility2.dll and I can not go anywhere else with it. Can someone help me?
TaviRawr said:
I have done everything with the .bin files and everything but when I click DLL file, it only takes me to LGNPST_Utility2.dll and I can not go anywhere else with it. Can someone help me?
Click to expand...
Click to collapse
You're not actually looking for a .bin file, TaviRawr...
When you get to that point where it asks you to select a .bin file, the windows open dialog box should open up.
Navigate to the folder where you have the .tot file downloaded...
In the box for file name, type *.tot and hit enter.
Now you should have a listing of the .tot file you downloaded. Click it and hit ok.
Then you should be able to flash your phone to stock.
rybussell said:
You're not actually looking for a .bin file, TaviRawr...
When you get to that point where it asks you to select a .bin file, the windows open dialog box should open up.
Navigate to the folder where you have the .tot file downloaded...
In the box for file name, type *.tot and hit enter.
Now you should have a listing of the .tot file you downloaded. Click it and hit ok.
Then you should be able to flash your phone to stock.
Click to expand...
Click to collapse
I locate the .bin file just fine. So do I even need the .dll file? I am trying to follow the walk through exactly.
This is the guide I am using
http://www.lg-phones.org/how-to-return-sprint-lg-optimus-g-back-to-stock.html
TaviRawr said:
I locate the .bin file just fine. So do I even need the .dll file? I am trying to follow the walk through exactly.
This is the guide I am using
http://www.lg-phones.org/how-to-return-sprint-lg-optimus-g-back-to-stock.html
Click to expand...
Click to collapse
I'm surprised that the directions don't suggest the Models folder...
Try this...
Go to wherever you have the LGNPST application installed.. For me, it was C:\LG Electronics\LGNPST
Make sure the program is currently closed...
You should have a list of folders and files, such as Components 4.0 and stuff like that ...
Right click and create a new folder and name it Models
Wherever your .dll fild is, the lgnpst_ms970.dll or whatever it's called is, copy it into the Models folder you just created..
Then, assuming you're using Windows Vista/7/8, navigate back up to the LGNPST folder and right click LGNPST.exe (it might say LGNPST if you have extensions hidden for known file types), and run as Administrator...
Now, when you plug your phone in, make sure it is set to Internet Connection and Debugging is on.
The program should automatically detect your phone and the .DLL model...
I'll link to a video (sorry, no audio yet) that gives you a visual briefly.
http://www.mediafire.com/?g3iccvdvmk0kvdc
It's about 85 mb...
Let me know if you have any other questions if this doesn't help.
I will try this and tell you what happens. Thank you.
---------- Post added at 06:44 PM ---------- Previous post was at 06:30 PM ----------
Do I still need to register the .dll by going into command prompt and running as admin and typing....I can't remember.
Hi,
I made a few bootanimation.zip for Jellytime i'd like to share.
{
"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"
}
Download link
Click to expand...
Click to collapse
Preview :
Download link
Click to expand...
Click to collapse
Preview :
Download link
Click to expand...
Click to collapse
Preview :
Download link
Click to expand...
Click to collapse
Preview :
Download link
Click to expand...
Click to collapse
Preview :
Download link
Click to expand...
Click to collapse
Preview :
Download link
Click to expand...
Click to collapse
---------------------------------------------------------------------------------------------------------------------------------------------------------------
HOW TO INSTALL (3 methodes) ?
File browser method (Rooted devices only):
Connect your phone to your computer via USB and mount the storage card for file transfer.
Copy the bootanimation.zip file that you want to install, to your SD card.
Unmount USB storage and launch the file browser of your choice on your phone.
Browse to /system/media, copy the existing bootanimation.zip file from there and paste it somewhere safe on your SD card.
Browse to the location on the SD card where you copied the new bootanimation.zip and copy it.
Browse to/system/media and paste the bootanimation.zip file there to override the default system boot animation without replacing it.
OR
Browse to /system/media and paste the bootanimation.zip file there.
If you are using Super Manager, you will have to enable its root function first from the settings. Furthermore, you may need to mount the /system partition as read-write first too upon entering it.
ADB method:
Enable USB debugging on your device in Settings > Applications > Development.
Connect your device to the computer via USB.
Launch a command prompt/terminal window on your computer.
Navigate to the location where you have the bootanimation.zip file saved.
Enter these commands need root) :
Code:
adb remount
adb push bootanimation.zip /system/media/
Boot Animation Factory (the easiest way) :
download and read how to from this post :
http://forum.xda-developers.com/showthread.php?t=1678540
Whichever method you used, you should now have the new boot animation successfully installed on your device. Simply restart it and you should see it running upon boot.
---------------------------------------------------------------------------------------------------------------------------------------------------------------
Enjoy!
Pretty cool animations. FYI yours pics do not show up.
Thanks, I am sporting the first one and have already today gotten more than one :good: from friend at work.
New one in OP...
DaD92 said:
New one in OP...
Click to expand...
Click to collapse
I think im going for the new one. Good work!:good:
New one in OP....
enjoy!
You need to STOP with all the Jelly Time bootanimations!
I downloaded and installed the first because it was so cool.
Then you come out with a second one, had to choose, stayed with first.
Then Randomblame uses your second one in B9.1.
Now there are just to many good ones to choose from.
Really though, great work. Keep it up.
smetzger68 said:
You need to STOP with all the Jelly Time bootanimations!
I downloaded and installed the first because it was so cool.
Then you come out with a second one, had to choose, stayed with first.
Then Randomblame uses your second one in B9.1.
Now there are just to many good ones to choose from.
Really though, great work. Keep it up.
Click to expand...
Click to collapse
try the last one, it is pretty cool (many details you don't see in the preview), you nwill enjoy it
All are very good looking.
I do not know if it would be possible but, if you could create a way to have the system randomly pick one each time it booted, now that would be Awesome.
And then I would not have to choose...
I don't know if it's possible neither... you should ask a dev (I'm not)... I thing it's a little too much work...
It's this something I flash or overwrite in a folder somewhere? A bit new to HTC thanks
Sent from my Inspire 4G using xda app-developers app
bit1 said:
It's this something I flash or overwrite in a folder somewhere? A bit new to HTC thanks
Sent from my Inspire 4G using xda app-developers app
Click to expand...
Click to collapse
don't flash, push it to system/media.
you can do that as following (3 methodes) :
File browser method (Rooted devices only):
Connect your phone to your computer via USB and mount the storage card for file transfer.
Copy the bootanimation.zip file that you want to install, to your SD card.
Unmount USB storage and launch the file browser of your choice on your phone.
Browse to /system/media, copy the existing bootanimation.zip file from there and paste it somewhere safe on your SD card.
Browse to the location on the SD card where you copied the new bootanimation.zip and copy it.
Browse to/system/media and paste the bootanimation.zip file there to override the default system boot animation without replacing it.
OR
Browse to /system/media and paste the bootanimation.zip file there.
If you are using Super Manager, you will have to enable its root function first from the settings. Furthermore, you may need to mount the /system partition as read-write first too upon entering it.
ADB method:
Enable USB debugging on your device in Settings > Applications > Development.
Connect your device to the computer via USB.
Launch a command prompt/terminal window on your computer.
Navigate to the location where you have the bootanimation.zip file saved.
Enter these commands need root) :
Code:
adb remount
adb push bootanimation.zip /system/media/
Boot Animation Factory (the easiest way) :
download and read how to from this post :
http://forum.xda-developers.com/showthread.php?t=1678540
Whichever method you used, you should now have the new boot animation successfully installed on your device. Simply restart it and you should see it running upon boot.
Enjoy!
I haven't seen one in a while, but have you thought about a boot-down animation?? Just a thought.
I tried boot down animation, but I wasn't able to see it. I'll try again
New one in the OP...
Enjoy!
Can't sleep...so...
New one in the OP!
Enjoy!
There is a small typo in there... Text should be "developed" and not "developped" with 2 P's
thanks, I'll will correct that.
really nice work mate!
xdazulu said:
really nice work mate!
Click to expand...
Click to collapse
thanks!
I made some LOGOs.bin for our Moto Maxx, I believe this will work on Droid Turbo and X Style, but I can't confirm without the device in my hands. (resolution=1440 x 2560) Try at your own risk.
INSTALL MODE: Install Drivers in your PC, enable USB debugging (or load bootloader), download and run *.exe of your choose .
{
"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"
}
DOWNLOAD
DOWNLOAD
DOWNLOAD
DOWNLOAD
DOWNLOAD
DOWNLOAD
DOWNLOAD
DOWNLOAD
DOWNLOAD
DOWNLOAD
DOWNLOAD
DOWNLOAD
DOWNLOAD
DOWNLOAD
DOWNLOAD
DOWNLOAD
DOWNLOAD
DOWNLOAD
DOWNLOAD
DOWNLOAD
DOWNLOAD
Alternative: ARQUIVOS .BIN
ENJOY!
Equipe Maxximizar
These are awesome. I'm flashing one on my phone this morning. Thanks
Any chance of u making a flash able zip
Sent from my DROID Turbo using Tapatalk
PILLMUZIK3600 said:
Any chance of u making a flash able zip
Sent from my DROID Turbo using Tapatalk
Click to expand...
Click to collapse
Not Any time soon, I'll travel tomorrow. By the way I tryed before to put this logo.bin in another flashable.zip with no luck. Can you try?
Sent from my Moto MAXX using XDA-Developers mobile app
"Sorry, the file you have requested does not exist." None of the "DOWNLOAD" links I tried are working. And the alternate at the bottom of the OP gives a 404. Two different browsers, same results.
do these links work for anyone?
rayjr13 said:
do these links work for anyone?
Click to expand...
Click to collapse
These do.
ADB flashable:
https://forum.xda-developers.com/showpost.php?p=68538894&postcount=2
TWRP flashable:
https://forum.xda-developers.com/showpost.php?p=68579272&postcount=5
ChazzMatt said:
These do.
ADB flashable:
https://forum.xda-developers.com/showpost.php?p=68538894&postcount=2
TWRP flashable:
https://forum.xda-developers.com/showpost.php?p=68579272&postcount=5
Click to expand...
Click to collapse
That's awesome...but do these links work for anyone?
rayjr13 said:
That's awesome...but do these links work for anyone?
Click to expand...
Click to collapse
IF you are referring to the links in post #1, I just tried the last 2 working from the bottom up and YES the links caused a file to download to my PC from a Google Drive. But using my PC web browser, they seem to be downloading as .exe files, which makes no sense.
You can't run .exe files on an Android, and why would you need Windows .exe files for an Android boot logo on a PC? An EXE file is to INSTALL something on a PC. I scanned with Malwarebytes and there was no threat detected.
I took a peak at one using 7-Zip and Resource Hacker. Using 7-Zip, I found it is a compressed file that contains: ADB, mfastboot, AdbWinUsbApi.dll, AdbWinApi.dll, a logo.bin file, a copy of the image in JPG format, an icon file, and a command file to automate the process of flashing from Windows and open the website www.maxximizar.vai.la (redirects to maxximizar.wordpress.com) in your default browser when done. Using Resource Hacker I found it is a self-extracting archive made using WinRAR using a custom icon, so that's why it's an .exe instead of .zip, .rar, etc.
hitokage004 said:
I took a peak at one using 7-Zip and Resource Hacker. Using 7-Zip, I found it is a compressed file that contains: ADB, mfastboot, AdbWinUsbApi.dll, AdbWinApi.dll, a logo.bin file, a copy of the image in JPG format, an icon file, and a command file to automate the process of flashing from Windows and open the website www.maxximizar.vai.la (redirects to maxximizar.wordpress.com) in your default browser when done. Using Resource Hacker I found it is a self-extracting archive made using WinRAR using a custom icon, so that's why it's an .exe instead of .zip, .rar, etc.
Click to expand...
Click to collapse
@hitokage004, you've been very helpful in a lot of threads. Thank you!
ChazzMatt said:
IF you are referring to the links in post #1, I just tried the last 2 working from the bottom up and YES the links caused a file to download to my PC from a Google Drive. But using my PC web browser, they seem to be downloading as .exe files, which makes no sense.
You can't run .exe files on an Android, and why would you need Windows .exe files for an Android boot logo on a PC? An EXE file is to INSTALL something on a PC. I scanned with Malwarebytes and there was no threat detected.
Click to expand...
Click to collapse
I made those EXE files because it's easier to flash logo trough fastboot commands and those EXE ia an automated way to do it on your computer. I linked the .bin files if anyone wants to do it backuping/restoring the right partition from Android terminal or third app..