Last active
November 23, 2019 02:56
-
-
Save balascript/33c7a3831e054af206ae108bfdaf4a07 to your computer and use it in GitHub Desktop.
sample settings.gradle
This file contains 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
// file: android/app/build.gradle | |
... | |
dependencies { | |
... | |
compile project(':react-native-ble-manager') | |
} |
This file contains 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
// file: android/settings.gradle | |
... | |
include ':react-native-ble-manager' | |
project(':react-native-ble-manager').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-ble-manager/android') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment