summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
Diffstat (limited to 'android')
-rw-r--r--android/app/build.gradle2
-rw-r--r--android/settings.gradle4
2 files changed, 3 insertions, 3 deletions
diff --git a/android/app/build.gradle b/android/app/build.gradle
index 853b346..9f2c5ae 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -110,7 +110,7 @@ android {
110dependencies { 110dependencies {
111 // The version of react-native is set by the React Native Gradle Plugin 111 // The version of react-native is set by the React Native Gradle Plugin
112 implementation("com.facebook.react:react-android") 112 implementation("com.facebook.react:react-android")
113 implementation project(':ihealthlibrary-react-native') 113 implementation project(':ihealth-sdk')
114 114
115 if (hermesEnabled.toBoolean()) { 115 if (hermesEnabled.toBoolean()) {
116 implementation("com.facebook.react:hermes-android") 116 implementation("com.facebook.react:hermes-android")
diff --git a/android/settings.gradle b/android/settings.gradle
index 6c47ee0..219130e 100644
--- a/android/settings.gradle
+++ b/android/settings.gradle
@@ -10,6 +10,6 @@ dependencyResolutionManagement {
10} 10}
11rootProject.name = 'iHealthScanner' 11rootProject.name = 'iHealthScanner'
12include ':app' 12include ':app'
13include ':ihealthlibrary-react-native' 13include ':ihealth-sdk'
14project(':ihealthlibrary-react-native').projectDir = new File(rootProject.projectDir, '../node_modules/@ihealth/ihealthlibrary-react-native/android') 14project(':ihealth-sdk').projectDir = new File(rootProject.projectDir, '../libs/ihealth-sdk/android')
15includeBuild('../node_modules/@react-native/gradle-plugin') 15includeBuild('../node_modules/@react-native/gradle-plugin')