Android source code. Question about building Android from the source, contributing to the Android project, Android kernel development and porting.
0
votes
0answers
5 views
Modify LatineIME 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
6 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
20 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 ...
0
votes
1answer
21 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
15 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
19 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
30 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
35 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
0answers
108 views
How to use Xperia Z camera in Burst Mode?
I'm trying to to trigger the camera on an Xperia Z device in burst mode programatically but with little success so far.
Here's what I've tried so far:
Installed the Sony Add-on SDK for Android but ...
0
votes
2answers
36 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
45 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
22 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
2answers
173 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
53 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
62 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
48 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
16 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
119 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
96 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
32 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
59 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 ...
0
votes
0answers
33 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 ...
-1
votes
0answers
42 views
Android gmail application [closed]
I am looking for information on how to get the Gmail apk freely available without using Android market.
I have two custom android devices with no access to market - one running Android 2.1 and ...
3
votes
1answer
33 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
198 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
58 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
70 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
80 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
84 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:
...
0
votes
1answer
19 views
Error while building Android source code (version 4.1.1_r6): trouble processing “javax/net/ServerSocketFactory.class”:
I am trying to build android source code version 4.1.1_r6. Everything was working fine but suddenly I am getting error "trouble processing "javax/net/ServerSocketFactory.class"
Any help will be ...
1
vote
1answer
112 views
Android AlarmClock source for 2.3.3
I am trying to find the source for the built-in alarm clock for Android 2.3.3.
I checked her: git clone https://android.googlesource.com/platform/packages/apps/DeskClock
But that is for Android 4.0 ...
2
votes
1answer
91 views
Bluetooth missing under System Settings
I'm porting bluetooth to JB (project code discussed here: https://groups.google.com/forum/#!forum/renesas-emev-osp) and I managed to start it up, both manually (bttest enable) and through the Power ...
0
votes
0answers
45 views
Jar files in android
I am trying to enable logs in the android source code. The normal procedure is as follows -
Edit all the files in which you want to enable the logs = 15-20 minutes
Build the whole binary - 1 hour
...
0
votes
1answer
91 views
How to start Android AOSP emulator on MAC
I have downloaded and compiled Android source code per instructions on Android source website (http://source.android.com/source/building.html)
I chose
$ lunch full-eng
an emulator engineering ...
0
votes
0answers
136 views
android launcher replacement source AOSP [closed]
I'm customizing the android source in order to flash it on to the device.
I have a launcher application designed.Now in order to replace the android's custom launcher can I do the following process.
...
0
votes
0answers
67 views
Operation not permitted: Android source building OS X 10.8.2
I am trying to build the Android source tree (Android 4.0.1) on a Mac OS X 10.8.2.
When I do lunch:
/bin/bash: prebuilt/darwin-x86/toolchain/arm-linux-androideabi-4.4.x/bin/arm-linux-androideabi-gcc: ...
9
votes
1answer
177 views
Android source code and repo - What exactly is happening when getting code
I have come across plenty of short questions on minimal aspects of using repo to get Android source or very broad definitions of what repo does and as a result don't really understand what is ...
3
votes
2answers
95 views
Underlying logic of camera's native code
I'm trying to better understand the underlying logic of camera's native code, but I appear to be hitting a dead-end when looking for the method definition for Camera::connect() and other functions ...
0
votes
1answer
121 views
Need to install Java 6 for Mac to compile Android source code
I am trying to setup Android build environment for my Mac 10.8.3
I dont understand, Apple provide instructions on how to revert mac back to Java 1.6 here :
...
0
votes
0answers
198 views
Android Source Code Error : ** Don't have a product spec for: 'full' ** Do you have the right repo manifest?
I am just doing starting out, I have downloaded the Android source, and have now executed following commands:
source build/envsetup.sh
and
lunch
I select the "1. full-eng"
and after this I get
...
3
votes
1answer
87 views
Getting fatal error while downloading android source code using Repo
I want to download android source code.
I followed following steps,
$ curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo
$ chmod a+x ~/bin/repo
$ mkdir android-source
$ cd ...
0
votes
3answers
159 views
m3u8 file not playing in Android Emulator
I am trying to playback a m3u8 file in Android Emulator.
http://devimages.apple.com/iphone/samples/bipbop/bipbopall.m3u8
It's not able to playback the video but audio is heard.
I get the following ...
0
votes
1answer
25 views
Calling MediapPlayer Invoke method from the application
I am trying to implement extra functionalities to the Aosp Mediaplayer (like setspeed in awesomeplayer).
I see in the AOSP code that there is an API called Invoke in mediaplayer.java
public void ...
0
votes
0answers
41 views
Testing jni methods of a custom android image
i've added a c++ library in the android2.3.6 source tree and added a jni folder within the necessary stuff to wrap a c++ method to android and i builded it and i got the native-mylib.so now i want to ...
4
votes
1answer
383 views
AOSP build on custom device
I'm building AOSP 4.2 Jelly Bean.
Everything is ok when I build default full-eng configuration and run it on emulator.
I need to build custom device and run it (on emulator - for testing if it really ...
0
votes
1answer
47 views
How to view/diff android source code using Smartgit
I have android source code repo on UBUntu box. I am wondering what is the easiest way to open various git repos under android source tree using SmartGIT, a GUI git client.
One option is to open each ...
-1
votes
2answers
64 views
How to update a ROM without su? [closed]
I am building a custom ROM for android and would like to provide a mechanism to be able to update the ROM automatically. I understand how to do this if I am allowed to become su by first running ...
1
vote
1answer
293 views
Get system property “java.class.path” from adb shell
Does anybody know how to read system property "java.class.path" using adb shell in Android?
Edit: adb shell getprop java.class.path returns nothing.
0
votes
1answer
54 views
Android Source: Which class(es) turn(s) raw touch input or mouse input into actual input / navigation?
...As I need to modify the source to implement similar control using a gamepad.
2
votes
1answer
91 views
What is the difference between “Notification” and “Attention” in Android?
I am learning about android source code and have studied about LightsService framework.
I know that those coding are different according to device. But I am getting confusion, while seeing the ...


