Skip to content

Commit e847f15

Browse files
committed
fix: move the autolinked package file to correct package
1 parent 5c29c40 commit e847f15

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
package com.margelo.nitro.<%- project.package %>
1+
package com.<%- project.package %>
22

33
import com.facebook.react.TurboReactPackage
44
import com.facebook.react.bridge.NativeModule
55
import com.facebook.react.bridge.ReactApplicationContext
66
import com.facebook.react.module.model.ReactModuleInfoProvider
77

8-
class CrnlNitroPackage : TurboReactPackage() {
8+
class <%- project.name -%>Package : TurboReactPackage() {
99
override fun getModule(name: String, reactContext: ReactApplicationContext): NativeModule? {
1010
return null
1111
}
@@ -16,7 +16,7 @@ class CrnlNitroPackage : TurboReactPackage() {
1616

1717
companion object {
1818
init {
19-
System.loadLibrary("<%- project.name -%>")
19+
System.loadLibrary("<%- project.package_cpp -%>")
2020
}
2121
}
2222
}

0 commit comments

Comments
 (0)