├── .DS_Store ├── DebugServerHost.podspec ├── DebugServerHost ├── .DS_Store ├── Assets │ └── .gitkeep └── Classes │ ├── .DS_Store │ ├── .gitkeep │ ├── DevServerAddr.h │ ├── DevServerAddr.m │ ├── DevServerAddrViewController.h │ ├── DevServerAddrViewController.m │ ├── UIViewController+Utils.h │ └── UIViewController+Utils.m ├── LICENSE ├── ReadMe.md ├── image ├── .DS_Store ├── 1.png └── 2.png ├── index.js ├── ios └── DebugServerHost.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── hong.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ └── hong.xcuserdatad │ └── xcschemes │ ├── DebugServerHost.xcscheme │ └── xcschememanagement.plist └── package.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/.DS_Store -------------------------------------------------------------------------------- /DebugServerHost.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/DebugServerHost.podspec -------------------------------------------------------------------------------- /DebugServerHost/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/DebugServerHost/.DS_Store -------------------------------------------------------------------------------- /DebugServerHost/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DebugServerHost/Classes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/DebugServerHost/Classes/.DS_Store -------------------------------------------------------------------------------- /DebugServerHost/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DebugServerHost/Classes/DevServerAddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/DebugServerHost/Classes/DevServerAddr.h -------------------------------------------------------------------------------- /DebugServerHost/Classes/DevServerAddr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/DebugServerHost/Classes/DevServerAddr.m -------------------------------------------------------------------------------- /DebugServerHost/Classes/DevServerAddrViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/DebugServerHost/Classes/DevServerAddrViewController.h -------------------------------------------------------------------------------- /DebugServerHost/Classes/DevServerAddrViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/DebugServerHost/Classes/DevServerAddrViewController.m -------------------------------------------------------------------------------- /DebugServerHost/Classes/UIViewController+Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/DebugServerHost/Classes/UIViewController+Utils.h -------------------------------------------------------------------------------- /DebugServerHost/Classes/UIViewController+Utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/DebugServerHost/Classes/UIViewController+Utils.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/ReadMe.md -------------------------------------------------------------------------------- /image/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/image/.DS_Store -------------------------------------------------------------------------------- /image/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/image/1.png -------------------------------------------------------------------------------- /image/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/image/2.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/DebugServerHost.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/ios/DebugServerHost.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/DebugServerHost.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/ios/DebugServerHost.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/DebugServerHost.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/ios/DebugServerHost.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/DebugServerHost.xcodeproj/project.xcworkspace/xcuserdata/hong.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/ios/DebugServerHost.xcodeproj/project.xcworkspace/xcuserdata/hong.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ios/DebugServerHost.xcodeproj/xcuserdata/hong.xcuserdatad/xcschemes/DebugServerHost.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/ios/DebugServerHost.xcodeproj/xcuserdata/hong.xcuserdatad/xcschemes/DebugServerHost.xcscheme -------------------------------------------------------------------------------- /ios/DebugServerHost.xcodeproj/xcuserdata/hong.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/ios/DebugServerHost.xcodeproj/xcuserdata/hong.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuwening/react-native-debug-server-host/HEAD/package.json --------------------------------------------------------------------------------