Reputation: 523
I need to install this certificate on my Galaxy Watch, running WearOS: https://cacerts.digicert.com/BaltimoreCyberTrustRoot.crt
I tried a lot of things via wireless ADB but I still didn't manage. Anyone of you experts there have some suggestions on how to do this?
Upvotes: 5
Views: 701
Reputation: 106
It seems that installing the certificate is currently not possible due to the absence of a CA Manager to facilitate the process.
Have you tried the following steps?
push cert to WearOS :adb push local/Root.crt /sdcard/
Install the certificate: adb shell am start -n com.android.certinstaller/.CertInstallerMain -a android.intent.action.VIEW -t application/x-x509-ca-cert -d file:///sdcard/Root.crt
References:
Unable to install CA Root Certificate on WearOS 3.x
Android 11 tightens restrictions on CA certificates
Upvotes: 0