This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//First, in your settings.gradle add the following lines - path: gradle/setting.gradel | |
include ':react-native-wheel-picker-android' | |
project(':react-native-wheel-picker-android').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-wheel-picker-android/android') | |
// Then in your build.gradle - path: app/build.gradel | |
implementation project(':react-native-wheel-picker-android') | |
// Then in your MainApplication.java file, in your getPackages() method, add the following line: new WheelPickerPackage() |