Android :: Can I Use OS From Another Carriers Phone?
Oct 24, 2010Much like a launcher app, I was wondering if it were possible to steal the phone specific is from another phone. And if so, could it be from a carrier different than my own?

Much like a launcher app, I was wondering if it were possible to steal the phone specific is from another phone. And if so, could it be from a carrier different than my own?
My friend said that his carrier was tracking all his internet history.
Do any carriers do this.
I need to target apps for a specific carrier. Any tips on how to do this? I've seen <uses-library> for market filtering, but looking for something else.
View 3 Replies View RelatedI read here: http://www.androidguys.com/2009/10/11/developers-can-now-target-by-carrier-in-android-market/ that it can be done if you go to the Android Market, and go to your app, then go to Publishing Options -> Locations, but I don't see anything to select a specific carrier there, only specific countries. Is this something that Google changed? Can this still be done, or is it done automatically? Can't the carrier be detected from the device?
View 1 Replies View Related"It's not limited to Android devices, but it seems that increasingly Android more than other platforms is shipping with the worst mobile bloatware. It's a bad trend that's going to lead to consumer backlash and it's destroying the credibility of Google's Android vision."
Entelligence: Will carriers destroy the Android vision? - Engadget
IT'S NOT LIKE GMAIL. EXISTING USERS DON'T HAVE AN INVITE OPTION, ONLY GOOGLE CAN INVITE YOU.
I wanted to talk with other Google Voice users about how they are using Google Voice with their Android. I am pretty new to both the concept of a single number and especially how I might use it with Android.
Please use this thread to post questions about how to use the android app and the overall app. Again, we can't hand out invites, only Google can.
I'm about to dump ATT/IPhone for Sprint/Android (EVO), but one thing has been nagging me and I want to make sure I know my options before jumping (e.g. given these 2 yr contracts).My concern is with ongoing support for my phone after purchase, support in terms of receiving the latest/greatest updates to the Android platform (e.g. within hardware constraints). Who ultimately controls whether a phone gets a release (e.g. Carrier or Manufacturer)?It seems to me the best bet is to go with the Nexus One platform given that is under the control of Google and should be well supported in that respect. However, it seems like it is going to be a hassle and/or costly to go with Nexus One using Sprint. Is there anyway around paying full price for Nexus One and using Sprint as a carrier? Any chance Google has a deal with the carriers to subsidize phones?Plus, I would prefer not to have the blot (e.g. UI modifications, app replacements, etc) added to the phone by Carriers and/or Manufactures (e.g. prefer Android as perceived by Google). Wondering who has the control of UI modifications. Does the Carrier contract with the Manufacturer and have control over what is added and how it is supported (e.g. whether a phone gets a new Android release, etc)? Or does the Manufacturer have the control?And lastly, say I get the EVO and on down the line someone (Manufacturer or Carrier) decides no more updates for the EVO. It sounds like I should be able to root the phone and continue with updates. Without support from Carrier/Manufacturer of course, but is it against the Carriers rules to root a phone?
Also, when rooting a phone, I'm assuming you can not take a release straight from Google and install it. Rather, someone has to implement the release for the target hardware (e.g. build, add any necessary drivers, etc). Are there any gotchas in doing this? Who is the most reliable supplier of these builds? I know that is a pretty broad question and I'll plan on doing additional research in that areas, but if anybody can give me a nudge or share their experience, that would be great.
Does anyone know a list of countries and carriers where phones with the Android OS can be bought?
I searched for a while for this now but haven't found anything...
I realize it isn't ideal to run / jog with such an expensive cellphone, but I recently misplaced my Creative Zen media player and I'll probably try using my EVO. Has anyone tried this out yet, or can recommend good cases or carriers for use while running?
View 49 Replies View RelatedI can't find any solid guides explaining how to do this. I am trying to get a rezound on to boost mobile, but I'd like to learn how to do it for any phone (specifically Android phones).
SPH-L710
Does the 4.4 update remove the carriers restrictions on the Google wallet? Specifically can you use the nfc payment. I read that the carriers restricted the nfc payment feature on Google wallet for "supposed security reasons" and that the 4.4 update is supposed to fix this.
View 1 Replies View RelatedHow can I find out carrier's name in Android?
View 2 Replies View Relatedi'm looking for a way to make phonecalls with my computer+Logitech G230, through my android device (Jiayu G4 Advanced)
The Remotecall app in Playstore still requires me to pick up my phone in order to actually hear something..
its got all the other features i'd like to use: answer calls from my PC, make calls from pc (from , for example, the outlook contactlist), call Log capability; but i have to pick up my phone when i probably can just hear it through my headphone (connected to PC)
I think i should be looking for some sort of voip server on my phone and let my computer act as voip client, but i'm not entirely sure about that.
I have samsung android phone which can be used as wifi hotspot. My question is can I use my laptop internet on android phone by connection laptop to android phone hotspot as phone is unable to connect adhoc network.
View 1 Replies View RelatedI would like to make some phone calls that do NOT appear on my Verizon phone bill. I have a DINC and want to call a cell phone. Both ends are in the US. I don't mind paying a service such as Skype. Is there a way to make this happen?
View 11 Replies View RelatedCan I bypass the phone log page that appears after all phone calls? I'd much rather finish talking and be back at my home page without pressing the home key.
View 2 Replies View RelatedI have a question for those in the know. I am interested in purchasing an android-capable phone in the near future..I really like what it offers. My brother has a G1 (Mobile USA), which has piqued my interest in the Android platform. My question is: Is the app store synced with every kind of Android-capable phone, or just that specific phone? If I was to buy a HTC Magic, would it use the same app store as the G1? AFAIK, some other major platforms, such as Symbian do not sync, and it's 'every phone for itself', but I was thinking that Android was more synergic.
View 1 Replies View RelatedI want to write game for Android and I need to use inside AI phone slope in some way ( in degree or any other measure). Can anybody tell me how to do that(link or code sample) ?
View 1 Replies View Relatedim new to android programming ...here is my problem:
i need to create an android app(for user) that have a login function to login to computer to retrieve some data (eg get data from a excel file) by using WIFI. How do i do that?
e.g Login: newbi123
----After login-----
i will get the data on my login id(newbi123) from the computer to my android app and display:
e.g
Name: newbi123
Gender: F
Age: 20
etc...
When I use the following code in Android 1.6 it displaying both phone numbers and contacts but when I use Android 2.2 it does not display phone numbers, it only displays names. String columns[] = new String[] { People.NAME, People.NUMBER, People._ID };
int tocols[] = new int[] {android.R.id.text1, android.R.id.text2};
Cursor c = managedQuery(People.CONTENT_URI, columns, null, null, null);
SimpleCursorAdapter sca = new SimpleCursorAdapter(this,
android.R.layout.simple_list_item_2, c, columns, tocols);
setListAdapter(sca);
I have my HTC Desire and the Facebook application is the worst thing it should happen. It sync all my friends phone numbers and mixes with all my other phone numbers. Can some one in clear state of mind ask Android/Facebook to give us the option to select what friends we want in our phone list? I like the Facebook app but deleted it once it messes my phone!
View 1 Replies View RelatedI know this is usually done the other way round. My uni halls doesn't have wifi, instead it has an ethernet cable for every room. The problem with this is I'm using up my 3g internet on my phone a lot more and i'd like to do things like update my apps and check twitter more but i'm scared i'll run out. By plugging my phone into my laptop, is there a way to borrow the internet from my laptop for my phone?
View 5 Replies View RelatedAfter thinking I lost my phone yesterday, I decided I outta install one of these apps on my Eris. I've come across WaveSecure, Mobile Defense, and MobiWee (although this last one doesn't seem to be geared towards security really). Which one have y'all found is the best? What do you prefer?
View 8 Replies View Relatedi just want to try windows phone OS and for that i dont care if i have to drop my android os. Is there any way of installing windows phone OS on my android? I am using a SE live with walkman
View 5 Replies View RelatedQ1) I want to use my phone as modem and run internet on the phone on PC. Please suggest me a software that could help me connect my Pc to my phone internet as there is no official PC Suite/ Sync Application provided by LG for my phone?
Q2) My phone supports Divx/Xvid , Can i run .avi and all other video formats which came under divx/xvid category or some particular? Please suggest the best video format which i shud use to get best sound and vidoe quality.
I made a very simple application to start playing around with Android development. It works fine on the emulator, but it gives me the following error when I try to install it on my HTC Hero (v1.5): The application Simple Dial (process com.foo.simpledial) has stopped unexpectedly. Please try again. (Force Close button) and on in the Eclipse console, I get the following message:
[2010-06-14 23:10:52 - Simple Dial] Uploading Simple Dial.apk onto device 'HT9BSHF00222'
[2010-06-14 23:10:53 - Simple Dial] Installing Simple Dial.apk...
[2010-06-14 23:10:56 - Simple Dial] Success!
[2010-06-14 23:10:56 - Simple Dial] Starting activity com.alanvaghti.simpledial.DialActivity on device
[2010-06-14 23:10:57 - Simple Dial] ActivityManager: Can't dispatch DDM chunk 46454154: no handler defined
2010-06-14 23:10:57 - Simple Dial] ActivityManager: Can't dispatch DDM chunk 4d505251: no handler defined
[2010-06-14 23:10:57 - Simple Dial] ActivityManager: Starting: Intent { action=android.intent.action.MAIN categories={android.intent.category.LAUNCHER} comp={com.alanvaghti.simpledial/com.alanvaghti.simpledial.DialActivity} }
I did put 'android:debuggable="true"' inside the application tag on the manifest.xml
I was wondering if there is an SMS activity log somewhere on the Hero / Android phone?
I could do with the telephone number of a text message I received but deleted without thinking!
If I could find a log then I could get the number? I'm not interested in the text itself, just the number from which it came.
How to mount Android Phone's sdcard to be both visible on PC and Phone?
View 4 Replies View RelatedCan one buy a used device with no phone service and use it for testing apps?Second question: can wifi be used on such a phone, to connect to the internet?
View 2 Replies View Relatedwhat i was thinking, was, does anyone make like a little "mini phone" that works over blue tooth?i was thinking something like that would be cool to have. leave your big x in the dock when you in the car, or on your desk, or somewhere out of harms way when you go to work, and just carry you "mini phone" with you in your pocket. make calls, and etc from it. i was thinkin something that looks like a small flip phone would be cool. have any of you guys ever seen anything like that? or think it would be useless?
View 24 Replies View Related