aboutsummaryrefslogtreecommitdiffstats
path: root/apex/key.go
diff options
context:
space:
mode:
Diffstat (limited to 'apex/key.go')
-rw-r--r--apex/key.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/apex/key.go b/apex/key.go
index 08cd45eb..ffde315f 100644
--- a/apex/key.go
+++ b/apex/key.go
@@ -27,7 +27,7 @@ import (
var String = proptools.String
func init() {
- android.RegisterModuleType("apex_key", apexKeyFactory)
+ android.RegisterModuleType("apex_key", ApexKeyFactory)
android.RegisterSingletonType("apex_keys_text", apexKeysTextFactory)
}
@@ -53,7 +53,7 @@ type apexKeyProperties struct {
Installable *bool
}
-func apexKeyFactory() android.Module {
+func ApexKeyFactory() android.Module {
module := &apexKey{}
module.AddProperties(&module.properties)
android.InitAndroidArchModule(module, android.HostAndDeviceDefault, android.MultilibCommon)