From e4fb9966e762852bf17f21c8406501d42fae0b61 Mon Sep 17 00:00:00 2001 From: hc Date: Fri, 10 Apr 2026 17:39:12 +0800 Subject: Initial commit: iHealth BLE scanner app with patched SDK v1.5.0 --- android/settings.gradle | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 android/settings.gradle (limited to 'android/settings.gradle') diff --git a/android/settings.gradle b/android/settings.gradle new file mode 100644 index 0000000..6c47ee0 --- /dev/null +++ b/android/settings.gradle @@ -0,0 +1,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') -- cgit