Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
185 views

I am working in AOSP for automotive and in Junit test I can get coverage report using Jacoco but it is zero everytime even after tests successfully run. Please help me on this. I am doing this with ...
Arti Gupta's user avatar
0 votes
1 answer
290 views

I have added a two prebuilt apks in AOSP source code. Aurora store. FireFox After building AOSP code Only Aurora store is visible on device but can't Found FireFox app after boot. It's also not ...
Margish thumar's user avatar
1 vote
0 answers
147 views

I'm working on a avc denial in AOSP project. When I try to fix it in the appropriate file: vendor/somevendor/common/sepolicy/product/private/some_app.te allow some_app some_debugfs:dir search; I get ...
Invader Zim's user avatar
3 votes
2 answers
3k views

I've been trying to build ASOP and emulate it on my Ubuntu machine the guide by Android documentation to download the repo. The commands are: repo init -u https://android.googlesource.com/platform/...
Wei Minn's user avatar
  • 311
1 vote
0 answers
86 views

I'm trying to make my own sort of controller that goes along with a system-level app that does have "android.permission.INJECT_EVENTS" permission. The app runs in the background and ...
sumofty's user avatar
  • 11
2 votes
1 answer
910 views

I am working on integrating a prebuilt APK into an AOSP (Android Open Source Project) build for an Android 14 based system, and I would like to configure it as a device admin and owner. Additionally, ...
Hemanth Chowdary's user avatar
0 votes
1 answer
352 views

How to Replace Google Animation Displayed on Boot in Compiling AOSP 13 Version,thanks. Google logo I'd like to change it to another picture. But I can't find the place, I just replaced the ...
zhaomoney's user avatar
0 votes
1 answer
407 views

I have added my launcher along with Launcher3 in AOSP build, On boot up device asks to select default Home app(launcher). How can I set the my launcher as a default launcher from ASOP source code, so ...
Margish thumar's user avatar
5 votes
2 answers
1k views

I'm trying to create an AVD Emulator image from the AOSP source code that I can run using the standard Android Emulator on my M1 Macbook (arm64). I've followed all the standard steps starting from ...
Banana999's user avatar
  • 175
0 votes
1 answer
444 views

I've built two launch targets: aosp_x86_64-eng sdk_phone_x86_64-eng I want to clean the second target only. It took me 3 days to build the first target. At this documentation it says about m clean: ...
zomega's user avatar
  • 2,434
1 vote
1 answer
604 views

klee@linux:~/AOSP/aosp$ make ...... [ 0% 2/12593] build out/target/produc...wer_intermediates/oat/arm/package.odex FAILED: out/target/product/generic/obj/APPS/HTMLViewer_intermediates/oat/arm/...
Klee's user avatar
  • 11
2 votes
2 answers
3k views

lunch aosp_x86_64 m -j16 TARGET_PRODUCT=aosp_x86_64 build completed successfully. $ emulator INFO|Android emulator version 31.3.9.0 (build_id 9070145) (CL:N/A) INFO|Storing crashdata in: /tmp/...
Hello There's user avatar
0 votes
1 answer
1k views

Trying to bring up Android cuttlefish from QEMU. Successfully launched android cuttlefish from QEMU In x86 processor Ubuntu and got Android UI in vysor (tool) app. Facing problems with ARM64 processor ...
GNK's user avatar
  • 1,088
0 votes
1 answer
1k views

I tried to set a persist prop from a system_app, and get it from the mtk_hal_camera process. I tried 2 ways, neither worked: system_app set system_prop OK, but mtk_hal_camera get system_prop FAILED: ...
zhangxaochen's user avatar
  • 34.2k
0 votes
2 answers
345 views

I am building AOSP 10 with a system app, that is provided as pre-built apk. The system app ships custom native libraries. The original apk which i provide in the AOSP sources contains these libraries ...
philipp's user avatar
  • 1,873
0 votes
2 answers
901 views

I'm trying to build Android 13 and flash it to my device, Pixel 3a. I followed the documentation, https://source.android.com/docs/setup/start and https://source.android.com/docs/setup/build/building. ...
Defi Nghĩa's user avatar
0 votes
1 answer
982 views

