How To Avoid Clean Build Using Mm-B On Android
Oct 11, 2012
I am building an Android Application that has a lot of C modules that has the sequence of Java->JNI->C code. I am currently building all the C modules using mm -B option in the Android baseport (Android source code) within the external folder. When I want to build all C modules, I call the individual modules' mm -B function one after the other. I have 2 questions in this regard.I wanted to know if there is a way to do incremental build on a set of modules. The scenario here is that I am building a set of modules one after another from a script. I have observed that all the modules mentioned in the script get built irrespective of whether a change has been made to it or not. This clean build takes time. Is there a way out of this?
Whenever mm -B is executed, the libraries built are placed in out/target/product//obj/lib/ path by default. I wanted to know if we can change this path and whenever the mm -B command is called, the libraries are copied to the corresponding modules paths and not to this common path.
I dont have much knowledge of the envsetup.sh that has the definition of these mm and mmm functions.
View 1 Replies
Jul 6, 2010
I like to send back a Nexus One device and I like to ask how accurate is the build in function to clean up the device. The one located at Settings->Privacy->Factory data reset.
Is this the same with the "Delete Option" located in the recovery mode?
In general what method advance user use to clean up their device and perform a hard reset?
View 1 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
Mar 19, 2010
I noticed that my Eris sent texts very quickly when I first upgraded to 2.1, and now not so much. I know it's because the texts are starting to really build up, so is there an app that will make the text messaging app only keep the last 20-50 messages?
View 2 Replies
View Related
Feb 28, 2009
I am developing a simple application to parse the xml content but while parsing the xml data i am getting some attribute values like:
Espaol"
BelgiŤ (nl)
How to get the original values by avoid these symbols
currently i am using
<?xml version="1.0" encoding="ISO-8859-1"?> at the top of the xml file
Is it correct or i need to do more?
View 2 Replies
View Related
May 10, 2010
i have couple of appz(diffrent apk's), and i run activities from one app to another.my target is to avoid package depndency between them, in case in the future i want to upgrade or compile one package without the absence of another.the problem is that: without setting the dependecy between eachother(eclipse: buildpath->projects), i cant fire the intents, i`am getting error:"Unable to start activity component..."
View 1 Replies
View Related
Jan 28, 2010
I am working on an Android service which will be OTA downloadable.How to avoid an application or service from being uninstalled from the device by the user?Is there some setting that we could enable in the AndroidManifest.xml to achieve this?Can the above be achieved without any OEM integration?
View 2 Replies
View Related
Oct 15, 2010
In a start activity of our android application we're using a linearlayout with an background image for whole space. The image size is 320x480 - the same as device resolution, we're using for testing. The problem is, the image will be scaled und looks not so nice. I tried to use imageview instead, but I've got black borders.
Some ideas, how to avoid scaling or how to get the proper size for background image?!
View 1 Replies
View Related
Jul 22, 2010
I'll use some pictures in my application.Is there any way to avoid others getting my pictures?
View 6 Replies
View Related
Dec 23, 2009
I am developing a security app, to track stolen devices, is there any way to make really difficult to uninstall an app? or to avoid the uninstall?
View 3 Replies
View Related
Dec 17, 2009
I'm trying to get the android SDK set up on my computer, but every time I start the SDK and AVD manager and try to connect to the repositroy, I get this error:
Failed to fetch URL https://dl-ssl.google.com/android/repository/repository.xml, reason: Connection timed out: connect
I have no HTTP proxy, and I have also tried checking the box "Force https://... sources to be fetched using http://...", but that doesn't work either.
When I go to https://dl-ssl.google.com/android/repository/repository.xml via firefox, I can see the xml file, however it takes a minute or two to load, making me wonder if the sdk's timeout is too short for it to actually connect to the server??
I am on windows 7 Professional, 4GB ram, AMD Turion x2 ultra processor, Java details:
java version "1.6.0_17" Java(TM) SE Runtime Environment (build 1.6.0_17-b04) Java HotSpot(TM) Client VM (build 14.3-b01, mixed mode, sharing)
And I downloaded the android-sdk_r04-windows sdk...
I've searched the web, and the only simmilar problem I can find is this link: http://www.mail-archive.com/android-beginners@googlegroups.com/msg168..
View 2 Replies
View Related
Oct 13, 2010
I have total 3 activities.
First activity(A) starts second activity(B). From Activity B, 3rd activity(C) is called.
Activity B, shows list with checkbox to select items and single OK button. On clicking OK button Activity C is called with selection.
When user clicks BACK button in Activity C, by default Activity B is displayed (with selected checkbox).
I want to display Activity A when BACK button is clicked in Activity C.
How to achieve that?
I have handled OnKeyDown() in Activity C to startactivity(A). it is working. But when user clicks BACK button on Activity A, again Activity C is displayed. while application should end.
In this direction how to skip Activity B is ever called?
View 1 Replies
View Related
Aug 19, 2009
I am trying to use "setClickable(false)" + "setLongClickable(false)" + "setFocusableInTouchMode(false)" to disable Touch Event for every views but failed. When mouse clicks, OnTouchEvent() of some view will still be called. What I want is only to disable Touch event because my application need not Touch and Touch event will disturb the running of app. Is there any way to disable Touch ?
View 6 Replies
View Related
Nov 6, 2010
My phone and sd card memory is very full and im sure that a lot of this is unused folders and data left behind by old uninstalled apps, temporary files etc. Is there some kind of disk clean up app i could get to remove all of this junk?
View 1 Replies
View Related
Jan 26, 2009
January 26, 2009, 11:00 am by Ben Sillis 1 comment Filed under Mobile phones Tags: Android, android market, app, app store, Apple, G1, Google, HTC, T-Mobile, T-mobile G1 Watch out, T-Mobile G1 owners: a dodgy app that appears to be wiping phone memories has made its way onto the Android Market. The open source nature of Android has come back to bite Google, with what may be the first piece of malware finding its way onto the Android Market.
MemoryUp is supposedly designed to clean up the T-Mobile G1?s memory, but it?s being a bit too vigorous and wiping the internal memory of the G1 as well as the inserted SD card in some cases. One user, ?kr33p1n?, complains that it ?Doesn?t work at all erased my phone numbers and froze my phone,? and many others seem to be in agreement, with the program clocking up several hundred one star ratings already. So, a devious Windows Mobile, BlackBerry Storm or Palm Pre employee behind it? Or just some jerk cranking out cackhanded code? We don?t know, but all of a sudden, Apple?s closed App Store and opaque approval process seem very enticing.........
View 41 Replies
View Related
Aug 11, 2010
How clean up history on Android Market because too much list of history. Anyone do know how for that? if not know how then that ok.
View 3 Replies
View Related
Oct 31, 2009
My application used to execute in background by service. But sometimes when it goes in exception it is giving Exception with the Force Close Message Box. I want to avoid that Message box. Is there any way to avoid it?
View 4 Replies
View Related
Mar 11, 2010
I use my phone as an audio player while outside with a bluetooth headset. I have the phone in my pocket. However,it seems very easy for the side buttons to be pressed, even when the phone is locked. What do you all do for this? I have tried a couple things and did find a "solution", but it's not one that I like, and would appreciate hearing thoughts from others.
View 4 Replies
View Related
Nov 24, 2010
I am New To android, my problem is when iam capturing image programetically the camera is opening in landscape mode..Than How to Avoid it?
View 1 Replies
View Related
Jan 9, 2010
hi, i run my application in an emulator/device automatically one drawable image other than default image i used my image coming for my application as background.how can avoid it?
View 1 Replies
View Related
Jun 17, 2010
Since I seem to have caught two activity references in a heapdump, where the Activity is set to singleTask. Romain's advice on avoiding memory leaks includes: "Avoid non-static inner classes in an activity if you don't control their life cycle, use a static inner class and make a weak reference to the activity inside"
What does this mean exactly? I can't find any examples, positive, or negative for this rule. I do have some non static inner classes in my activity. Most of them are anonymous inner classes like this one. I see hundreds of them in the samples:....................
View 24 Replies
View Related
Mar 1, 2009
As is mentioned above,What i'm trying is to protect a sub- thread,and keep it going on as long as the App that starts it is still alive.In other words,If the system need more resources,Let it kill both the App main thread and the sub-thread started from it,Instead of just kill the sub-thread.Is there any way i can do this ?? And another question here,The android system seems to be "rude",As it killed my thread without telling me,even in the logs,Is this the case?
View 6 Replies
View Related
Nov 24, 2010
I have a list view , where i am adding headerview to that list . every thing fine , but when am scrolling list headerview also moving with list, so i want to avoid headerview scrolling , i mean i have to scroll only list when i list reached to topview (titlebar),headerview has to remain bottom of titlebar .
View 4 Replies
View Related
Sep 13, 2010
I have a server socket bound to a port and I want to send notifications using NotificationManager when a client connects. This all works well.
What I want to avoid is sending notifications if a specific activity is currently being used by the user. E.g., I'm trying to avoid something like GMail notification if I'm already reading email.
View 2 Replies
View Related
Mar 3, 2010
I facing problem with multiple process running for my application. Can any one help me to avoid creating multiple process or restricting process creation to one.
Some times I am seeing two process instances of my package in the process list. I want to avoid this.
View 2 Replies
View Related
Sep 24, 2010
I am Developing an App that parses data from HTML. One of the data that is parsed is an integer that increases over time and rather than constantly requesting the data I would like to have a task that intervals the integer. Due to the fact that I need the value updated into a TextView I decided to go with an AsyncTask rather than a Timer.
My issue is I want to be able to restart my task once I know that it has finished, or if it is currently RUNNING simply avoid manipulating it.
Here is my AsyncTask:
CODE:.......
My attempt to start or avoid:
CODE:................
Am I going about this correctly?
View 1 Replies
View Related
Aug 27, 2009
I was using ADT for debugging and then I get this Internal error: out of memory error
Is there any way to avoid this?
View 3 Replies
View Related
Mar 4, 2010
I made an application in android and used timer like this. code...
View 1 Replies
View Related
Sep 28, 2010
I read the Avoiding Memory Leaks article with interest, and am concerned about danging references to the context object. I have a class like the following.
CODE:.........
Is it a problem to have a reference to a LayoutInflater object, since it must be using the context object somehow? Is there a better design pattern for what I'm trying to do here? (Use the context only to initially inflate the XML; from then on just use the View that's passed in to getView)
View 1 Replies
View Related