Android :: Testing Applications On Device
Feb 11, 2010
I'm trying to make my application (compiled against 2.1) compatible with the 1.5 platform. I've handled all of the res/ folder issues, and have been able to run the app on all platforms without problems. I can run it fine on all emulators, and all devices/OS systems running 1.6 or higher. But on the only 1.5 device I have (HTC Hero), I get intermittent problems.
The only 1.5 device I have is an HTC Hero phone I got free at the Sprint developer conference a few months ago. When I test the app on that device, I have occasionally encountered a bug I've not seen anywhere, and can't find any information about.
I can install the application via the adb install command (although I get two messages about unknown commands), but after installing the app, the icon can disappear from the home screen, replaced either with a different icon or no icon.
When the app is launched in this state, rather than seeing my application name in the title bar, it reads "60.0dip". I don't use this value anywhere in my application.
I have never observed this problem on any other phone I've tested on (G1, myTouch, two Motorola Droids, Nexus One), but as I said I've only got one device running 1.5.
View 9 Replies
Apr 12, 2010
How to buy a phone for testing applications, can anyone suggest. Other phones in market are way to expensive.
View 11 Replies
View Related
Feb 2, 2009
Can I install and test the applications directly on G1 ( purchased from T-Mobile ) or I should purchase the developer version of G1 ( available from google ). Btw, I already registered for android market.
View 2 Replies
View Related
Jul 21, 2010
Is there any way to test the performance of the apk files or to automate the behavior of the the applications which are developed in android?
View 2 Replies
View Related
May 14, 2010
testing applications on non developer's-devices. Is there a way to do that?
View 7 Replies
View Related
Nov 13, 2009
We have many phones, but we don't--and probably never will--have all of them.
It's frustrating that some phones cannot see our apps in the market, and we'd like to know which phones those are.
We'd like to have a simple way to have our app tested on each phone, but at this point there's no easy way to do that.
My question is: what would we as developers be willing to do to get these needs met? Is there enough demand for someone to buy all possible Android devices and charge a nominal fee for these services?
We would pay a small fee to have out app accessed and downloaded on all phones--this would give us a report of which phones could access our app. We would pay a fee to have a step-by-step test ran on each possible device so we could know it worked on that device, at least minimally.
View 3 Replies
View Related
May 11, 2009
I'd like some feedback from your experiences on the best option to test GPS based applications. I've been developing apps and in the middle of this will have to ship out to Afghanistan for a 1 year tour. Perfect opportunity to concentrate on the apps in the down-time (nothing to do stuck on a base most of the time in a 10x15 shippping container). This is bad (with bad being a relative term) from the standpoint that there are no "data" plans in Afghanistan for GSM phones. I can get GSM service but no "data" plans. If i buy a Android OS phone I'm concerned about how I can update it with new firmware and load apps. I will have wifi access, but from what I've read this will not enable a "push" of the new firmware update to the phone as if I was with T-Mobile. Any suggestions on what phone i should buy and how to "test' my applications where I can update my firmware and load my apps onto the phone?
View 2 Replies
View Related
May 7, 2010
I am starting android development which phone is good for testing? or is emulator good enough? I am doing game development.
View 6 Replies
View Related
Sep 7, 2010
I'd love to get some ideas on best practices for testing our Android software, especially for AT&T devices. We're using a Samsung Captivate, on AT&T. As you know, AT&T disables sideloading (no Unknowns Sources option in Settings->Applications). We need to have our QA team load our apk file onto these devices as part of our testing and validation process. We're willing to install the SDK if needed, and upload the apk file via USB. We are not willing to root the phone.
View 2 Replies
View Related
Mar 13, 2009
I am making an android game, but i do not have the money to buy a developer phone. The game is not finished but i should it is testable.. and if i dont test it know i may have a big problem later... it is playable though. Is there somebody who has a real device and wants to test the game for me, just starting it up and playing it a little bit is good enough. It's a 2d airplane shoot gane, much like the old raptor game. If someone is interested please reply, i will sent you the (singed) APK and with some things i want to test (using both the buttons as well as touch screen for gameplay).
View 7 Replies
View Related
Feb 9, 2014
I want to decrypt this xml file:
23.239.111.10 / videoChannel.xml
i don't know if it is encrypted or compressed. i know that i have an apk that does the decryption of the file.
View 1 Replies
View Related
Dec 5, 2009
I need test my Android app on a Motorola Cliq but don't have one. Is there a testing service that will let me make a debug connection to that device so I can run some tests and find out where the code is failing. Video connections won't tell me that.
View 2 Replies
View Related
Dec 18, 2009
What is the easiest way to create some kind of test harness for Android apps and to be able to visualize (even on the emulator) what is going into the db? I want to test things like constraints, look at the data, unit test methods, etc. Is there any kind of GUI tool that I can hook up to the emulator to be able to look at the db of a particular app while I'm developing/testing, or are my only options the adb shell and creating test Activities within my app?
View 1 Replies
View Related
Jul 29, 2010
What are the third party tools available for benchmarking mobile applications. I mean stress testing, measuring how many users it can handle or the complexity of my application.
View 5 Replies
View Related
Feb 24, 2010
I wrote a simplest test based on android.test.ActivityInstrumentationTestCase2.
CODE:..............
View 2 Replies
View Related
Dec 29, 2009
How do you test GPS applications in Android? Can we test it using the Android emulator?
View 3 Replies
View Related
Jan 6, 2010
I am executing Monkey testing on a Android device. The command i am using is "adb shell monkey -p com.android.calculator2 -v 50000000 > monkey-calculator.txt" When we execute this command i suppose it should send 50000000 events to the device. In my case after sending event #150900 it stopped and i see a message: ":Dropped: keys=0 pointers=0 trackballs=0 flips=0" What does this message tell me?
View 2 Replies
View Related
Apr 16, 2009
I've been exploring the Android test package and I'm very confused on how to implement functional testing for endpoint-to-endpoint.
Consider the example below, I have 4 activities: 1. A Contact List Activity 2. A View Contact Activity 3. An Add/Edit Contact Activity 4. A Sync Contact List activity
I want to automate a few tests that will go through multiple test cases simulating a user experience: From launching the application, to selecting 'Add contact;' opening the add contact activity, entering data, saving it, going back to the list activity, and verifying the new contact was saved properly.
As I understand it, ActivityInstrumentationTestCase<T extends Activity> and ActivityUnitTestCase<T extends Activity>, are only useful for testing single activity functionality.
But what if I need to switch between 2 or more activities inside a single functional test case?
View 5 Replies
View Related
Sep 18, 2009
Is it possible to install J2ME applications on andriod device? I read somewhere that its not possible. are there any alternate ways (such as third party support) to run J2ME apps on android device.
View 2 Replies
View Related
May 10, 2010
I'm looking to get a device (phone, tablet, etc.) for developing Android applications. I know I can use the emulator to get me started, but I feel like that will only get me so far along. I'm looking for something reasonably priced, and I don't want a phone contract, data plan, etc. Anyone have any suggestions?
View 4 Replies
View Related
Dec 26, 2009
Just started developing apps and am having a small problem. I can test the apps on the emulator but I cannot test them on my physical android device. When I am asked to select a running device I get a device listed as: Serial Number/name:? AVD name: N/A Target: unknown etc,
It seems that my device is being picked up but not able to be used. When I try to run the app I get an "Must set android.target.avd" error.
Is there something I am missing?
I am using netbeans 6.7.1 on Ubuntu 9.10, everything up to date. I have a G2-Touch from T-mobile, if someone tells me where to find it, I will post any other needed information.
View 2 Replies
View Related
Sep 30, 2010
Apparently my app needs 2.5 MB (maybe because my photos need 2MB...) and then virtual device can't work with that much MB.
How can I make my virtual device support more than 2.5 MB to get my application working?
View 1 Replies
View Related
Feb 1, 2012
I ordered Le Pan II tablet yesterday.Today I found out that so far there are no ADB drivers released by manufacturer.Does it mean I will not be able to develop applications on this device at all? I do not mean developing applications that require root access (this tablet has not been rooted either but I am OK with this).
View 2 Replies
View Related
Apr 21, 2010
Like many of you I've just got my Desire today. I got it from Orange, and as a result it's bundled with loads of applications I don't want e.g. a few demo games, orange maps...etc. How do I remove these. If I go to applications I can see the app there, but if I tap it, there is no option to delete
View 3 Replies
View Related
Jul 17, 2010
It's not a huge deal, but it would be nice if I could clean up the app page and get rid of some of the crap I will never use and only have the apps I want in there.
View 10 Replies
View Related
Sep 12, 2010
This requires Froyo 2.2
It doesn't void your warranty
It doesn't delete existing apps
It's perfectly safe
It doesn't require rooting.
I realise there are a few threads about this, but I thought I would make a new one for my easier guide, and hopefully people will find it more easily as they won't have to scroll through pages of other threads to find an answer. I am now successfully running most apps from my SD Card now. I just thought I would make an easier guide as the others are fairly complex for noobs like me............
View 49 Replies
View Related
Sep 15, 2010
Just followed instructions on how to move apps to sd card on an unrooted device....all worked well, moved what i wanted to, but would now like to put phone back to default settings to install apps to phone memory.
I tried to open run command on my pc with phone connected and typed pm setInstallLocation 0.....but all that comes up is command is not recognized.
View 2 Replies
View Related
Jul 16, 2010
Is it possible to get the apps off of my incredible, that no longer has service, so I can install them on to my x? I have an older version of handcent on my incredible and I want to see if that version will work on my x, since the version in the market place does not.
View 2 Replies
View Related
Aug 8, 2010
What good/great Non Market apps are you using? And do tell what they are, what they do and where to get the APKs. I am non rooted but forced 2.2 update.
View 15 Replies
View Related
Aug 22, 2010
So I just rooted. I am looking for the sweet apps that everyone talks about busybox, SetCPU, Root Explorer, Titanium Backup, WiFi and Wired Tether, etc. Do I have to sideload these, can I find them in the market? Do I need to download something special from the market?
View 1 Replies
View Related