Android :: How Does CTS Work - Where To Get The Test Streams
Nov 16, 2009
I am working on the CTS (Compatibility Test Suite), but I am a newer.
From my test, I found the following Fail:
CODE:.....
I have checked the CTS source code. And find the the following source code:
CODE:....................
View 3 Replies
May 18, 2010
I did a factory test and now the youtube app won't work. Any suggestions.
View 1 Replies
View Related
Jul 26, 2010
I never had a problem until today and now my evo is having trouble connecting in places it used to work great in. And when it does connect, it (a) either doesn't work at all (browser, speed test, nothing registers an internet connection) or (b) works for a minute, then (a) happens. I have an allegedly "good" 4g signal too. Tried soft reset and battery pulling, hoping that the problem will go away before resorting to a factory reset...
View 49 Replies
View Related
Aug 9, 2010
Anyone using the Mini Diary? Seems like a decent app for preparing Facebook updates without having to post them right then and there. I tried a test publish and it keeps failing. Any idea how to make it work?
View 1 Replies
View Related
Sep 24, 2010
I'm writing an Android JUnit test and want to copy/reset a test fixture file (it's an SQLite database file.) If I were within the main application, I know I could just place the file in the assets directory and use getResources().getAssets().open(sourceFile).However, this API appears to be unavailable from the ActivityInstrumentationTestCase2 class.Is there an easy way to copy a file over from the testing PC, or should I just keep a fresh copy of a test fixture on the device and copy it over a temporary file?
View 2 Replies
View Related
Aug 23, 2009
I am using ActivityInstrumentationTestCase2 to do some test for an activity. I get a button in the setUp() method like this: protected void setUp() throws Exception {super.setUp(); act = getActivity(); btn = Button)act.find ViewById ( R.id.bike_button ); // this button has been defined in layout} Then I use this button to perform a click in a test method like this: public void testBikeButton(){ //click the bike button btn.performClick();}
View 7 Replies
View Related
Jun 3, 2010
How can I play a .asx or a .pls stream? I tried Stream Media Player, but to no avail.
View 1 Replies
View Related
Aug 11, 2010
I have never used JUnit before, and now I'm trying to set it up on an Android project.My project under test is fairly complex, including some JNI, but my test project, at the moment, is completely trivial. I have found many examples (that look totally different) online of how to make a test project, but it seems that no matter which one I follow, I get the same results.Here's my JUnit project code:package com.mycompany.myproject.test;
import android.test.AndroidTestCase;public class SimpleTestCaseExample extends Android TestCase {public void test_testOne() {fail("Just Always Fail");When I run, I see the following in Logcat:
stdout INSTRUMENTATION_STATUS: numtests=2
stdout INSTRUMENTATION_STATUS: test=test_testOne
stdout INSTRUMENTATION_STATUS_CODE: 0
stdout INSTRUMENTATION_STATUS: id=InstrumentationTestRunner
stdout INSTRUMENTATION_STATUS: current=2
stdout INSTRUMENTATION_STATUS: class=com.mycompany.myproject.test.SimpleTestCaseExample
stdout INSTRUMENTATION_STATUS: stream=
stdout INSTRUMENTATION_STATUS: numtests=2
stdout INSTRUMENTATION_STATUS: test=testAndroidTestCaseSetupProperly
stdout INSTRUMENTATION_STATUS_CODE: 1
stdout INSTRUMENTATION_STATUS: id=InstrumentationTestRunner
stdout INSTRUMENTATION_STATUS: current=2
stdout INSTRUMENTATION_STATUS: class=com.mycompany.myproject.test.SimpleTestCaseExample
stdout INSTRUMENTATION_STATUS: stream=.
stdout INSTRUMENTATION_STATUS: numtests=2
stdout INSTRUMENTATION_STATUS: test=testAndroidTestCaseSetupProperly
stdout INSTRUMENTATION_STATUS_CODE: 0
stdout INSTRUMENTATION_RESULT: stream=
stdout Test results for InstrumentationTestRunner=..
stdout Time: 0.07
stdout OK (2 tests)
stdout INSTRUMENTATION_CODE: -1
But, I get the following in the Console:Launching instrumentation android.test. Instrumentation TestRunner on device emulator-5554 Collecting test information Test run failed: No test results I have tried a variety of different things, messing with the basic TestCase class, or the TestSuite class, or a variety of other options. I tried to just go for the most trivial example because I'm really still trying to learn how this works.Whatever I try, I see this error.
View 1 Replies
View Related
Nov 9, 2010
I'm working on a school project and I'm researching testing possibilities for Android applications. On this page: http: // developer . android . com/ resources / tutorials /testing /hello android. Google writes about a unit test. Is this really a unit test? A Unit test will not integrate all classes and will not test in his context. So my opinion is it is not a Unit Test but an Integration Test.
View 7 Replies
View Related
Aug 22, 2010
What is the Easiest way to stop a soundpool of 4 streams.
mSoundManager.addSound(1, R.raw.svphorn);
mSoundManager.addSound(2, R.raw.svpphaser);
mSoundManager.addSound(3, R.raw.svpwail);
mSoundManager.addSound(4, R.raw.svpyelp);
I need a button to stop all sounds playing @ one time.
View 1 Replies
View Related
Nov 11, 2010
I am developing a multiplayer game on android. I am having a Java server and android client. The android client issues multiple requests and receives responses from the server. However the performance is not smooth. At times the data received at the Java server is not what I send from android. It is junk or zeroes. However, some times, data is correctly received.
I was wondering is there any data loss in between and why? I am using java.net on both ends. Please let me know if anybody was facing a similar problem anytime during android development.
View 4 Replies
View Related
Jul 15, 2010
One more video about the fancy touchscreen of the Droid X. This one has happier results! Check it out at the link below.Droid X Touchscreen Test See you later. you'll know why this post is short when you read the blog. running downstairs!
View 5 Replies
View Related
Oct 14, 2010
I am developing android a few days now and startet to write an application that gets a file from a server to display the content.
I have this code here
CODE:.....
The strange thing is that nothing is shown in the TextField. If I test the code in a standard java project the printing of the data (with println) works correctly in the console. But when i run it on the android vmachine nothing is shown. I got no more ideas left to proof the code. Anyone has some advices for a newcomer?
View 2 Replies
View Related
Sep 1, 2009
I am trying to build streaming radio into my app, which works fines streaming files over the internet, but when i try to use a shoutcast url in get the error below, which from the soruce code looks liek the mediaPlayer is looking for the duration in the header. Does anyone know if shoutcast urls will work withthe default media player? Or do i have to download chunks into a ping-pong buffer sor something? The url has no porblems downloading via the browser.
the error is:-
CODE:........................
View 15 Replies
View Related
Nov 10, 2011
I have a project (that compiles and runs in the emulator.) I have a test project that tests part of this project. This test project also compiles with no problems, but when I try to run (test) it in the emulator, I get a NoClassDefFoundError exception on one of the classes my test class tests (I hope that made sense!) when it starts to run in the emulator. This is coming out of the adb log. I looked in the bin directory (of the test project) for the missing class, but could not find it... Should it be there? I found no reference (apk, etc) of the project I am trying to test either in the test projects bin directory. How does the test project get the classes it needs to test against (in the classpath, I assume.) How do the tested classes get moved to the emulator? I did try running the app before testing, so I know it is installed and runs correctly. BTW, I am using netbeans with the nbandroid plugin.
View 1 Replies
View Related
Sep 28, 2010
I haven't done any work with the Android or iOS platforms, but I have recently been pitched a project and I'm trying to see if it is even feasible.
Is there currently API hooks in the iOS and Android platforms for accessing / manipulating the voice / data streams? What I would like to do is encrypt all outgoing steams and decrypt all incoming streams before they reach and other processes that need that data.
I would assume that because the Android platform is open source one should be able to do this, it just may have to be hacked together. I'm more worried about iOS.
View 2 Replies
View Related
Jul 16, 2010
I am unable to integrate Junit with Android. I am using Junit 3, I have also tried Junit4.
package* com.android.test;
import* com.android.MyActivity;
import* android.app.Activity; *
import* android.test.ActivityInstrumentationTestCase2;
public* *class* TestMyView *extends *
ActivityInstrumentationTestCase2<MyActivity> {
Activity myActivity ;
*public* TestMyView(String pkg, Class<MyActivity> activityClass) {
*super*(pkg, activityClass);
myActivity = getActivity() ;
View 3 Replies
View Related
Sep 7, 2010
Is it possible to detect scan type (progressive or interlaced) of a video file in stagefright?
I see below listed fields are query-able with metadata of file through stagefright, but not scan-type which i guess is avaiable in MP4 file header. Any hint on how to detect scan-type of video file at Stagefright player driver? Or is it available in opencore?
CODE:.............................
View 3 Replies
View Related
Apr 22, 2010
AOR by leadapps did this well. But when I upgraded my moment to eclair 2.1, I could no longer find the app. This is one reason the android experience has been a let down for me; I'm no bagger or birther, but damn...this is one socialist OS. Anyway, what have you used to hear streams of .aac's?
View 2 Replies
View Related
Aug 3, 2010
Just an FYI - on 2.1 Twit Live stream was dead, now it is alive and well - at least for me the 400kpbs stream seems rock solid.
Sorry if you aren't into Twit, but I watch that livestream pretty regularly.
View 3 Replies
View Related
Mar 17, 2009
why CheckBox is always null.
<CheckBox id="@+id/checkbox" android:layout_width="wrap_content" android:layout_height="wrap_content" />
code file-
package com.reblogr.reblogrclient;
public class Test extends Activity { /** Called when the activity is first created. */
public CheckBox checkbox;
@Override public void onCreate(Bundle savedInstanceState) { ....................
View 5 Replies
View Related
May 22, 2012
Is it possible to write a in-app openvpn connection (via streams and sockets)? If it is, then is there any android application which managed that already? I have also problems finding in-depth openvpn protocol description.
View 4 Replies
View Related
Jan 25, 2010
I have the paid application PhoneMyPC and it's truly great. It does everything that it claims to do really well. The only thing that is lacking is the streaming of audio. Is there an app similar to PhoneMyPC that streams audio as well as video?
View 5 Replies
View Related
Mar 27, 2010
I am still relatively new to android apps and was wondering if there was an app any of you might know of that would enable me to listen to Electronica/House/Trance type radio stations?
View 8 Replies
View Related
Jun 23, 2010
The day has finally come for the big announcement event. Most of us plan on following the conference live online, through a blog or hopefully a video/audio stream. This is a private event, so the chance of a video stream is obviously low. Nonetheless, I will be hunting the internet for a live feed just in case one's out there.
Let's use this thread to post links to the live blogs and/or streams, to make it a bit easier for people that aren't sure where to look. I'll do my best to update this first post throughout the day to reflect newly found links.
Live Blogs
Engadget
http://www.engadget.com/2010/06/23/live-from-verizons-motorola-droid-x-event/?sort=newest&refresh=20
Android Central
[url]
Verizon Wireless on Twitter
Verizon Wireless (VerizonWireless) on Twitter
Cnet
Reminder: Verizon Droid event June 23 | Android Atlas - CNET Blogs
Thedroidguy
[url]
MobileCrunch
[url]
Live Streams
None yet
View 49 Replies
View Related
Sep 28, 2010
For example, Gensoid Lite, a Sega Genesis emulator, allows you to create homescreen shortcuts to launch specific ROMs inside the app. Are there any internet radio apps that have this same functionality? I'd like to create some icons to access my favorite stations right from the homescreen instead of opening the app and going through there. I've tried XiiaLive, Cherry rPlayer, Google Listen, and TuneIn Radio and none of those have this functionality.
View 2 Replies
View Related
Sep 22, 2010
Any apps available to listen to online radio streams?
View 4 Replies
View Related
May 19, 2012
App like xbmc livestreams plugin to play audio/video streams from xml file (url) with streaming links. looking to use it on android TV box.
Or if there is something allready available
View 2 Replies
View Related
Oct 10, 2013
I just switched from WebOS so I'm quite a noob to Android. Anyways, I bought a new Samsung Galaxy Nexus with Android 4.4.
Now to my issue: I like to watch video streams. The problem is, that the display will turn automatically off.
Solutions:
1. Play a stream with a video player - how can I do this?
2. Change settings so the display will not switch off on a stream, but will turn off when idle - is this even possible?
3. Turn off "turn off display when idle" setting - but I don't like this one.
View 4 Replies
View Related
Jul 10, 2010
In my application, RTSP streams play only sound without video, but if i specify the video path as a local file, it plays the video and audio.
How would i get the RTSP streams to show video?
CODE:.................
View 2 Replies
View Related