如何在应用程序内利用Android Car API

时间:2019-03-12 16:03:13

标签: android android-auto android-car-api

我想测试并(如果可能)利用我的Android应用程序中的Android Car API功能。具体来说,我需要能够以android.car.*包的形式导入类,可以在此处查看:https://developer.android.com/reference/android/car/packages.html

我还在Google Git上找到了该仓库:https://android.googlesource.com/platform/packages/services/Car/

如何在我的应用程序中将该库添加为依赖项?

2 个答案:

答案 0 :(得分:7)

该库现在作为Android Studio中Android Q SDK的一部分发布。您需要

  1. 使用SDK管理器将SDK 29更新到次要版本5

  2. 更新应用程序模块build.gradle包含car-lib

    android {
         compileSdkVersion 29
         buildToolsVersion "29.0.3"
         ...
         useLibrary 'android.car'
    }
    
  3. API文档可用here

答案 1 :(得分:0)

对于Linux,您需要先设置环境,然后再构建:

. build/envsetup.sh

lunch aosp_car_x86-userdebug

make -j8