1

I need to access VHAL properties like ABS_ACTIVE, ENGINE_RPM, etc which are restricted with signature permissions. The third-party app access to VHAL is restricted with permissions. I will get OEM signature permission in the production build, but for testing, I need to sign my app with an AOSP certificate or I have to move my app into the system folder.

  1. Where can I find those certificates?
  2. How can I sign my app with those certificates?
Akshay Kumar S
  • 333
  • 3
  • 12

2 Answers2

1

The system images that are published by Google/Volvo/Polestar are user/release-keys and hence you won't be to get those platform keys for it.

0

For testing you can sign your app with the default platform key that comes with android. The Android tree includes test-keys

Chris
  • 11
  • 2
  • I tried signing as mentioned in this [link](https://stackoverflow.com/a/4257367/7094064). It is working in Android mobile AVD, but not in AVD running on the automotive OS. – Akshay Kumar S Apr 18 '21 at 13:14