[ Is there a mailing list related to OEM build ? ]
I am building ROM for a dedicated hardware platform which runs
Android. On this platform we run our applications and also we will
allow some third party partner applications to be installed (not via
google play).
I have signed applications before using the company keys etc. But I am
struggling to find location where I should copy these keys so all APKs
on our platforms are signed by company keys during the ASOP build
process?
I don't want to do kludge like find all apks and resign them post
build before system.img is packaged etc.
Also if I want our ROM to contain public keys for our partners where
should those keys be copied so they show up in the rom at proper
place.
$(RECOVERY_INSTALL_OTA_KEYS): extra_keys := $(patsubst %,%.x509.pem,$(PRODUCT_EXTRA_RECOVERY_KEYS))$(RECOVERY_INSTALL_OTA_KEYS): $(OTA_PUBLIC_KEYS) $(DUMPKEY_JAR) $(extra_keys)@echo "DumpPublicKey: $@ <= $(PRIVATE_OTA_PUBLIC_KEYS) $(extra_keys)"java -jar $(DUMPKEY_JAR) $(PRIVATE_OTA_PUBLIC_KEYS) $(extra_keys) > $@
-Subodh