Android source code. Question about building Android from the source, contributing to the Android project, Android kernel development and porting.
1
vote
0answers
17 views
How to develop custom status bar in android JellyBean 4.2.2
I want to develop customized StatusBar. I know i am not the only one with this requirement. But still want to know the opinions.
After lot of search on StackOverflow, i found that people have
...
1
vote
1answer
13 views
make getSystemService() recognize our new system service
I'm using this ebook: http://it-ebooks.info/book/2073/
Page 332
I'm making a new System Service using AOSP(4.0.3_r1).
I want my system service to be registered in ...
2
votes
1answer
40 views
How to change the resolution of Android on a Pandaboard?
I'm building Android 4.2.1 from AOSP targetting a Pandaboard ES, and I have to change the physical display resolution from 1920x1080 to 800x600 on the HDMI output.
I tried to append ...
0
votes
0answers
24 views
Keeping Wifi-Direct Turned on AOSP devices
My friend and I are developing an app that streams synchronized music between android devices using wifi-direct. Our issue is that while the app works fairly well once phones are connected, it takes ...
0
votes
2answers
37 views
What does @hide mean in the Android source code?
For the Activity source code, line 3898 (almost bottom):
/**
* @hide
*/
public final boolean isResumed() {
return mResumed;
}
What does @hide mean?
I found my public class ChildActivity ...
0
votes
1answer
22 views
AOSP downloading just one flavour (ICS) source code
This might be a trivial question but I dont know the answer to it. Looking for android gurus.
My task is to compile android kernel and run on a pandaboard. I cannot just take the uImages there are ...
0
votes
1answer
25 views
How to set brightness through ADB on nexus 7
I found some info on the web:
echo 1 /sys/devices/platform/flashlight.0/leds/flashlight/brightness
But on my Nexus 7 (flashed an AOSP), I couldn't find that directory.
Any idea about which file ...
1
vote
1answer
36 views
downloading android source problems [closed]
I'm very new to this. please forgive any misuse of terminology.
I am following the steps on source.android.com to download the source for android 4.2.2_r1
I did the steps where I initialized the ...
0
votes
1answer
38 views
Simplify Build Process of Android Platform Apps
I'm working on a custom default android browser. I follow steps here AOSP to build my custom browser:
Clone android source code
Make changes on android browser
Build the Browser only for Nexus 4:
...
0
votes
1answer
23 views
[solved]AOSP build and SD Card
I built the AOSP 2.3.7 release successfully.
The emulator is running smooth.
I wrote an(droid) application which has something to do with sd card.
Now according to this I cannot mount a sdcard ...
0
votes
1answer
13 views
How to recover to the factory settings after installing the AOSP?
I flashed AOSP (4.2.2) to a Nexus 7 tablet.
Is there any way that I can recover it back to its factory setting (with the product version of Android)?
0
votes
1answer
29 views
How to clone subbranch from android source?
I am not overly familiar with git. I was trying to download the following branch but I guess this is not the way to do it:
git clone ...
5
votes
1answer
288 views
How to upgrade SystemUI.apk on emulator and real device
I am working on custom ROM, where i need to perform some customization to SytemUI (e.g. statusbar). So, here are the steps that i do
1. $ . build/envsetup.sh
2. $ lunch 1 // normal emulator
3. $ make ...
0
votes
1answer
28 views
Galaxy Nexus - AOSP certificate
I'm developing a system app in android. However, I will need system certificates for that purpose. I wanted to know, if I sign my app with AOSP system certificate, will it work on Nexus devices?
I ...
0
votes
0answers
19 views
what calls VideoLayerAndroid::drawGL in webkit on Android ICS?
I'm trying to get inline video in app using a Webview working running on a system iamge of ICS from the android-x86 community port that I built from source myself.
I've tested on both intel (i915) ...
2
votes
0answers
41 views
adb sync .. over wifi…?
I am developing an Android firmware, and I don't have a USB connection between the Linux machine and my board (the Linux machine I use is remote on my LAN, and I connect to it via SSH).
What my ...
0
votes
1answer
29 views
Finding out Android's version in AOSP on native code compile time?
I am building AOSP for a device. Is there a way to get the current AOSP version at native code compile time? I am looking for something similar to the LINUX_VERSION_CODE and KERNEL_VERSION(X,Y,Z) ...
-1
votes
0answers
31 views
Android:How to develop toucher app like feature in Jelly Bean [closed]
I am just trying to tweak SystemUI part of AOSP(android open source project) to develop an widget/ui that will be always a part of system like Toucher app does.
Can anyone point me to that direction ...
0
votes
0answers
28 views
Android source code, Java trace, abstract class
i would like to find out what exactly the Activity.java's setContentView() method is calling/doing.
Here is the Android source code and the code stub at line 1646:
public void setContentView(int ...
0
votes
0answers
31 views
How to set default properties in AOSP
Where can I change default Android device properties in my custom AOSP build?
E.g.:
GPS - ON;
Sync - ON;
Brightness - AUTO;
Bluetooth - OFF;
WiFi - OFF;
Sound - default sound;
Vibrate when ring - ...
0
votes
0answers
47 views
How to add additional drivers to android stack
I need to customize the android source code to add another secondary display for the device (this is the requirement). Hence i need to integrate the secondary display's drivers into the android stack ...
2
votes
1answer
46 views
Some Java helps with the Android source please?
For here the Android source of Activity.java.
In particular, the setContentView() method at line 1646:
public void setContentView(int layoutResID) {
getWindow().setContentView(layoutResID);
}
...
0
votes
1answer
73 views
Programmatically enter secret code like *#*#0011#*#* on Android
I have tried the solutions posted on
Programmatically enter secret code like *#*#4636#*#* on Android
for my secret code #*#0011##* like
Intent intent = new Intent(Intent.ACTION_DIAL);
...
0
votes
0answers
25 views
Modify LatinIME Android 2.3
I'm porting Android on my device, but have a problem with keyboard. It's small. I change height and weight of keys. But I stell need to change margin between keys. How can I do that? Thx!
0
votes
0answers
35 views
how to add .so file in android source code build in ASOP
I just want to know how to install application in system folder during build source code with .so file .
I have put .apk file in system folder but confuse where to place .so file . Then after we build ...
0
votes
1answer
47 views
Where and when is generated android.Build.SERIAL in AOSP?
I know, that android.Build.SERIAL is generated at first device boot, but I can't locate where and when exactly. I'm building AOSP Jelly Bean, Android tablet, nosdcard.
2nd question: is this serial ...
1
vote
1answer
67 views
Run shell command as root in system service AOSP
I'm customizing AOSP. I have system service, which starts by SystemServer with other system services. I will execute some commands in shell from my service.
I'm using ...
-2
votes
0answers
22 views
How to specify a default make target for android source
I'm building Android source for Nexus S and everything OK. When i change something or add an app, and i'm supposed to do a simple "make" , it must re-build the source for Nexus S and overwrite ...
1
vote
0answers
36 views
AOSP and IntelliJ IDEA
Has anyone tried to work with AOSP using IntelliJ IDEA? I see in Android sources a specific folder (development/ide/intellij) but I cannot find any information how to use it in case of Android ...
0
votes
1answer
37 views
Where can i browse the Android 2.2 Froyo source of java.lang.String?
I would like to browse it online.
The official Google one is always preferred.
In particular, i want to access
...
0
votes
1answer
57 views
What is in android.util.Log#println_native()?
Here is the android.util.Log source code.
At the very bottom (line 340), what is in the method:
public static native int println_native(int bufID,
int priority, String tag, String msg);
...
0
votes
2answers
69 views
How works ApplicationInfo().uid and are there distinction with system apps?
I am trying to know if I can get root privileges with a system app to execute commands.
In this code:
getApplicationInfo().uid
In the documentation I can read that the uid is the kernel user-ID ...
0
votes
0answers
64 views
Android Open Source Project - How to debug java code and view XML's as graphical Representation
I need some information related to Android open source project as i have started looking into it for some reverse engineering.
How can we debug Android system services (other than logger option) e.g ...
0
votes
0answers
39 views
Unable to build CTS for Maguro
I'm trying to build CTS for Maguro but it's not working for me.
Please find other details below.
AOSP version = android-4.0.4_r1.1
OS = Ubuntu 11.04 x64
When I execute "make cts", I get following ...
0
votes
3answers
481 views
Building AOSP (4.2.2) on Ubuntu 12.10 X64 Fail
I'm trying to build AOSP (4.2.2) on Ubuntu 12.10 X64 and i get following error :
armin@ubuntu:~/source$ make -j1
============================================ PLATFORM_VERSION_CODENAME=REL ...
0
votes
2answers
66 views
How to properly manage changes to Android source?
Let's say I'm building Android or CyanogenMod from source and want to make changes to its source. Also, let's assume I don't want to submit these changes (since they are incomplete or are changes that ...
0
votes
2answers
97 views
Getting resource not found exception in android app
I am trying to build an app in AOSP, my development kit has HDPI density, I have double verified it with the following code snippet:
switch (getResources().getDisplayMetrics().densityDpi) {
case ...
0
votes
0answers
78 views
How to add root priveleges to my application AOSP
I will execute commands in command line from my application.
I have included in my custom Android build Busybox and su applications. But when I'm trying to call command, I'm getting ...
0
votes
0answers
22 views
How to Fix the “KILLED” Stuff During the make process
I am a newer for android development. Recently I just try to build the AOSP through its instruction.
Commands I used listed below:
$lunch full-eng
$make -j16
Then it began compiling. But something ...
3
votes
1answer
285 views
Disabling android services in init.rc
I am working on a new hardware platform on which i need to flash Android OS..
For initial testing i need to stop all the Android services are there in android init.rc file.
I searched for the init.rc ...
0
votes
1answer
157 views
Blocking particular apps in Android (By modifying source code)
The projcet involves modifying Android to block/deny launching of particular apps. So if user tries to launch any of the pre-listed apps by any means, that app shouldn't get launched.
I'll be ...
0
votes
1answer
45 views
Need help in linking 3rd party static library in AOSP
I am trying to port a 3rd party library to mediaplayerservice to enhance the support for many container formats.
I am able to build the 3rd party stack and get the library (static library) from it.
...
-1
votes
1answer
88 views
How to include my own application into android source code? [closed]
I'm looking for the best way to include my own applicaction into the Android source code, with this I expect when I run the command make, it compile and build the whole system including on it my ...
1
vote
0answers
45 views
Android SampleBrowserPlugin Installation failed
I am trying to install the samplebrowserplugin given in the android source code. As given here (https://github.com/android/platform_development/tree/master/samples/BrowserPlugin), I am able to follow ...
3
votes
1answer
62 views
Loading Emulator after building android source code (froyo)
I am using Ubuntu-10.04 (32-bit) with Java-5
and i had build android2.2 source code successfully (verified system.img & root.img in out/target/product/generic directory),
but when i starts my ...
5
votes
1answer
267 views
UI modification of individual application (Phone,Contacts) in ICS AOSP
I have already successfully modified few applications (Launcher,SMS,Gallery,Email,Calendar) of AOSP but I am facing problems to modify Phone,Contacts applications.
I have gone through the following ...
0
votes
1answer
96 views
How to add my application before launcher in AOSP
How to modify boot sequence in AOSP: I will add custom application(registration app - login and password, which will be send to server for authorization purposes) before starting Launcher2 ...
0
votes
2answers
87 views
How to make a small change to Android source code, and incorporate into your own project
I want to make a small change to the Android standard TimePicker class. Specifically, I'm trying to change it so it works in 15 minute increments, rather than 1 minute increments.
This post helped ...
3
votes
1answer
144 views
Download a specific version of source code from android.googlesourcecode.com
I want to download the source code shown in the tags from android.googlesourcecode.
For example, I want to download calendar code
https://android.googlesource.com/platform/packages/apps/Calendar
...
1
vote
1answer
112 views
How are .java files in android_stubs_current_intermediates directory generated?
The Android build process generates(?) Java stubs for each of the classes in the android.jar, and stores them in the following directory:
...



