From 8fe78a6d7c07705f2159f73925bc1ad3aef48521 Mon Sep 17 00:00:00 2001 From: yashwin-foxy Date: Wed, 20 Aug 2025 10:41:26 +0530 Subject: [PATCH] code swapped with physician code --- .cursor/rules/projectstructurerule.mdc | 2 +- PROJECT_STRUCTURE.md | 10 +-- README.md | 4 +- android/app/build.gradle | 4 +- .../com/neoscan_physician/MainActivity.kt | 4 +- .../com/neoscan_physician/MainApplication.kt | 2 +- android/settings.gradle | 2 +- app.json | 4 +- .../project.pbxproj | 84 +++++++++---------- .../xcschemes/NeoScan_Physician.xcscheme | 20 ++--- ios/NeoScan_Physician/AppDelegate.swift | 2 +- ios/NeoScan_Physician/Info.plist | 2 +- ios/NeoScan_Physician/LaunchScreen.storyboard | 2 +- ios/Podfile | 2 +- package-lock.json | 4 +- package.json | 2 +- 16 files changed, 75 insertions(+), 75 deletions(-) diff --git a/.cursor/rules/projectstructurerule.mdc b/.cursor/rules/projectstructurerule.mdc index 259f26a..3604da8 100644 --- a/.cursor/rules/projectstructurerule.mdc +++ b/.cursor/rules/projectstructurerule.mdc @@ -7,7 +7,7 @@ alwaysApply: true ### 1. Root Level Organization ``` -NeoScan_Physician/ +NeoScan_Radiologist/ ├── app/ # Main application code ├── docs/ # Documentation ├── android/ # Android native code diff --git a/PROJECT_STRUCTURE.md b/PROJECT_STRUCTURE.md index 7d7deca..9ea9fe6 100644 --- a/PROJECT_STRUCTURE.md +++ b/PROJECT_STRUCTURE.md @@ -10,7 +10,7 @@ ## 📁 Complete Directory Structure ``` -NeoScan_Physician/ +NeoScan_Radiologist/ ├── app/ # Main application code │ ├── modules/ # Feature-based modules │ │ ├── Auth/ # Authentication module @@ -150,7 +150,7 @@ NeoScan_Physician/ │ │ ├── AndroidManifest.xml # Main manifest │ │ ├── java/ # Java source │ │ │ └── com/ # Package structure -│ │ │ └── neoscan_physician/ +│ │ │ └── neoscan_radiologist/ │ │ │ ├── MainActivity.kt # Main activity │ │ │ └── MainApplication.kt # Application class │ │ └── res/ # Resources @@ -166,7 +166,7 @@ NeoScan_Physician/ │ ├── gradlew.bat # Windows gradle wrapper │ └── settings.gradle # Gradle settings ├── ios/ # iOS native code -│ ├── NeoScan_Physician/ # iOS app +│ ├── NeoScan_Radiologist/ # iOS app │ │ ├── AppDelegate.swift # App delegate │ │ ├── Images.xcassets/ # Image assets │ │ │ ├── AppIcon.appiconset/ # App icons @@ -174,11 +174,11 @@ NeoScan_Physician/ │ │ ├── Info.plist # App info │ │ ├── LaunchScreen.storyboard # Launch screen │ │ └── PrivacyInfo.xcprivacy # Privacy info -│ ├── NeoScan_Physician.xcodeproj/ # Xcode project +│ ├── NeoScan_Radiologist.xcodeproj/ # Xcode project │ │ ├── project.pbxproj # Project file │ │ └── xcshareddata/ # Shared data │ │ └── xcschemes/ # Build schemes -│ │ └── NeoScan_Physician.xcscheme +│ │ └── NeoScan_Radiologist.xcscheme │ └── Podfile # CocoaPods configuration ├── __tests__/ # Test files │ ├── App.test.tsx # App component tests diff --git a/README.md b/README.md index 5389453..cf3ff71 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ A comprehensive React Native application designed for emergency department physi ### Project Structure ``` -NeoScan_Physician/ +NeoScan_Radiologist/ ├── app/ # Main application code │ ├── modules/ # Feature-based modules │ │ ├── Auth/ # Authentication module @@ -120,7 +120,7 @@ NeoScan_Physician/ 1. **Clone the repository** ```bash git clone - cd NeoScan_Physician + cd NeoScan_Radiologist ``` 2. **Install dependencies** diff --git a/android/app/build.gradle b/android/app/build.gradle index e937186..2e6449a 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -79,7 +79,7 @@ android { buildToolsVersion rootProject.ext.buildToolsVersion compileSdk rootProject.ext.compileSdkVersion - namespace "com.neoscan_physician" + namespace "com.neoscan_radiologist" splits { abi { enable true @@ -88,7 +88,7 @@ android { } } defaultConfig { - applicationId "com.neoscan_physician" + applicationId "com.neoscan_radiologist" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode 1 diff --git a/android/app/src/main/java/com/neoscan_physician/MainActivity.kt b/android/app/src/main/java/com/neoscan_physician/MainActivity.kt index dfc252c..7e2a39d 100644 --- a/android/app/src/main/java/com/neoscan_physician/MainActivity.kt +++ b/android/app/src/main/java/com/neoscan_physician/MainActivity.kt @@ -1,4 +1,4 @@ -package com.neoscan_physician +package com.neoscan_radiologist import com.facebook.react.ReactActivity import com.facebook.react.ReactActivityDelegate @@ -11,7 +11,7 @@ class MainActivity : ReactActivity() { * Returns the name of the main component registered from JavaScript. This is used to schedule * rendering of the component. */ - override fun getMainComponentName(): String = "NeoScan_Physician" + override fun getMainComponentName(): String = "NeoScan_Radiologist" /** * Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate] diff --git a/android/app/src/main/java/com/neoscan_physician/MainApplication.kt b/android/app/src/main/java/com/neoscan_physician/MainApplication.kt index eb7dbec..0d9a820 100644 --- a/android/app/src/main/java/com/neoscan_physician/MainApplication.kt +++ b/android/app/src/main/java/com/neoscan_physician/MainApplication.kt @@ -1,4 +1,4 @@ -package com.neoscan_physician +package com.neoscan_radiologist import android.app.Application import com.facebook.react.PackageList diff --git a/android/settings.gradle b/android/settings.gradle index 043a1d7..a9dbed9 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -1,6 +1,6 @@ pluginManagement { includeBuild("../node_modules/@react-native/gradle-plugin") } plugins { id("com.facebook.react.settings") } extensions.configure(com.facebook.react.ReactSettingsExtension){ ex -> ex.autolinkLibrariesFromCommand() } -rootProject.name = 'NeoScan_Physician' +rootProject.name = 'NeoScan_Radiologist' include ':app' includeBuild('../node_modules/@react-native/gradle-plugin') diff --git a/app.json b/app.json index 84d4398..3915dbb 100644 --- a/app.json +++ b/app.json @@ -1,4 +1,4 @@ { - "name": "NeoScan_Physician", - "displayName": "NeoScan_Physician" + "name": "NeoScan_Radiologist", + "displayName": "NeoScan_Radiologist" } diff --git a/ios/NeoScan_Physician.xcodeproj/project.pbxproj b/ios/NeoScan_Physician.xcodeproj/project.pbxproj index ac4b53a..c824f60 100644 --- a/ios/NeoScan_Physician.xcodeproj/project.pbxproj +++ b/ios/NeoScan_Physician.xcodeproj/project.pbxproj @@ -7,7 +7,7 @@ objects = { /* Begin PBXBuildFile section */ - 0C80B921A6F3F58F76C31292 /* libPods-NeoScan_Physician.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-NeoScan_Physician.a */; }; + 0C80B921A6F3F58F76C31292 /* libPods-NeoScan_Radiologist.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-NeoScan_Radiologist.a */; }; 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761780EC2CA45674006654EE /* AppDelegate.swift */; }; 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; }; @@ -27,21 +27,21 @@ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; proxyType = 1; remoteGlobalIDString = 13B07F861A680F5B00A75B9A; - remoteInfo = NeoScan_Physician; + remoteInfo = NeoScan_Radiologist; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 13B07F961A680F5B00A75B9A /* NeoScan_Physician.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NeoScan_Physician.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = NeoScan_Physician/Images.xcassets; sourceTree = ""; }; - 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = NeoScan_Physician/Info.plist; sourceTree = ""; }; - 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = NeoScan_Physician/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 3B4392A12AC88292D35C810B /* Pods-NeoScan_Physician.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NeoScan_Physician.debug.xcconfig"; path = "Target Support Files/Pods-NeoScan_Physician/Pods-NeoScan_Physician.debug.xcconfig"; sourceTree = ""; }; - 5709B34CF0A7D63546082F79 /* Pods-NeoScan_Physician.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NeoScan_Physician.release.xcconfig"; path = "Target Support Files/Pods-NeoScan_Physician/Pods-NeoScan_Physician.release.xcconfig"; sourceTree = ""; }; - 5DCACB8F33CDC322A6C60F78 /* libPods-NeoScan_Physician.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NeoScan_Physician.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = NeoScan_Physician/AppDelegate.swift; sourceTree = ""; }; - 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = NeoScan_Physician/LaunchScreen.storyboard; sourceTree = ""; }; + 13B07F961A680F5B00A75B9A /* NeoScan_Radiologist.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NeoScan_Radiologist.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = NeoScan_Radiologist/Images.xcassets; sourceTree = ""; }; + 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = NeoScan_Radiologist/Info.plist; sourceTree = ""; }; + 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = NeoScan_Radiologist/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 3B4392A12AC88292D35C810B /* Pods-NeoScan_Radiologist.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NeoScan_Radiologist.debug.xcconfig"; path = "Target Support Files/Pods-NeoScan_Radiologist/Pods-NeoScan_Radiologist.debug.xcconfig"; sourceTree = ""; }; + 5709B34CF0A7D63546082F79 /* Pods-NeoScan_Radiologist.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NeoScan_Radiologist.release.xcconfig"; path = "Target Support Files/Pods-NeoScan_Radiologist/Pods-NeoScan_Radiologist.release.xcconfig"; sourceTree = ""; }; + 5DCACB8F33CDC322A6C60F78 /* libPods-NeoScan_Radiologist.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NeoScan_Radiologist.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = NeoScan_Radiologist/AppDelegate.swift; sourceTree = ""; }; + 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = NeoScan_Radiologist/LaunchScreen.storyboard; sourceTree = ""; }; ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 6606F41B1382422DA695F61C /* WorkSans-Bold.ttf */ = {isa = PBXFileReference; name = "WorkSans-Bold.ttf"; path = "../app/assets/fonts/WorkSans-Bold.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 1569DC7537534ED39A79EE9E /* WorkSans-ExtraBold.ttf */ = {isa = PBXFileReference; name = "WorkSans-ExtraBold.ttf"; path = "../app/assets/fonts/WorkSans-ExtraBold.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; @@ -58,7 +58,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0C80B921A6F3F58F76C31292 /* libPods-NeoScan_Physician.a in Frameworks */, + 0C80B921A6F3F58F76C31292 /* libPods-NeoScan_Radiologist.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -73,7 +73,7 @@ name = "Supporting Files"; sourceTree = ""; }; - 13B07FAE1A68108700A75B9A /* NeoScan_Physician */ = { + 13B07FAE1A68108700A75B9A /* NeoScan_Radiologist */ = { isa = PBXGroup; children = ( 13B07FB51A68108700A75B9A /* Images.xcassets */, @@ -82,14 +82,14 @@ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */, 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */, ); - name = NeoScan_Physician; + name = NeoScan_Radiologist; sourceTree = ""; }; 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { isa = PBXGroup; children = ( ED297162215061F000B7C4FE /* JavaScriptCore.framework */, - 5DCACB8F33CDC322A6C60F78 /* libPods-NeoScan_Physician.a */, + 5DCACB8F33CDC322A6C60F78 /* libPods-NeoScan_Radiologist.a */, ); name = Frameworks; sourceTree = ""; @@ -104,7 +104,7 @@ 83CBB9F61A601CBA00E9B192 = { isa = PBXGroup; children = ( - 13B07FAE1A68108700A75B9A /* NeoScan_Physician */, + 13B07FAE1A68108700A75B9A /* NeoScan_Radiologist */, 832341AE1AAA6A7D00B99B32 /* Libraries */, 83CBBA001A601CBA00E9B192 /* Products */, 2D16E6871FA4F8E400B85C8A /* Frameworks */, @@ -119,7 +119,7 @@ 83CBBA001A601CBA00E9B192 /* Products */ = { isa = PBXGroup; children = ( - 13B07F961A680F5B00A75B9A /* NeoScan_Physician.app */, + 13B07F961A680F5B00A75B9A /* NeoScan_Radiologist.app */, ); name = Products; sourceTree = ""; @@ -127,8 +127,8 @@ BBD78D7AC51CEA395F1C20DB /* Pods */ = { isa = PBXGroup; children = ( - 3B4392A12AC88292D35C810B /* Pods-NeoScan_Physician.debug.xcconfig */, - 5709B34CF0A7D63546082F79 /* Pods-NeoScan_Physician.release.xcconfig */, + 3B4392A12AC88292D35C810B /* Pods-NeoScan_Radiologist.debug.xcconfig */, + 5709B34CF0A7D63546082F79 /* Pods-NeoScan_Radiologist.release.xcconfig */, ); path = Pods; sourceTree = ""; @@ -152,9 +152,9 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - 13B07F861A680F5B00A75B9A /* NeoScan_Physician */ = { + 13B07F861A680F5B00A75B9A /* NeoScan_Radiologist */ = { isa = PBXNativeTarget; - buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "NeoScan_Physician" */; + buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "NeoScan_Radiologist" */; buildPhases = ( C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */, 13B07F871A680F5B00A75B9A /* Sources */, @@ -168,9 +168,9 @@ ); dependencies = ( ); - name = NeoScan_Physician; - productName = NeoScan_Physician; - productReference = 13B07F961A680F5B00A75B9A /* NeoScan_Physician.app */; + name = NeoScan_Radiologist; + productName = NeoScan_Radiologist; + productReference = 13B07F961A680F5B00A75B9A /* NeoScan_Radiologist.app */; productType = "com.apple.product-type.application"; }; /* End PBXNativeTarget section */ @@ -186,7 +186,7 @@ }; }; }; - buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "NeoScan_Physician" */; + buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "NeoScan_Radiologist" */; compatibilityVersion = "Xcode 12.0"; developmentRegion = en; hasScannedForEncodings = 0; @@ -199,7 +199,7 @@ projectDirPath = ""; projectRoot = ""; targets = ( - 13B07F861A680F5B00A75B9A /* NeoScan_Physician */, + 13B07F861A680F5B00A75B9A /* NeoScan_Radiologist */, ); }; /* End PBXProject section */ @@ -254,15 +254,15 @@ files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-NeoScan_Physician/Pods-NeoScan_Physician-frameworks-${CONFIGURATION}-input-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/Pods-NeoScan_Radiologist/Pods-NeoScan_Radiologist-frameworks-${CONFIGURATION}-input-files.xcfilelist", ); name = "[CP] Embed Pods Frameworks"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-NeoScan_Physician/Pods-NeoScan_Physician-frameworks-${CONFIGURATION}-output-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/Pods-NeoScan_Radiologist/Pods-NeoScan_Radiologist-frameworks-${CONFIGURATION}-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NeoScan_Physician/Pods-NeoScan_Physician-frameworks.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NeoScan_Radiologist/Pods-NeoScan_Radiologist-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = { @@ -280,7 +280,7 @@ outputFileListPaths = ( ); outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-NeoScan_Physician-checkManifestLockResult.txt", + "$(DERIVED_FILE_DIR)/Pods-NeoScan_Radiologist-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; @@ -293,15 +293,15 @@ files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-NeoScan_Physician/Pods-NeoScan_Physician-resources-${CONFIGURATION}-input-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/Pods-NeoScan_Radiologist/Pods-NeoScan_Radiologist-resources-${CONFIGURATION}-input-files.xcfilelist", ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-NeoScan_Physician/Pods-NeoScan_Physician-resources-${CONFIGURATION}-output-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/Pods-NeoScan_Radiologist/Pods-NeoScan_Radiologist-resources-${CONFIGURATION}-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NeoScan_Physician/Pods-NeoScan_Physician-resources.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NeoScan_Radiologist/Pods-NeoScan_Radiologist-resources.sh\"\n"; showEnvVarsInLog = 0; }; /* End PBXShellScriptBuildPhase section */ @@ -320,7 +320,7 @@ /* Begin PBXTargetDependency section */ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = 13B07F861A680F5B00A75B9A /* NeoScan_Physician */; + target = 13B07F861A680F5B00A75B9A /* NeoScan_Radiologist */; targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ @@ -328,13 +328,13 @@ /* Begin XCBuildConfiguration section */ 13B07F941A680F5B00A75B9A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-NeoScan_Physician.debug.xcconfig */; + baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-NeoScan_Radiologist.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CURRENT_PROJECT_VERSION = 1; ENABLE_BITCODE = NO; - INFOPLIST_FILE = NeoScan_Physician/Info.plist; + INFOPLIST_FILE = NeoScan_Radiologist/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 15.1; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", @@ -347,7 +347,7 @@ "-lc++", ); PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = NeoScan_Physician; + PRODUCT_NAME = NeoScan_Radiologist; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; VERSIONING_SYSTEM = "apple-generic"; @@ -356,12 +356,12 @@ }; 13B07F951A680F5B00A75B9A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-NeoScan_Physician.release.xcconfig */; + baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-NeoScan_Radiologist.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CURRENT_PROJECT_VERSION = 1; - INFOPLIST_FILE = NeoScan_Physician/Info.plist; + INFOPLIST_FILE = NeoScan_Radiologist/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 15.1; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", @@ -374,7 +374,7 @@ "-lc++", ); PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = NeoScan_Physician; + PRODUCT_NAME = NeoScan_Radiologist; SWIFT_VERSION = 5.0; VERSIONING_SYSTEM = "apple-generic"; }; @@ -522,7 +522,7 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "NeoScan_Physician" */ = { + 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "NeoScan_Radiologist" */ = { isa = XCConfigurationList; buildConfigurations = ( 13B07F941A680F5B00A75B9A /* Debug */, @@ -531,7 +531,7 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "NeoScan_Physician" */ = { + 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "NeoScan_Radiologist" */ = { isa = XCConfigurationList; buildConfigurations = ( 83CBBA201A601CBA00E9B192 /* Debug */, diff --git a/ios/NeoScan_Physician.xcodeproj/xcshareddata/xcschemes/NeoScan_Physician.xcscheme b/ios/NeoScan_Physician.xcodeproj/xcshareddata/xcschemes/NeoScan_Physician.xcscheme index f0a736f..80ac527 100644 --- a/ios/NeoScan_Physician.xcodeproj/xcshareddata/xcschemes/NeoScan_Physician.xcscheme +++ b/ios/NeoScan_Physician.xcodeproj/xcshareddata/xcschemes/NeoScan_Physician.xcscheme @@ -15,9 +15,9 @@ + BuildableName = "NeoScan_Radiologist.app" + BlueprintName = "NeoScan_Radiologist" + ReferencedContainer = "container:NeoScan_Radiologist.xcodeproj"> @@ -35,7 +35,7 @@ BlueprintIdentifier = "00E356ED1AD99517003FC87E" BuildableName = "NeoScan_PhysicianTests.xctest" BlueprintName = "NeoScan_PhysicianTests" - ReferencedContainer = "container:NeoScan_Physician.xcodeproj"> + ReferencedContainer = "container:NeoScan_Radiologist.xcodeproj"> @@ -55,9 +55,9 @@ + BuildableName = "NeoScan_Radiologist.app" + BlueprintName = "NeoScan_Radiologist" + ReferencedContainer = "container:NeoScan_Radiologist.xcodeproj"> @@ -72,9 +72,9 @@ + BuildableName = "NeoScan_Radiologist.app" + BlueprintName = "NeoScan_Radiologist" + ReferencedContainer = "container:NeoScan_Radiologist.xcodeproj"> diff --git a/ios/NeoScan_Physician/AppDelegate.swift b/ios/NeoScan_Physician/AppDelegate.swift index cf58499..ed2bc74 100644 --- a/ios/NeoScan_Physician/AppDelegate.swift +++ b/ios/NeoScan_Physician/AppDelegate.swift @@ -24,7 +24,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate { window = UIWindow(frame: UIScreen.main.bounds) factory.startReactNative( - withModuleName: "NeoScan_Physician", + withModuleName: "NeoScan_Radiologist", in: window, launchOptions: launchOptions ) diff --git a/ios/NeoScan_Physician/Info.plist b/ios/NeoScan_Physician/Info.plist index 245b969..73d69c8 100644 --- a/ios/NeoScan_Physician/Info.plist +++ b/ios/NeoScan_Physician/Info.plist @@ -5,7 +5,7 @@ CFBundleDevelopmentRegion en CFBundleDisplayName - NeoScan_Physician + NeoScan_Radiologist CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier diff --git a/ios/NeoScan_Physician/LaunchScreen.storyboard b/ios/NeoScan_Physician/LaunchScreen.storyboard index d2c963d..82ec67c 100644 --- a/ios/NeoScan_Physician/LaunchScreen.storyboard +++ b/ios/NeoScan_Physician/LaunchScreen.storyboard @@ -16,7 +16,7 @@ -