Skip to content

Commit

Permalink
Fix react-native.config has wrong file for DynamicFont (#2771)
Browse files Browse the repository at this point in the history
  • Loading branch information
M-i-k-e-l authored Oct 17, 2023
1 parent 796d2f3 commit 7b213d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions react-native.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ module.exports = {
// },
android: {
sourceDir: './lib/android/',
packageImportPath: `import com.wix.reactnativeuilib.dynamicfont.DynamicFontModule;
packageImportPath: `import com.wix.reactnativeuilib.dynamicfont.DynamicFontPackage;
import com.wix.reactnativeuilib.highlighterview.HighlighterViewPackage;
import com.wix.reactnativeuilib.keyboardinput.KeyboardInputPackage;
import com.wix.reactnativeuilib.textinput.TextInputDelKeyHandlerPackage;`,
packageInstance: `new DynamicFontModule(),
packageInstance: `new DynamicFontPackage(),
new HighlighterViewPackage(),
new TextInputDelKeyHandlerPackage(),
new KeyboardInputPackage(getApplication())`
Expand Down

0 comments on commit 7b213d8

Please sign in to comment.