soong: Hardcode release-keys instead of dev-keys
- We sign inline. Change-Id: Idfac2f3a48973a3068da48f04724d5fa4ee5e934 Signed-off-by: Cyber Knight <cyberknight755@gmail.com>
This commit is contained in:
@@ -1056,7 +1056,7 @@ func (c *config) BuildKeys() string {
|
|||||||
if defaultCert == "" || defaultCert == filepath.Join(testKeyDir, "testkey") {
|
if defaultCert == "" || defaultCert == filepath.Join(testKeyDir, "testkey") {
|
||||||
return "test-keys"
|
return "test-keys"
|
||||||
}
|
}
|
||||||
return "dev-keys"
|
return "release-keys"
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
|
func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
|
||||||
|
@@ -43,7 +43,7 @@ def get_build_keys(product_config):
|
|||||||
default_cert = product_config.get("DefaultAppCertificate", "")
|
default_cert = product_config.get("DefaultAppCertificate", "")
|
||||||
if default_cert == "" or default_cert == os.path.join(TEST_KEY_DIR, "testKey"):
|
if default_cert == "" or default_cert == os.path.join(TEST_KEY_DIR, "testKey"):
|
||||||
return "test-keys"
|
return "test-keys"
|
||||||
return "dev-keys"
|
return "release-keys"
|
||||||
|
|
||||||
def parse_args():
|
def parse_args():
|
||||||
"""Parse commandline arguments."""
|
"""Parse commandline arguments."""
|
||||||
|
Reference in New Issue
Block a user