If you pull the project from last commit, then car app library apps won't build and launch.
These changes have to be done to successfully build and launch these apps:
I see that gradle version in that commit is 4.0.1. It would be not possible to build the project with short names like compileSdk 32 because this is not available in gradle version 4.0.1. So I updated this version to latest 7.4.0-alpha10
I see that last commit still uses car app library version 1.2.0-rc01, but in this version there is no support for SessionInfo that has been used here. So I updated it to the car app library version 1.3.0-alpha01.
Last point is helloworld tests. There are no dependencies included for these tests. So I added dependencies such as truth, roboelectric etc. to be able to run these tests.
If you pull the project from last commit, then car app library apps won't build and launch. These changes have to be done to successfully build and launch these apps:
4.0.1
. It would be not possible to build the project with short names likecompileSdk 32
because this is not available in gradle version4.0.1
. So I updated this version to latest7.4.0-alpha10
1.2.0-rc01
, but in this version there is no support for SessionInfo that has been used here. So I updated it to the car app library version1.3.0-alpha01
.helloworld tests
. There are no dependencies included for these tests. So I added dependencies such astruth
,roboelectric
etc. to be able to run these tests.