File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed
Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change 11# react-native-custom-keyboard-kit
22
3-
43![ react-native-custom-keyboard-kit] ( ./react-native-custom-keyboard-kit.png )
54
6-
75## Getting started
86
97` $ npm install react-native-custom-keyboard-kit --save `
2119 - Add ` import com.reactlibrary.RNCustomKeyboardKitPackage; ` to the imports at the top of the file
2220 - Add ` new RNCustomKeyboardKitPackage() ` to the list returned by the ` getPackages() ` method
23212 . Append the following lines to ` android/settings.gradle ` :
24- ```
25- include ': react-native-custom-keyboard-kit '
26- project(': react-native-custom-keyboard-kit ').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-custom-keyboard-kit/android')
27- ```
22+ ```
23+ include ':react-native-custom-keyboard-kit'
24+ project(':react-native-custom-keyboard-kit').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-custom-keyboard-kit/android')
25+ ```
28263. Insert the following lines inside the dependencies block in `android/app/build.gradle`:
29- ```
30- compile project(': react-native-custom-keyboard-kit ')
31- ```
27+ ```
28+ compile project(':react-native-custom-keyboard-kit')
29+ ```
3230
3331#### iOS
3432
You can’t perform that action at this time.
0 commit comments