diff options
Diffstat (limited to 'android/deapexer.go')
-rw-r--r-- | android/deapexer.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/deapexer.go b/android/deapexer.go index 6a93f6087..a674b424e 100644 --- a/android/deapexer.go +++ b/android/deapexer.go @@ -98,7 +98,7 @@ func (i DeapexerInfo) PrebuiltExportPath(apexRelativePath string) WritablePath { // Provider that can be used from within the `GenerateAndroidBuildActions` of a module that depends // on a `deapexer` module to retrieve its `DeapexerInfo`. -var DeapexerProvider = blueprint.NewProvider(DeapexerInfo{}) +var DeapexerProvider = blueprint.NewProvider[DeapexerInfo]() // NewDeapexerInfo creates and initializes a DeapexerInfo that is suitable // for use with a prebuilt_apex module. |