I am building AOSP 13 on an x64 laptop with 16 GB ram and 12th generation core i7 spec. After successfully syncing my repo with the repo sync command, I just executed the following standard commands. ...
Mehran Alidoost Nia's user avatar
2 votes
4 answers
7k views

cd "$(dirname "out/host/linux-x86/bin/soong_build")" && BUILDER="$PWD/$(basename "out/host/linux-x86/bin/soong_build")" && cd / && env -...
Hello There's user avatar
0 votes
0 answers
169 views

I am struggling with android source code in Android studio. I am confused by some problems which mainly are "cannot resolve symbol xxx", see the picture below: While when I open the symbol ...
Naib's user avatar
  • 1
1 vote
0 answers
1k views

I am trying to add a prebuilt apk to an A13 AOSP build but the apk is never copied to the out directory of the build. Not error thrown during build process but the apk is not copied I have tried the ...
ktom79's user avatar
  • 11
0 votes
1 answer
1k views

I have been trying to build android 13-plus for a while and while building I keep encountering the error: ccache: error: Failed to create temporary file for /mnt/ccache/tmp/tmp.cpp_stdout.3Xmuoo: ...
Ayush Sins's user avatar
2 votes
1 answer
883 views

I've built an AVD system image by following these steps: repo init -u https://android.googlesource.com/platform/manifest -b android13-release --partial clone repo sync lunch sdk car_arm64-...
Robert Baricevic-Petrus's user avatar
1 vote
1 answer
1k views

According to this instruction tried to compile android automotive for raspberry pi 4. https://github.com/grapeup/aaos_local_manifest After . build/envsetup.sh , when lunch command is given, getting ...
Sarbeena's user avatar
1 vote
0 answers
106 views

I have not been able to find how the Android Emulator is passed a device tree when it is started (if at all). In fact, the generated dtb.img/vendor_boot.img device trees are completely empty. They ...
sherrellbc's user avatar
  • 4,938
0 votes
1 answer
609 views

Problem: I'm trying to get the IMEI number from a device using an Android app that I installed as a system-privileged app. However, I'm getting a security exception and the app crashes whenever I try ...
ARCHER's user avatar
  • 124
0 votes
0 answers
255 views

I'm compiling Android 11 on a development board with an RK3568, and everything is working fine. I have an accelerometer sensor that was pre-configured on the board and is functioning as expected; I ...
AlejandroAlis's user avatar
1 vote
0 answers
99 views

I was browsing aosp source and found tw o types of tags with latest security patch. android-security-11.0.0_r71 android-platform-11.0.0_r34 Just curious what's the difference between them! Can anyone ...
Prabhat Maurya's user avatar
0 votes
1 answer
887 views

Need to understand the how can we remove or hide 3button navigation from Android framework side. In landscape mode, 3 button is not hiding. I could see the bounds value for eg ( 0,0,254,273). Anyone ...
Rey's user avatar
  • 475
0 votes
2 answers
2k views

At the moment, I am playing around with Android, figuring out how to build my own custom Android ROM, and everything seems to be going well. All until I start to compile Android. When I enter make -j2 ...
Sl4yerJ3ns's user avatar
-1 votes
1 answer
672 views

In android if we want to set property from cpp file how it can be done. what headers can be included and what api we can call directly to set property. Tried executing setprop command from cpp file ...
Nishant raj's user avatar
2 votes
1 answer
1k views

A few years ago, I was able to easy execute the method described in this resolution (2019). However, when I attempted to test it again today and tried to mount the image, I encountered the following ...
Ragen Dazs's user avatar
  • 2,180
0 votes
0 answers
797 views

I'm trying to build Kotlin android app in AOSP 13 source code. I have added all the dependency in Android.bp file, mentioned in build.gradle file by downloading .jar and .aar files from https://...
Margish thumar's user avatar
1 vote
1 answer
963 views

I am building Android 13 Lunch 11 AOSP CAR X86_64. However, it fails at 98% with "unknown type qemu_device". I am trying to build branches android-13.0.0_r74, and would need your guidance to ...
HucKQC's user avatar
  • 81
0 votes
0 answers
265 views

I am struggling to add a daemon process for system (not vendor). I added this process to init.rc: service start_md /system/bin/start_md class core user root seclabel u:r:start_md:s0 in ...
John Smith's user avatar
1 vote
1 answer
587 views

