diff options
| author | 2024-12-03 00:45:58 +0000 | |
|---|---|---|
| committer | 2024-12-03 00:45:58 +0000 | |
| commit | 96d076e26288224a3758db1a4f49eb3f83f48b7c (patch) | |
| tree | 80c30eff6c286e04490131c0ffec94fe8e306651 /java/app.go | |
| parent | 5c7d97924127d192fa6bf3e094da687909d14d6f (diff) | |
| parent | 71be42d93951aaaf95ba520281a9837f32bd738c (diff) | |
Merge "Automatically add system and system_ext autogen RRO to vendor/product" into main
Diffstat (limited to 'java/app.go')
| -rw-r--r-- | java/app.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/java/app.go b/java/app.go index 7f80160a3..34a548e5a 100644 --- a/java/app.go +++ b/java/app.go @@ -1382,6 +1382,10 @@ func AndroidAppFactory() android.Module { return module } +func AutogeneratedRroModuleName(ctx android.EarlyModuleContext, moduleName, partition string) string { + return fmt.Sprintf("%s__%s__auto_generated_rro_%s", moduleName, ctx.Config().DeviceProduct(), partition) +} + // A dictionary of values to be overridden in the manifest. type Manifest_values struct { // Overrides the value of package_name in the manifest |