HTC EVO 4G :: Main Version Is Older - Main Update Is Fail
Aug 7, 2010
I have htc evo 4G with sprint and this is the software information
droid 2.1-update1
baseband: 2.05.00
Kernel: 2.6.29
software number: 1.47
PRL version: 60667
and i've been trying to root this so i can use other application and wifi tether however everytime i tried i always get this error " MAIN FOLDER IS OLDER , MAIN UPDATE FAIL!"
I used unrevoked - does not work then i restore to factory setting THEN i tried simpleroot get message Main Folder is older, main update fail!. I also have tried to do Restart the PHONE and press the power button and hold the volume button up (but i have upload the PC36IMG.ZIP before i reboot) THIS does not work either get same message.
IF anyone can help me with this root and PM me your PAYPAL i willing to pay $10 to give me detail instruction (step by step how to get this root)
After rooter i need to know if possible to update somehow to get my FLASH working or it have to be update to droid 2.2 (if i update to 2.2 after rooted, will it lose all my rooted previously assuming its already successfully rooted)
View 4 Replies
Jul 31, 2010
Every root image I've tried fails. After checking it says "Main version is older, Update failed" what gives?
View 4 Replies
View Related
May 9, 2010
I try to make several connection in a class and update the multiple progressbar in the main screen. But I've got the following error trying to use thread in android : Code: 05-06 13:13:11.092: ERROR/ConnectionManager(22854): ERROR:Can't create handler inside thread that has not called Looper.prepare() Here is a small part of my code in the main Activity.
public class Act_Main extends ListActivity
{ private ConnectionManager cm;
public void onCreate(Bundle savedInstanceState)
{ super.onCreate(savedInstanceState);
// Set up the window layout
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.main);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title); }
public void startConnection() { ......
View 5 Replies
View Related
Oct 19, 2010
Curious to know the reason behind not allowing updating UI elements from background thread in Android. Will main thread does something more (probably interacting with framework) after updating the UI elements so that changes can be seen on the screen? Is it the same case with other GUI tool kits?
View 1 Replies
View Related
Mar 3, 2009
My purpose is very simple : each 1second, I want to redraw an object on different place on background. I do not know where my error on this code below. Here is my code:
public class My_View extends View{ private Bitmap mBackground_img;
private Drawable mMoveObject; private int mObjectw,mObjecth; private int Dx,Dy;
private Handler myHandler = new Handler(); private long lasttime;
public My_View(Context context,AttributeSet ats,int ds) {
super(context,ats,ds); init(context);
} public My_View(Context context,AttributeSet ats) { super(context,ats);
init(context); } public My_View(Context context) { super(context);
init(context); } public void change() { invalidate();
} private void init(Context context) {
Resources res = context.getResources();
mMoveObject = res.getDrawable (R.drawable.lander_firing);
mBackground_img = BitmapFactory.decodeResource(res, R.drawable.my_pic);
mObjectw = mMoveObject.getIntrinsicWidth();
mObjecth = mMoveObject.getIntrinsicHeight();
Dx = Dy = 0; lasttime = System.currentTimeMillis() + 1000;
Thread mthread = new Thread(null,doBackground,"Background");
mthread.start(); } private Runnable doBackground = new Runnable() {
public void run() { long now = System.currentTimeMillis();
if(lasttime < now ) { Dx = Dx + 10; Dy = Dy + 10;
lasttime = now + 1000; myHandler.post(change_view);
} } }; private Runnable change_view = new Runnable() {
public void run() { change();
} };
@Override public void onDraw(Canvas canvas) {
canvas.drawBitmap(mBackground_img,0 ,0 , null);
mMoveObject.setBounds(Dx, Dy, Dx+mObjectw, Dy+mObjecth);
mMoveObject.draw(canvas);
} }
View 7 Replies
View Related
May 27, 2010
I have a separate thread running to get data from the internet. After that, I would like to update the ListView in the main thread by calling adapter.notifyDataSetChanged(). But it does not work. Any workaround for that?
View 1 Replies
View Related
Aug 28, 2010
So I am running an older version IC3ROM (4+ months old). When I left, Froyo was a buzz word, and leak rooting was a dream rumored to never happen. Is it time to upgrade to something new? I can't really complain about IC3ROM, as with Launcher Pro, it has been great. I don't particularly like the idea of starting over, but if there's something out there worth it, I'd give it a go. Opinions? I don't really care about Verizon's interface as I always replace it with launcher pro, but performance and stability is #1 concern.
View 5 Replies
View Related
Aug 26, 2010
Does anybody have a link to get an older version of Dialer One? Is there a way that I can revert back to my previous version? I updated it to Version 1.2.6, and I must say the new changes are terrible. Facebook pictures no longer sync. 2.) Calling a number after dialing is more difficult as instead of having a fairly large area to click to call, you have to exactly touch the tiny phone logo, 3.) Before I could click the bar to change from contacts, recent calls, and favorites. Now I have to swipe to go between the three. The one positive with the new upgrade is the developer fixed a bug where the dialer would always crash if you attempted to add a missed call number to your contacts. Not that works fine. But losing the other three things are enough for me to want to go back.
View 3 Replies
View Related
Apr 30, 2010
It is pretty easy to install. If you've installed HTC Sync it may cause an Android Debug Bridge error. If thats the case then just open task manager and close the process that starts with FCY or something like that. Once you get past that it will ask you to plug in your phone and install the software.
View 8 Replies
View Related
May 4, 2009
Is there Any procedure to install the Older version .apk files in emulator
View 3 Replies
View Related
Feb 17, 2010
I'm trying to prevent the situation where an updated version of my app restores using a bundle written from a previous version of my app. In other words:
1) app v1 stops and calls onSaveInstanceState
2) app v1 saves the bundle
3) user goes to marketplace and updates the app to v2
4) user starts the v2 version of the app
5) v2 version calls onCreate passing the bundle with v1 data
Is that even possible? Do I need to worry about it?
View 2 Replies
View Related
Nov 16, 2010
I've been doing a bit of research, and it seems that Samsung Kies is not meant for (or supported) for North America. Apparently, the older versions of Kies could work on our Captivates and was available to download through Samsung's Europe site. However, the newer versions of Samsung Kies can apparently detect that we've got North American Captivates and will not connect. Anybody have links to the older versions? Doesn't proprietary-ness totally defeat the reason we bought androids in the first place?
View 9 Replies
View Related
Nov 7, 2010
if I set up a button in main.xml, I still need to actually create the button in my Activity, right? Like the XML just controls the look of the button, but you need to actually create a button by doing something like
private Button myButton; Just wanted to make sure I had this clear conceptually. You create an object in your class and then just tell Android to do something like myButton = (Button) findViewById(R.id.my_button);
View 2 Replies
View Related
Jul 7, 2009
I am attempting to do an IME and am wondering the best way to use the main dictionary for the suggestions to work? Using the User Dictionary is pretty straight forward, but I am not sure how to use the main dictionary. The System IME appears to use BinaryDictionary and a native method to do this? Can I piggy back on this or must I create my own implementation?
View 8 Replies
View Related
Mar 3, 2010
I am New to the android ,what is the difference between android sdk 1.5 and android sdk 2.0
View 3 Replies
View Related
Feb 7, 2014
I am trying to connect to a database, and I understand that it has to be outside of the main thread but i thought that this is what my code was doing...apparently not because i keep getting the error: android.os.NetworkOnMainThreadException.
package com.example.dbtesting;
import java.sql.*;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;
[code]....
View 1 Replies
View Related
Mar 2, 2009
I want to remove or hide an app from the main grid. Is it possible?
View 3 Replies
View Related
Nov 30, 2009
From digging around a bit, getAssets() is an inherited method from ContextWrapper. It returns an AssetManager, and using open() it can return an InputStream. What I'm attempting to do at this point, is use the GLSurfuceViewActivity, Cube and CubeRenderer to work and learn off of and read in vertex data from a binary file. I've already created the binary output by parsing a model obj file and added to the assets directory. My Shape class (modified from the Cube class) does not have access to calling getAssets() since it's not a subclass of Activity or ContextWrapper. Once I accepted that, I tried to think of the best way to read in the data (without storing it extra places) to the Shape class. What I did, and seems to be working okay, was modify the Shape and ShapeRenderer constructors to accept an AssetManger as a parameter.
View 3 Replies
View Related
Aug 30, 2009
All Do anybody know how to make the STK icon available in main menu. Now, I can't see the STK icon in main menu, even though the RIL has sent the message "RIL_UNSOL_STK_PROACTIVE_COMMAND" about SET UP MENU to upper App layer. And RIL also receive correct terminal response (RIL_ REQUEST _STK_SEND_TERMINAL_RESPONSE) from upper App layer.
View 2 Replies
View Related
Oct 5, 2010
Is there a way to manage application activities by hand, like this: user activating an application from menu, it does some initialization, then creates some activity (is it necessar y to declare all activities in the application manifest?), and listens to it's events. On some event application decides to close one activity and open another - so it contains all the application logic. Didn't found anything like this in examples, they all have all the logic in the activity classes. Maybe I need to user Services? (Maybe I don't understand right, what an activity represents. For me it's like window in windows, or Displayable in j2me) I'm very new to android development, trying to understand the basics.
View 4 Replies
View Related
Jul 21, 2010
Are the UI threads for each Activity and Service in an app separate threads, or is there actually 1 underlying UI thread per app that processes the UI message queue for each Activity and Service?
View 2 Replies
View Related
Jul 5, 2010
Im running Pete's virgin deodexed version with Chevy's Low voltage kernel. I have the main setcpu profile set to 900 mhz on the minimum and maximum side, with the performance governor. That works fine and I also have profiles enabled. The profiles work great too. The problem is that when switching from a custom profile back to the main profile, the governor ALWAYS sets to ondemand, and then I have to manually set it to performance where it stays until another profile becomes effective.
View 4 Replies
View Related
Apr 29, 2010
When you get past the security and are on the main Sense UI screen, does it sometimes move to the screen to the left or right of whatever the main screen is on its own? If so anyone know how to cure this problem? I've only seen it occur when on the main screen but no where else.
View 3 Replies
View Related
May 28, 2010
I have a Imageview in main.xml, how to set the bitmap the to the imageView in main.xml i can assign bitmap to the local image view in the below code...
View 1 Replies
View Related
Dec 7, 2009
Is there a basic guide to the main differences between versions of the Android OS?I am using a 1.6 Magic, am buying a 1.5 T-Mobile Pulse for my son and looking at a 1.6 Hero for myself early next year. I wanted to see what the differences were between 1.5 -> 1.6 -> 2.0.I assume that I have to wait for network operators to provide updated operating systems? Can the Pulse be upgraded at all? Is the Hero getting/got version 2.0?
View 2 Replies
View Related
Apr 6, 2010
I'm new at Android world, and i have a doubt, is there any method that give me the name of the id's i create in main.xml?
For example i have this:
main.xml
<TextView android:id="@+id/text1"
android:layout_width="70px"
android:layout_height="70px"
android:text="Google"
/>
<TextView android:id="@+id/text2"
android:layout_width="70px"
android:layout_height="70px"
android:text="As"
/>
And what i want is the id name from the two TextView, is there any method that i can use in my class .java that give me for this example the id? In this case i want the (text1 and text2).
View 2 Replies
View Related
Dec 22, 2009
What is the main use of relative layout?
View 3 Replies
View Related
Sep 29, 2010
I have 4 buttons in a horizontal linear layout. I'd like the right edge of the 4th button to align with the right edge of the linear layout (equal to screen width) I've tried using android:layout_gravity="right" but it doesn't work - the right button is to the right of the 3rd one but not right aligned . Am I missing something obvious?
main.xml with only the relevant layout params only is:
CODE:....
This doesn't seem to match the stated behaviour for layout_gravity in the SDK reference :"Defines how to place the view, both its x- and y-axis, within its parent view group."
View 1 Replies
View Related
Nov 16, 2010
How do I have an app return to the 'Home' screen when the user is on a different class and they click the back/return button on their phone?
View 2 Replies
View Related
Aug 10, 2010
What are the main differences between 2.1 and Froyo? And also what are some of your favorite froyo ROMs out there?
View 8 Replies
View Related