I have a somehow complicated question and I can't find a good source to find the answer to it. I'm working with AOSP Android 11 and I have full access to the code and can modify literally everything. ...
Top4o's user avatar
  • 676
2 votes
2 answers
2k views

I'm trying to build android 12. I was using Ubuntu 22.04.2 where it worked successfully. Now I've installed a fresh Ubuntu 22.04.3 which is using a new kernel and I started getting this error: ERROR: ...
Vitalii Bonar's user avatar
0 votes
1 answer
860 views

============================================ PLATFORM_VERSION_CODENAME=REL PLATFORM_VERSION=13 LINEAGE_VERSION=20.0-20230817-UNOFFICIAL-star2lte TARGET_PRODUCT=lineage_star2lte TARGET_BUILD_VARIANT=...
Dev Mayele's user avatar
1 vote
0 answers
823 views

While running the script with Gcov and lcov it is giving error for** version '402*', prefer 'A94*'** I have installed Gcov 9.4.0 and same gcc also `` lcov --directory . --base-directory . --gcov-tool /...
Shyam's user avatar
  • 11
0 votes
1 answer
153 views

Trying to build the Alexa auto SDK 4.2 on inside the AOSP setup, but still unable to configure Alexa build inside the AOSP. are we need to write android bp file for all the modules ? How it can build ...
Amit AB's user avatar
  • 71
0 votes
0 answers
208 views

I have been using aidegen to develop on AOSP. For some reason, I cannot get it to work on one of the build tree I am working on. I get this error despite trying to use it in a venv, without venv, each ...
Paul's user avatar
  • 353
1 vote
0 answers
849 views

When I'm trying to update an app using adb install command, I get error Failure [INSTALL_FAILED_PACKAGE_CHANGED: installPackageLI]. I tried to search the error in android source but the error is not ...
mahdi's user avatar
  • 892
0 votes
4 answers
2k views

I am on core i5 400 GB SSD and 16 GB RAM with 6 cores. I an getting this error while building Android AOSP. FAILED: out/soong/build.ninja cd "$(dirname "out/host/linux-x86/bin/...
Raulp's user avatar
  • 8,316
5 votes
1 answer
2k views

While Building the Android AOSP i am getting this error : meson.build:1018:2: ERROR: Problem encountered: Python (3.x) mako module >= 0.8.0 required to build mesa. I checked that mako is already ...
Raulp's user avatar
  • 8,316
2 votes
1 answer
624 views

I've set up the AOSP project, it builds fine (Android 12). I've created a new module under frameworks/base/mylib which is just a Java library. It builds fine and gets added to /system/framework/mylib....
Banana999's user avatar
  • 175
1 vote
0 answers
1k views

I am building a system application for custom ROM. I have access to AOSP and can customize and build the source code with the application apk. I have read for a application to be a system app we need ...
Abhiroop Nandi Ray's user avatar
1 vote
0 answers
52 views

I'm working on a project involving AOSP Android and CHRE nanoapp creation. I've successfully built AOSP (13) for the development board Dragonboard845. Next planning to create nano app in CHRE. please ...
Mereena's user avatar
  • 11
1 vote
0 answers
494 views

Trying to get AOSP 12L to build and run on my computer but when I try to run the 'emulator' cmd I get: emulator emulator: Android emulator version 30.9.0.0 (build_id 7651928) (CL:N/A) 2023-08-01 23:26:...
Grant's user avatar
  • 99
1 vote
0 answers
145 views

I'm working on a project involving AOSP Android and display recognition. I've successfully built AOSP (13) for the development boards Hikey960 and Dragonboard845, and most monitors work flawlessly ...
icouldin's user avatar
  • 205
0 votes
1 answer
527 views

am building a custom version of GrapheneOS and have been attempting to include a prebuilt APK (Mdm.apk) into the build. To achieve this, I added the APK to the 'external/MyApp' directory and then ...
Muhammad Nadeem's user avatar
0 votes
0 answers
612 views

I am new with AOSP and inserting kernel modules. I copied the module to /vendor/lib/modules/ on my phone and then tried to insmod, which is when I get the error. I think I have made it against the ...
Anish Puranik's user avatar

1
3 4
5
6 7
64