- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
TL; 博士
从源代码构建 Android Automotive 后,我该怎么做
$ repo init -u https://android.googlesource.com/platform/manifest -b android-8.0.0_r11
$ source build/envsetup.sh
$ lunch car_emu_x86_64-userdebug
$ make -j8 V=1 &>> make.log
export ANDROID_PRODUCT_OUT=/path/to/build_root
car-emulator.sh
并将其放入其中(构建是在 Ubuntu 机器上完成的)
#!/usr/bin/env bash
ANDROID_BUILD_OUT=/path/to/build_root/out
PREBUILT=/path/to/build_root/prebuilts
EMULATOR_OUT=${ANDROID_BUILD_OUT}/target/product/car-x86_64
${PREBUILT}/android-emulator/linux-x86_64/emulator \
-sysdir ${EMULATOR_OUT} \
-system ${EMULATOR_OUT}/system.img \
-ramdisk ${EMULATOR_OUT}/ramdisk.img \
-data ${EMULATOR_OUT}/userdata.img \
-kernel ${PREBUILT}/qemu-kernel/x86_64/kernel-qemu \
-scale 0.7 \
-memory 512 \
-partition-size 1024
最佳答案
这就是我让它在 上工作的方式安卓 8.1.0 分支 OPM5.171019.017:
$ source ./build/envsetup.sh
$ lunch aosp_car_x86_64-eng
$ emulator
随后是终端上的以下输出:
emulator: WARNING: system partition size adjusted to match image file (2562 MB > 200 MB)
emulator: WARNING: data partition size adjusted to match image file (550 MB > 200 MB)
warning: host doesn't support requested feature: CPUID.80000001H:ECX.sse4a [bit 6]
warning: host doesn't support requested feature: CPUID.80000001H:ECX.sse4a [bit 6]
关于android-source - 从源代码构建 Android Automotive,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46423114/
我正尝试在 Android Studio 的模拟器中运行 Android Automotive OS 应用。 当在 Android Studio 中打开一个 Android Automotive OS
如何将 android 汽车操作系统部署到像树莓派这样的嵌入式板中? 我想做的是在 android 汽车操作系统上为我的应用程序开发一个应用程序。 最佳答案 How can I deploy andr
有没有什么方法可以将 android 汽车操作系统安装到普通的 android 平板电脑上以进行调试?据我所知,我只能使用 Android Studio 中的模拟器进行调试。 但我想在物理设备上调试(
TL; 博士 从源代码构建 Android Automotive 后,我该怎么做 运行汽车模拟器? 将 CarService 和相关软件包“安装”到设备上? 细节 我正在尝试构建 Android Au
我在 Ubuntu 16.04 上运行 Android Studio 3.5 我需要创建一个 Automotive 类型的虚拟设备,但是当我尝试创建一个新的虚拟设备时,Select Hardware
我们正在尝试发布 Android Automotive 应用,但在扩展 CarAppService 时遇到一些问题。 免责声明:我对 Android Automotive 非常陌生,因此这个问题可能有
我已经从 https://www.android-x86.org/ 下载了 x86 的 AOSP 代码库.它构建得很好。我想知道如何设置 config或 .mk ,以便我可以编译或构建具有 Andro
我是一名优秀的程序员,十分优秀!