Fix .kotlin_builtins glob
The files in kotlin jars seem to be called .kotlin_builtins, not .kotlin_builtin. Test: m checkbuild Change-Id: I541aea758bbef6bb23632836cceb8339b82ffdff
This commit is contained in:
parent
4c03f68763
commit
29788aad61
|
@ -1034,7 +1034,7 @@ func (j *Module) compile(ctx android.ModuleContext, extraSrcJars ...android.Path
|
|||
// TODO(pszczepaniak): Support kotlin-reflect
|
||||
stripFiles = append(stripFiles,
|
||||
"**/*.kotlin_module",
|
||||
"**/*.kotlin_builtin")
|
||||
"**/*.kotlin_builtins")
|
||||
} else {
|
||||
// Only add kotlin-stdlib if not using (on-device) renamed stdlib
|
||||
// (it's expected to be on device bootclasspath)
|
||||
|
|
Loading…
Reference in New Issue