Hi and good morning.
I have seen on the thread, "post your X10 screen" or something like that. And I have seen some that have a different WiFi icon, battery in right corner. How do I change that? Is it custom ROMs or what?
Thanks for all help.
Sent from my X10i using XDA App
Sikiduck said:
Thanks for all help.
Click to expand...
Click to collapse
Hi.
See the tutorial link in my signature, it's really quite easy to do.
Do I have to start with ADB for noobs: http://forum.xda-developers.com/showthread.php?t=532719 and install Droid Explorer?
And then "Three tutorials for modifying your x10 OS aesthetically" and then: "framework-res Icon Pack (Modding)"?
Thanks
EDIT: Im not getting a notification of Android ADB when i plug in my USB. I have tried to download USBdeview and see if there is HTC Android, but there is not.
I have a Xperia X10i phone and the only thing that is listed is "Sony Ericsson sa0101 ADB Interface Driver" and "Sony Eri Memory Stick USB Device".
When I uninstall ADB Interface driver nothing happens. Just freeze for a couple of seconds but thats it.
Whats wrong?
Can someone help me?
Sikiduck said:
Do I have to start with ADB for noobs: http://forum.xda-developers.com/showthread.php?t=532719 and install Droid Explorer?
Click to expand...
Click to collapse
nephron said:
Hello All!
After much frustration with setting up ADB i finally got it working. Everyone said its simple and takes minimal knowledge but when things dont work, nothing really worked. Anyways after 2 hours of research trying to get ADB to work i finally got it all working and wanted to share my knowledge to anyone else that needed help.
This Guide is for windows only. If you are using Mac OS X please go here: ADB For Dummies
If you are using Linux please go here: [HOW-TO]Set up Android SDK/ADB/Fastboot on Ubuntu Linux
Like My Guide(s)? Donate
--------------------------------------------------------------------------
Things you need:
Android SDK - Download
Winrar - Download (32bit) Download (64bit)
Windows PC
USB Cable
A Rooted HTC Dream (Google G1)
--------------------------------------------------------------------------
Setting up the Android SDK
Download the file from above
Unzip to your desktop
Take the "android-sdk-windows" folder and move it to the root of your hard drive (C:\)
Right click on My Computer and click properties
Select the Advanced Tab or Advanced System Setting (Vista/Windows 7)
Select Environment Variables...
Press New
For Variable Name type: adb
For Variable Value type: C:\android-sdk-windows\tools
Now,
1. Run SDK Manager.exe located in the android-sdk-windows folder
2. If it gives you an error go to settings and click on "Force http//....."
3. Select all options and let it download and install
If you cant get the setup to work, Download the USB-DRIVERS folder - HERE (Windows XP/Vista/Windows 7)
--------------------------------------------------------------------------
Preparing your phone for ADB
Go to Settings on your phone
Select Applications
Select Development
Make sure 'USB Debugging' is checked
--------------------------------------------------------------------------
Installing Drivers
Plug in your phone through USB and DO NOT MOUNT IT!!!!!
Your computer should see a new device and try to install Android 1.0 driver (If it doesnt, scroll down to the "Im not getting a notification of Android ADB when i plug in my USB" section)
Let it load
Once it cant find them select "Install drivers from my pc"
The drivers you need are in the Android SDK 1.5r2 folder (C:\android-sdk-windows\usb_driver)
Depending on your OS pick x86 or amd64
You ADB Android Device should now be installed! Good Job
For Android SDK 1.5r7+
1. Run SDK Manager.exe
2. If it gives you an error go to settings and click on "Force http//....."
3. Select all options and let it download and install
If you cant get the setup to work, Download the USB-DRIVERS folder - HERE (Windows XP/Vista/Windows 7)
--------------------------------------------------------------------------
Check if your phone is detected by ADB
Open up Command Prompt (Go to run, type in cmd, press enter)
Type in
Code:
cd C:\android-sdk-windows\tools === Press Enter
adb devices === You should see your device listed
adb shell === you should see # in the next line
Now you are all set to run adb commands
Note: for a list of commands type in 'adb' in cmd
CONGRATS YOU NOW HAVE ADB FULLY RUNNING!
Click to expand...
Click to collapse
Sikiduck said:
And then "Three tutorials for modifying your x10 OS aesthetically" and then: "framework-res Icon Pack (Modding)"?
Click to expand...
Click to collapse
It would be an idea to read the three tutorials yes and the packs are there for you to use when you've learned how to edit apks. If the adb driver is already installed I'm not sure why you're removing it, you need it to use adb.
Hi all, I need help pls, i try SDK Manager work but I hawe problem. I fallow thys steps http://forum.xda-developers.com/showthread.php?t=532719 all works great, SDK Manager update and download all data but when I conect x10 on usb computer auto install "Sony Ericsson sa0101 ADB Interface Driver" and not the "androidwinusb86.cat" what i need for SDK Manager recognise me x10. Haw I can pls ghet install the right usb driver tu SDK recognise me x10? I need sdk for run the ADB for run JIT on me phone. PLS help thys noob thx
Or if smebody hawe som simple gude how enable JIT on X10, I welkom them, thx
Edit: win 7 ultimate 32b
btw sorry shuld by in difrend post, how enable JIT on x10.
thx
any help pls?
A tutorial for how to get ADB and DroidExplorer up and running for your Rhodium in Windows Vista.
All this information exists in bits and pieces of posts throughout this (and other) forums, though I felt it would be helpful to compile it in one place.
If you’re running a different version of windows, the differences should generally be fairly minor. Please let me know if there’s any mistakes or modifications I should make here.
ADB refers to the Android Debug Bridge, a tool put out by google, which lets you access your android device via the USB connection for the purposes of debugging it. One particularly useful component is the ability to access your phone from your PC via a terminal window (similar to a command prompt). While not necessarily intended for this purpose, it may be used for a rudimentary level of USB access to transfer files to and from your device. It will NOT let you have any of the advanced functions that a native driver would.
Optional First Step: Download ADB from Google:
You may choose to install the SDK yourself, but this will be incorporated in your installation of DroidExplorer in step 4 if you don't already have the SDK installed.
ADB is part of the Android SDK (Software Development Kit), which you can download from:
http://developer.android.com/sdk/index.htmlInstall the most recent version for windows. For simplicity sake, I suggest you extract/install it to the root, so for example, to
C:\android-sdk-windows\
Optional:
To make your life easier, it’s a good idea to add the folder containing adb to your system environment path, so you can use adb from anywhere on your drive.
To do this, right click on My Computer, click ‘Advanced System Settings’, and then click on ‘Environment Variables’.
Choose one of the PATH variables (either for your user, or the system wide one), and add the path containing the adb.exe file. For example, if you extracted the sdk to the root of C drive as I had suggested, the path would be:
[blah blah, preceding path values] ;C:\android-sdk-windows\platform-tools\
Make sure you remember to have a semicolon preceding the path you’re adding, so windows knows it is separate from the previous entry.
Second Step: Remove previous drivers:
If you have tried to connect your phone (in android mode) to your PC, you may need to go to the device manager and remove the incorrectly-installed drivers.
Third Step: Install Drivers:
The key obstacle here is that there is no driver made by HTC (or others) specifically to connect the Rhodium in Android mode to a PC. While there may eventually one day be such a driver, we need to resort to a work-around.
Drivers Option #1:
A product called PDANet installs software on your android phone and your windows PC that then functions as a PC and device driver set. (The application has other intended uses, as you can read on their website, but these are secondary to our purpose).
Download and install the latest version of PDANet, on both your android Rhodium (via marketplace) and your PC (via the below link):
http://www.junefabrics.com/android/index.php
You will then need to follow the prompts to connect your phone, select the manufacturer (HTC), and the HTX XDA Driver will be installed. Windows security may require you to approve the installation, as the driver is unsigned. After installing, you will need to restart your computer before the drivers will work.
As part of the install, you will be asked to connect your RHOD phone to your computer via the USB cable. The new hardware wizard should pop up, and you should choose to install the driver automatically (given that you’ve previously placed the driver onto your system with PDANet – if you’ve managed to locate the specific driver file as I’ve heard rumors of, then browse to that file).
USB Debugging needs to be enabled on your device, which it is in the stock builds provided here (Settings->Applications->Development->USB debugging).
Drivers Option #2:
Install the HTC Sync Drivers - this has been described for Windows 7, although there are mixed reports as to the success. Information is in the below links:
http://forum.xda-developers.com/showpost.php?p=12705726&postcount=7
http://www.mydigitallife.info/workaround-for-htc-hero-sync-problem-in-windows-7/
Optional:
To check that your phone is working, type ‘adb devices’ into your command prompt. If you see your device, you’re good to go. (if you didn’t set the environment path to include the location of adb.exe, you’ll have to either cd to the directory first, or type
C:\android-sdk-windows\platform-tools\adb devices(if you installed the sdk elsewhere, then modify the expression appropriately
What can you do now? To see a list of commands you can use, simply type adb from the command prompt.
To use adb to send a file ‘picture.jpg’ to your sd card, in your command prompt, go to the location of the picture, and then type :
adb push picture.jpg /sdcard/to see the contents of /sdcard , type:
adb shell ls /sdcard/Read more about ADB here: http://developer.android.com/guide/developing/tools/adb.html
And for more details on setting up and using ADB, see this (the source for this workaround):
http://theunlockr.com/2009/10/06/how-to-set-up-adb-usb-drivers-for-android-devices/
--
Fourth Step: Install Droid Explorer
Now that this is working, you may appreciate an application called DroidExplorer, which gives you a GUI that lets you navigate your device in a manner similar to windows explorer. From here, you can copy, move and delete files, as well as install and uninstall applications.
Download and install DroidExplorer from here:
http://de.codeplex.com/
Startup DroidExplorer, and you’re finished. Do read up on ADB and DroidExplorer on their respective pages so that you know both what you can do as well as what you might inadvertently break by blindly playing with options.
As has been said frequently on this website, if you want safe, stick to the default ‘stable’ XDAndroid install for the Rhodium, and keep your windows mobile running as a backup. If you want more, know that you’ll have lots of learning to do, and potentially may loose all the data on your phone and need to spend hours learning and fixing it. You may even brick your phone (make it unusable and unsalvageable – make it about as valuable as a brick).
Helpful Links:
The wiki for ADB on XDAndroid:
http://xdandroid.com/wiki/FAQ#What_is_ADB_.2F_How-To_ADB
Original xda thread on getting USB to work on the rhodium:
http://forum.xda-developers.com/showthread.php?t=849718
If you have any additional comments/changes to suggest, please let me know, and I’ll modify this initial post.
Heh, I always meant to turn that "original XDA thread" into an ADB tutorial for Windows users... but I just never got around to it.
Thanks for putting this together - do you mind if I reference it in the FAQ?
Just skimmed over the how-to - perhaps you should mention that in lieu of the Android SDK, you can simply download Droid Explorer. It usually takes care of the nitty gritty stuff, but pdanet seems to fill in the gaps with driver issues...
I actually found the drivers we needed (XDA in Device Manager)
http://forum.xda-developers.com/showpost.php?p=12705726&postcount=7
AkumaX said:
I actually found the drivers we needed (XDA in Device Manager)
http://forum.xda-developers.com/showpost.php?p=12705726&postcount=7
Click to expand...
Click to collapse
Droid Explorer took care of all the drivers for me on Windows the first time. The second time, PDA.net took care of them for me. I had issues with a ton of different drivers the second time around; even tried wiping them from the system, etc... PDA.net was the only solution that worked for me, as you can see in the linked thread I started.
arrrghhh said:
Droid Explorer took care of all the drivers for me on Windows the first time. The second time, PDA.net took care of them for me. I had issues with a ton of different drivers the second time around; even tried wiping them from the system, etc... PDA.net was the only solution that worked for me, as you can see in the linked thread I started.
Click to expand...
Click to collapse
I installed Droid Explorer and was left w/ 3 (!) Drivers missing, CDC abstract control model ACM x 2, and XDA. After I installed the HTC Sync drivers, it found the driver for XDA and then that gave the ability to let Droid Explorer install the other two *shrugs*
AkumaX, which version of windows did you get the drivers working with? Had you previously tried to install other versions of drivers, or was this 'fresh'? I haven't tried this route (being happy with my PDANet drivers working) - would you say the instructions are good on: http://www.mydigitallife.info/workaround-for-htc-hero-sync-problem-in-windows-7/
arrrghhh, please go ahead and link to this post. I had included the SDK portion because I had mis-read the droidexplorer main page, where the author stated his intent to stop updating the SDK and default to the pre-installed SDK. I see now that he intends to link to the SDK, and thus facilitate its installation for the user. I'll update that in the first post.
slycker said:
AkumaX, which version of windows did you get the drivers working with? Had you previously tried to install other versions of drivers, or was this 'fresh'? I haven't tried this route (being happy with my PDANet drivers working) - would you say the instructions are good on: http://www.mydigitallife.info/workaround-for-htc-hero-sync-problem-in-windows-7/
arrrghhh, please go ahead and link to this post. I had included the SDK portion because I had mis-read the droidexplorer main page, where the author stated his intent to stop updating the SDK and default to the pre-installed SDK. I see now that he intends to link to the SDK, and thus facilitate its installation for the user. I'll update that in the first post.
Click to expand...
Click to collapse
I'm using Win7-64 bit, so I used those drivers. It was a fresh install, and I never even thought to use PDANet, my own searching stumbled upon that thread for the HTC Sync Drivers. It could be better that you install the HTC Sync Drivers before Droid Explorer, but I'd have to find another 'clean' system to try on
AkumaX said:
I'm using Win7-64 bit, so I used those drivers. It was a fresh install, and I never even thought to use PDANet, my own searching stumbled upon that thread for the HTC Sync Drivers. It could be better that you install the HTC Sync Drivers before Droid Explorer, but I'd have to find another 'clean' system to try on
Click to expand...
Click to collapse
That's what VirtualBox is for! lol.
yes i can install usb drivers thank you !
Hello could anyone please help me with rooting my zoostorm sl8 mini running ICS. I just don't know which rooting program to use and with one will work. I have search the web now for days and cant find anything.
Please Help!
Thanks:good:
Use the Qemu exploit
This can device can be rooted using DoomLords Xperia script. I have ported the script to linux as well for Ubuntu users,
The original script is here : http://forum.xda-developers.com/showthread.php?t=1601038
I haven't tested the Windows script, but I assume it will work as I haven't changed anything, the Linux script has been fully tested and I have successfully rooted the sl8 mini using it.
For Windows see below:
1) Download the attached zip file and Super1Click zip file ( http://download.cnet.com/SuperOneClick/3000-2094_4-75447027.html ).
2) Unzip the zip files into a new folders (you can use 7-zip for this : http://www.7-zip.org/)
3) Power on the Zoostorm Sl8 Mini and boot it normally.
4) Go into settings, developer options and tick USB debugging
5) Go to settings, security and tick Allow installtion of non-Market Apps
6) Connect the table to the PC with a USB cable.
7) When the new Hardware Found Wizard find the Android device and can't find a driver, select install from speficic location and browse to drivers folder under the folder you just unzipped the Super1click file to.
8) The driver should install from here and will show as an Acer Android device.
9) If Windows complains about the driver not being signed tell it to continue anyway.
10) Reboot the Windows PC if requested by the Hardware installation Wizard.
11) Discconect and replug the USB cable.
12) Open a windows command prompt
13) Navigate to the folder where the unzipped rootsl8mini.zip files are.
14) type runme.bat
15) Read the blurb on the screen and press any key to root your tablet.
16) The Sl8 mini will reboot several times, after it has reboot for the last time your sl8 mini will now be rooted.
For Linux (Ubuntu Precise Pangolin)
1) Install Android SDK, make sure the folder where adb is located is in your shell path variable. See link for Ubuntu instructions (http://www.liberiangeek.net/2012/07...-androidsdk-in-ubuntu-12-04-precise-pangolin/)
2) Download the attached rootsl8mini.zip file and unzip it into a folder.
3) Go into the folder where you unzipped the file and make the runme.bat.sh file executable. (Myhost:$ chmod 777 runme.bat.sh)
4) Power on the Zoostorm Sl8 Mini and boot it normally.
5) Go into settings, developer options and tick USB debugging
6) Go to settings, security and tick Allow installtion of non-Market Apps
7) Connect the tablet to the PC with the USB cable.
8) Execute the runme.bat.sh script (Myhost:$ ./runme.bat.sh)
9) Read the blurb on the screen and press any key to root your tablet.
10) The Sl8 mini will reboot several times, after it has reboot for the last time your sl8 mini will now be rooted.
Enjoy
Thank you, do I go to unzipped file using command prompt?
Thanks
I have tried to root the tablet and it wont install the drivers, it keeps saying that the file is corrupted or missing.
I'am running windows 8 64.
any suggestion's why it is doing this?
Many thanks :good:
I`m a noob to the Zoostorm. Are there any JB / CM10 ports for it?
Are they known as another name elsewhere in this forum?
Can anyone shed any light on this? Fantastic write-up by mikel by the way. Will test as soon as the mother-in-law gets hers for xmas from us!
Superb MIKEL543 i have done it, thank you so much, it took me a bit to figure it out but i managed to do it YAY..lol.
Now the problem is i cant watch and films from google play or flixster as it say that it cant because my Tablet is rooted .
i have tried everything and cant get it to work! :good:
easy way to root : http://zoostormsl8.blogspot.co.uk/2013/02/root-zoostorm-sl8-mini-3310-9506.html
download and update the zip
Bought this tablet as a gift for my father and assumed that connecting it to a usb keyboard would be straightforward (yeap android noob ) . My question is , is that even possible? Is there a custom rom that can be installed, I presume after rooting the device that enables usb host mode?
Hi all
decide to make a new thread for this after having a search in XDA but couldn't find. so i dont think this is a double post. if otherwise tell me then i will remove this
most of all i want to spread this to most people since its known fact that many people looking for this solution for long time including me until today
originally this was reported by @n70shan. so full credit has to go to him.
Things u need
=================
1. windows 8.1 installed pc of course . with flashtool and drivers installed.
2 little file called Take ownership
3 usb files form WIN 8
for x86 system
for x64 sysem
go to C > windows > System32 > drivers and copy and save usbhub.sys and usbport.sys in some location just in case if this didnt work for you. you can replace them back and have the PC going without any issue if something goes wrong . which is highly unlikely
install InstallTakeOwnership.reg from the take ownership zip.
go to C > windows > System32 > drivers
right click and select take ownership for the 2 usb files ( usbhub.sys and usbport.sys )
copy paste from the given usb files to your pc and replace the current
reboot
now you should have fastboot and flashmode without any issue in your Win 8.1
pls fell free to post if any issues. and help other members as u can
http://forum.xda-developers.com/showthread.php?t=2635830
FlashTool Xperia Driver Pack by DooMLoRD
Hello,
I have a rooted phone with Rom from Omega Droid v61.
My screen and digitizer are broken. I am trying to install [email protected] using this tutorial :
http://forum.xda-developers.com/showthread.php?t=2786395
I changed the system.prop to enable debugging.
How can I know if the debugging is on after that?
I am under recovery using adb tools to install and I am also trying to add the adbkey.pub from my computer to the adb_key of the phone. I go to the data folder of the phone but there is only a media folder in it: not a misc.
Where do I have to add the key then? I looked but can not find that...
Please advice. Thanks.