3,192 questions
0
votes
0
answers
19
views
How to invoke make command in Android.bp
I am trying to integrate an external tool that uses make as its build system into my Android project.
Specifically, I want to invoke make within the Android.bp file so that the Makefile from this tool ...
2
votes
0
answers
40
views
What is the difference between OEM_PAID and OEM_PRIVATE networks in Android
I see OEM_PAID and OEM_PRIVATE networks in android.
I see below info in PANS documentation.
OEM_PAID Used primarily for apps that can be routed on both OEM and non-OEM networks.
OEM_PRIVATE Used ...
0
votes
0
answers
40
views
AOSP Android 14 (android-14.0.0_r73) - lunch Command Fails to Display Menu
I am trying to build AOSP (Android 14, android-14.0.0_r73), and while the build completes successfully, the lunch command fails to display the menu and does not allow me to select a target.
Issue:
...
0
votes
0
answers
59
views
OpenCV Build Failure on AOSP 13
I am trying to build OpenCV as part of an AOSP 13 build. I cloned OpenCV and integrated it into AOSP using an Android.bp file. However, I keep encountering errors related to missing headers and ...
1
vote
0
answers
25
views
AOSP BUILD FAILED: System image from KATI and SOONG differs from installed file list
I am trying to add a native C++ program in AOSP branch android-15.0.0_r17.
The program is simple, it just print string. The android blueprint looks like below. I want to add this program in system ...
0
votes
0
answers
53
views
Can system/privileged applications update themselves without user interaction?
I am writing an application/service for a product that DOES NOT meet the requirements for PackageInstaller.SessionParams.setRequireUserAction, namely it's written specifically for a piece of hardware ...
0
votes
0
answers
67
views
Android AOSP 13 Native Camera (NDK) Not Receiving Frames in AImageReader
I am working on AOSP 13 on an i.MX8MM Var-SOM board and trying to implement native face detection using NDK Camera2 APIs. My goal is to capture frames using AImageReader and process them with ...
0
votes
0
answers
38
views
How to Create or Mount a `/run` Directory in AOSP?
I am embedding OpenRc into a custom AOSP build, but it requires a /run directory for runtime data, which does not exist by default in AOSP.
Since /data is available, I am considering creating /run ...
0
votes
1
answer
40
views
"no debuggable or profileable process" in android studio
My Android device is an AOSP 13 launch device, based on x86_64 architecture, bootloader is also unlocked. I downloaded latest Android studio from Ubuntu software as my testpc is Ubuntu machine. I have ...
0
votes
0
answers
84
views
How to customize 6.1 kernel config in aosp 15
I am trying to build a GKI kernel image from aosp. After updating the kernel config, the build does not seem to use my config. Instead, it always uses some default config.
How can I build with custom ...
1
vote
1
answer
85
views
Creating an AIDL file to communicate with a service in AOSP
I am adding a new SystemService to a custom build of Android 11 and I need an aidl interface for apps to communicate with it. I am just starting with the aidl file right now and to keep it simple I ...
0
votes
0
answers
38
views
How to remove transient displaying in top of status bar in android?
In car, there is an overlay displaying on top of status bar for applications in full screen when swipe down on top of status bar. Again when swipe down, notification panel is displaying.
But I want to ...
0
votes
0
answers
86
views
Android multi-user downloaded file access across users
I am working on a project that includes both, an Android app and a custom AOSP built. Inside of the app that is running as a regular user (in this case user with id 10), I am downloading a file to ...
0
votes
0
answers
30
views
Soong: How to Copy Prebuilt Binaries and Libraries into the System
I want to install OpenRc into my system.
So I put some folders (sbin, lib64, ...) in prebuilts/openrc/. Then I added prebuilts/openrc/Android.bp to have them installed in /system_ext.
...
0
votes
0
answers
73
views
Customizing AOSP 12 for Raspberry Pi 4: Missing boot.img and Flashing Issues
I am working on customizing AOSP 12 for Raspberry Pi 4. I successfully downloaded and built AOSP 12, and verified that it works properly using the emulator. However, after making customizations, I ...