Android : How To Get Verbose Build Output?
May 4, 2009
To build full android source code, we get a "silent" output. We only know which file be involved, but I want to get more detail information, such as build parameter, input file,outpot file, warning, and so on. How to get these detail information?
View 2 Replies
Apr 13, 2010
I dont want to hardcode the name of the package or where it lives when building an Android project with ant. Im using the build file generated by Android. What properties contain the output folder (bin) and package name (e.g. package.apk) ?
View 2 Replies
View Related
Feb 6, 2014
I want to output Android's camera output to a PC through Wifi or Internet.
I cant find a suitable app for the purpose. I did try to find one.
Closest I came to was MirrorOp Sender, but it shares screen?
I have a Galaxy S3 I9300 and a Galaxy Mini S5570
View 6 Replies
View Related
Jun 24, 2010
I downloaded the Android 2.2 source code and try to build it. When I executed the make command, I got an error here like this build/core/java.mk:20: *** frameworks/ex/common: Invalid LOCAL_SDK_VERSION '8' Choices are: current 4 5 6 7. Stop. Then I changed the frameworks/ex/common/Android.mk to LOCAL_SDK_VERSION = 8 from LOCAL_SDK_VERSION = 7. Next place, build/core/java.mk:20: *** external/jsr305: Invalid LOCAL_SDK_VERSION '8' Choices are: current 4 5 6 7. Stop. I changed the external/jsr305/Android.mk to LOCAL_SDK_VERSION = 8 from LOCAL_SDK_VERSION = 7
Last one, build/core/java.mk:20: *** external/guava: Invalid LOCAL_SDK_VERSION '8' Choices are: current 4 5 6 7. Stop. I changed the external/guava/Android.mk to LOCAL_SDK_VERSION = 8 from LOCAL_SDK_VERSION = 7
By these changes the code started the compilation.
1. Why the error occured?
2. Changes which I did is correct or not?
View 3 Replies
View Related
Feb 21, 2013
I have a phone with a MT6577. The vendor (Wiko) published the kernel source code. So, i'm trying to build it. I can get the zImage. I converted it to boot.img but i can't boot with it on my phone.build a good zImage? (if you want to try) : URL...
cp mediatek-configs .config
TARGET_PRODUCT=s9081 MTK_ROOT_CUSTOM=../mediatek/custom make
# sudo mtk-tools/repack-MT65xx.pl -boot zImage boot.img-ramdisk boot.img
MTK-Tools by Bruno MartinsMT65xx repack script (last update: 27-01-2013)
Repacking boot image...
Ramdisk size: 2046 blocs
Repacked boot image into 'boot.img'.
Here are the Warnings I got when compiling
mediatek/platform/mt6577/kernel/drivers/video/tvc_drv.c:61:5: warning: "FIXED_WVGA_PARAMS" is not defined
net/ipv4/tcp.c: In function 'tcp_nuke_addr':
include/net/ipv6.h:338: warning: 'in6' may be used uninitialized in this function
net/ipv4/tcp.c:3367: note: 'in6' was declared here
In file included from net/ipv4/netfilter/ipt_LOG.c:27:
include/net/netfilter/xt_log.h: In function 'sb_close':
[code]....
View 9 Replies
View Related
Oct 19, 2009
I want to get the booting log. But when I use the logcat, I can't get the whole info. In file dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/ provider/jsse/SSLParameters.java, I added "java.util.logging.Logger.global.log(java.util.logging.Level.SEVERE, "SSLParameters.getDefault() is called");" in the function getDefault () . But when I use the logcat, I can't get the sentence "SSLParameters.getDefault() is called". I can test that the function is surely called. Why? How can I get the info?Thanks.
View 2 Replies
View Related
Sep 24, 2010
Have a video in avi format I want to watch on the tv but the default player doesn't play avi. Are there any players out there that plays avi that will let me output avi through hdmi onto the tv?
View 3 Replies
View Related
Jun 19, 2010
How to access mobile audio out in read mode?
View 1 Replies
View Related
Feb 11, 2009
I wanted to get the frequency of accelerometer output. How many readings can I get per second? And to what precision do I get?
View 5 Replies
View Related
Nov 5, 2009
Is there any way to get crash logs from android for a released application? I'm wondering if there's some way for a user to email me logcat output so I can see a strack trace if my app crashes.
View 3 Replies
View Related
Apr 3, 2010
Is there a way to make LogCat's output to appear in Console view in Eclipse? LogCat view is much less convenient that Console, because it's hard to see long messages in it (they are trimmed by column border) and there are no clickable highlighting in exception stack traces to quickly navigate to source of error. Just to make clear - I'd like to have clickable stacktraces, like the ones in normal Eclipse console so I can quickly navigate to the source of error.
View 5 Replies
View Related
Mar 9, 2010
I want to run an activity without ANY screen output. The screen should not blink or anything. How?I have an Appwidget. whenever it gets clicked I want to write something to a DB.So, via 'setOnClickPendingIntent' I start an activity that does that and finishes. But, the screen goes black for a short time, while the activity is running. How can I avoid that? Omitting 'setContentView' does not help, neither does a layout without any views. A service instead of an activity could do that, but I cant start a service by setting a 'setOnClickPendingIntent' (or can I?).
View 13 Replies
View Related
Apr 27, 2009
I am trying play an amr file on android emulate, but nothing here, only see the progressbar froward. so farther, I fond the amr codec only out all zero data.I also go www.3gpp.org dondord the amr code 26073-800.zip, and user it doecde the same amr file, it works good. now, what coule do, to make amr file play good. i am sorry for my bad English.
View 2 Replies
View Related
Sep 17, 2009
I'm trying to play a music (using MediaPlayer) during a call and want the caller to hear the music I'm playing. Unluckily it doesn't seem work at all, the caller hear nothing even I set the music volumn to MAX ( of course, the speaker and the mic on Android are far away from each other). Is there any ways to route Android's audio output to its Mic? Or something like "Stereo Mix" in Windows?
View 3 Replies
View Related
Jun 27, 2010
I'm probably going to feel like an idiot when I figure this out, but I'm hoping someone can help. I just installed the Android 2.1 SDK along with the latest Eclipse. When I create a new Android project, it outputs hello world when run. I can't for the life of me find anywhere in the project source where this happens and how to remove it.
View 3 Replies
View Related
Oct 27, 2010
When I record audio with the MediaRecorder, I am consistently getting .65 seconds of dead space before the recording starts. It appears as if the file gets passed for some reason. Does anyone know why and better yet, how to eliminate this?
View 2 Replies
View Related
Jun 5, 2010
I know that there was a root-required app that increased the volume output from the speaker when on the phone. Does anyone know what this was called? I want to test it out on my EVO.
View 5 Replies
View Related
Jun 30, 2010
I've been told it's a command line option. But Eclipse's Run!Run Configurations...!Target!Additional Emulator Command Line Options field is already occupied with hen where do I write it, and how (i.e., is the syntax even correct)? I need to output only a filtered tag, not verbose. ("MessageBox" is my TAG. Again I don't know if any of this punctuation is right, or even where the command goes.
View 1 Replies
View Related
Mar 10, 2010
I've got a fairly unique situation: I'm a teacher with a magnet school that focuses on rocketry and technology. I've got a rocket payload that has a video overlay board which does the following: Code...
View 3 Replies
View Related
Sep 22, 2009
After installing SDK 1.6 and ADT 0.9.3, I created a new AVD with SDK level 4. Then I found that my application can not output log in the logcat. Can anyone tell me why?
View 3 Replies
View Related
Feb 14, 2010
I am running Windos 7 and Eclipse 3.5 and I don't know why I keep getting this error. When I try run the program it gives me:[2010-02-13 23:09:41 - HelloAndroid]The connection to adb is down, and a severe error has occured.[2010-02-13 23:09:41 - HelloAndroid]You must restart adb and Eclipse.[2010-02-13 23:09:41 - HelloAndroid]Please ensure that adb is correctly located at 'C:UsersMohitDocumentsAndroidSDK oolsadb.exe' and can be executed.I even tried runing Eclipse and adb.exe as admin. What is going on? How can I fix this and start making Android apps?
View 2 Replies
View Related
Jun 12, 2010
In the Menu>Setting>Sounds and Display>Media Volume I have this setting to max and I'd still like my music louder still, Does anyone know of a way to increase the Media output Volume??
View 2 Replies
View Related
Jan 17, 2010
I was playing around with some of the live wallpapers and thought it'd be neat to try to make something like the frequency/waveform visualization wallpapers, but I'm not sure there's an API to get the audio output data from the device. I know you can use AudioRecords to get this sort of data from microphones. Anyone know if there's a way to manage it for a device's output?
View 2 Replies
View Related
May 26, 2010
Is there a way in Android to force output through the phone speaker, even if a headphone is plugged into the jack? I know there has to be a way because when you are talking on the phone, you can put someone on speaker phone, even if there is headphones plugged into the jack.
View 1 Replies
View Related
Apr 1, 2010
I have an Android test project that I'd like to link into Hudson, but I haven't found a way to output the test results as XML instead of text. Does anyone know if there's an easy way to do this already?
View 3 Replies
View Related
Apr 8, 2010
I have an Observable and an Observer. The observable does download some stuff in a background thread and calls notifyObservers to let the observers read the status. At some point in public void update the observer tries to updates the GUI Is there some way I can prevent this from happening? I'm sure I'm missing something obvious here.
View 2 Replies
View Related
May 17, 2010
Were now testing our application with a few friends. Sometimes there are some errors which dont throw an exception. So I don't really know whats the problem was. So i thought it would be a good idea to implement a menu item which allows to send the logcat file to a email adress, so that we can examine the logcat. Unfortunately I didnt found a hint in the Internet how to extract the Logcat from a phone. How to send a email shouldn't be the problem.
View 4 Replies
View Related
Dec 14, 2009
Using Android 2.0 SDK. Is it possible to direct the TTS engine's output to a connected BT headset? I've tried with KEY_PARAM_STREAM set to all of the available stream types but the speech is still output by the speaker on the phone.
-- "An engineer's definition of done is the perfect set of code, and left to his own devices, an engineer will endlessly improve the code on the mythic journey to done." --
View 2 Replies
View Related
Jul 28, 2009
I've run into a very strange problem regarding OpenGL texture outputs, which only occurs when the app is resumed (particularly when leaving after pressing Home, and going back into the app).I'm not sure how or why, but it appears to be that it's reading bitrate of the pixels incorrect, or something else entirely. Furthermore, this issue only occurs on the device itself (testing on my G1/Dream), not on the emulator.Code as well as example screenshots in the zip file show exactly what I'm talking about. And to completely replicate the issue I've included the 2D sprite object framework I've developed for OpenGL so the situation is exactly the same as what I've run across when developing my game, so if it's somehow an issue in my framework you may be able to spot it.
View 6 Replies
View Related
Oct 5, 2010
Is there a "perpetual calendar" application for Android? For example, I would like to be able to enter "Third thursday in October, 2001" and output the date, input a date and output a day of the week, or input "eight weeks from next Monday" and output a date etc. I tried searching a few terms in the market and didn't come up with anything.
View 1 Replies
View Related