Skip to content

Commit 365021f

Browse files
committed
Remove unnecessary work around for updatable-media
Bug: 190807367 Bug: 229932396 Test: m framework-all Change-Id: I70590910144141a534b926f884e9f08e4e3af5ca
1 parent a347b6c commit 365021f

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

api/api.go

-6
Original file line numberDiff line numberDiff line change
@@ -208,12 +208,6 @@ func createMergedFrameworkImpl(ctx android.LoadHookContext, modules []string) {
208208
props := libraryProps{}
209209
props.Name = proptools.StringPtr("all-framework-module-impl")
210210
props.Static_libs = transformArray(modules, "", ".impl")
211-
// Media module's impl jar is called "updatable-media"
212-
for i, v := range props.Static_libs {
213-
if v == "framework-media.impl" {
214-
props.Static_libs[i] = "updatable-media"
215-
}
216-
}
217211
props.Sdk_version = proptools.StringPtr("module_current")
218212
props.Visibility = []string{"//frameworks/base"}
219213
ctx.CreateModule(java.LibraryFactory, &props)

0 commit comments

Comments
 (0)