blob: 6c47ee0e07ceb26b20a222197f854177006b9f5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
pluginManagement { includeBuild("../node_modules/@react-native/gradle-plugin") }
plugins { id("com.facebook.react.settings") }
extensions.configure(com.facebook.react.ReactSettingsExtension){ ex -> ex.autolinkLibrariesFromCommand() }
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = 'iHealthScanner'
include ':app'
include ':ihealthlibrary-react-native'
project(':ihealthlibrary-react-native').projectDir = new File(rootProject.projectDir, '../node_modules/@ihealth/ihealthlibrary-react-native/android')
includeBuild('../node_modules/@react-native/gradle-plugin')
|