├── .gitignore ├── DeviceConnect.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── DeviceConnect.xcscmblueprint │ └── IDEWorkspaceChecks.plist ├── LICENSE.TXT ├── README.md ├── assets └── availability.PNG ├── dConnectDevicePlugin ├── DCMDevicePluginSDK │ ├── DCMDevicePluginSDK.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── DCMDevicePluginSDK.xcscheme │ │ │ └── DCMDevicePluginSDK_framework.xcscheme │ ├── DCMDevicePluginSDK │ │ ├── Classes │ │ │ ├── DCMDriveControllerProfile.m │ │ │ ├── DCMECGProfile.m │ │ │ ├── DCMHealthProfile.m │ │ │ ├── DCMHumidityProfile.m │ │ │ ├── DCMPoseEstimationProfile.m │ │ │ ├── DCMStressEstimationProfile.m │ │ │ ├── DCMTVProfile.m │ │ │ ├── DCMTemperatureProfile.m │ │ │ └── DCMWalkStateProfile.m │ │ ├── DCMDevicePluginSDK-Prefix.pch │ │ └── Headers │ │ │ ├── DCMDevicePluginSDK.h │ │ │ ├── DCMDriveControllerProfile.h │ │ │ ├── DCMECGProfile.h │ │ │ ├── DCMHealthProfile.h │ │ │ ├── DCMHumidityProfile.h │ │ │ ├── DCMPoseEstimationProfile.h │ │ │ ├── DCMStressEstimationProfile.h │ │ │ ├── DCMTVProfile.h │ │ │ ├── DCMTemperatureProfile.h │ │ │ └── DCMWalkStateProfile.h │ ├── DCMDevicePluginSDKTests │ │ ├── DCMDevicePluginSDKTests-Info.plist │ │ ├── DCMDevicePluginSDKTests.m │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── LICENSE.TXT │ └── bin │ │ └── .gitignore ├── dConnectDeviceAllJoyn │ ├── LICENSE.TXT │ ├── bin │ │ └── .gitignore │ ├── dConnectDeviceAllJoyn-Prefix.gcno │ ├── dConnectDeviceAllJoyn.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── dConnectDeviceAllJoyn_framework.xcscheme │ ├── dConnectDeviceAllJoyn │ │ ├── Resources │ │ │ ├── AllJoynIntrospectionXML │ │ │ │ ├── AJNLSFControllerService.h │ │ │ │ ├── AJNLSFControllerService.mm │ │ │ │ ├── AJNLSFLamp.h │ │ │ │ ├── AJNLSFLamp.mm │ │ │ │ ├── LSFControllerService.h │ │ │ │ ├── LSFControllerService.m │ │ │ │ ├── LSFControllerService.xml │ │ │ │ ├── LSFLamp.h │ │ │ │ ├── LSFLamp.m │ │ │ │ └── LSFLamp.xml │ │ │ ├── Base.lproj │ │ │ │ └── Storyboard.storyboard │ │ │ ├── Download_on_the_App_Store_Badge_US-UK_135x40@2x.png │ │ │ ├── Download_on_the_App_Store_Badge_US-UK_135x40~iphone.png │ │ │ ├── Download_on_the_App_Store_JP_135x40@2x.png │ │ │ ├── Download_on_the_App_Store_JP_135x40~iphone.png │ │ │ ├── LIFX_Logo@2.jpg │ │ │ ├── back-arrow@2x.png │ │ │ ├── dconnect_icon.png │ │ │ ├── dconnect_icon_off.png │ │ │ ├── en.lproj │ │ │ │ └── Storyboard.storyboard │ │ │ ├── ja.lproj │ │ │ │ └── Storyboard.storyboard │ │ │ └── module.modulemap │ │ ├── Sources │ │ │ ├── AJInterfaces │ │ │ │ ├── AJNLSFControllerService.h │ │ │ │ ├── AJNLSFControllerService.mm │ │ │ │ ├── AJNLSFLamp.h │ │ │ │ ├── AJNLSFLamp.mm │ │ │ │ ├── DPAllJoynLightingResponseCode.h │ │ │ │ ├── LSFControllerService.h │ │ │ │ ├── LSFControllerService.m │ │ │ │ ├── LSFLamp.h │ │ │ │ └── LSFLamp.m │ │ │ ├── DPAllJoynColorUtility.h │ │ │ ├── DPAllJoynColorUtility.mm │ │ │ ├── DPAllJoynConst.h │ │ │ ├── DPAllJoynConst.mm │ │ │ ├── DPAllJoynDevicePlugin.h │ │ │ ├── DPAllJoynDevicePlugin.m │ │ │ ├── DPAllJoynHandler.h │ │ │ ├── DPAllJoynHandler.mm │ │ │ ├── DPAllJoynMessageConverter.h │ │ │ ├── DPAllJoynMessageConverter.mm │ │ │ ├── DPAllJoynService.h │ │ │ ├── DPAllJoynService.m │ │ │ ├── DPAllJoynServiceEntity.h │ │ │ ├── DPAllJoynServiceEntity.mm │ │ │ ├── DPAllJoynSupportCheck.h │ │ │ ├── DPAllJoynSupportCheck.mm │ │ │ ├── DPAlljoynReachability.h │ │ │ ├── DPAlljoynReachability.m │ │ │ ├── Profiles │ │ │ │ ├── DPAllJoynLightProfile.h │ │ │ │ ├── DPAllJoynLightProfile.mm │ │ │ │ ├── DPAllJoynSystemProfile.h │ │ │ │ └── DPAllJoynSystemProfile.m │ │ │ ├── Utilities │ │ │ │ ├── CALayer+StoryboardUserDefinedRuntimeAttributes.h │ │ │ │ ├── CALayer+StoryboardUserDefinedRuntimeAttributes.m │ │ │ │ ├── DPAllJoynSynchronizedMutableDictionary.h │ │ │ │ ├── DPAllJoynSynchronizedMutableDictionary.m │ │ │ │ ├── NSArray+Query.h │ │ │ │ └── NSArray+Query.m │ │ │ └── Views │ │ │ │ ├── DPAllJoynSettingMasterSubTableViewController.h │ │ │ │ ├── DPAllJoynSettingMasterSubTableViewController.m │ │ │ │ ├── DPAllJoynSettingMasterViewController.h │ │ │ │ ├── DPAllJoynSettingMasterViewController.m │ │ │ │ ├── DPAllJoynSettingTableViewCell.h │ │ │ │ ├── DPAllJoynSettingTableViewCell.m │ │ │ │ └── Tutorials │ │ │ │ ├── DPAllJoynSettingDetailLIFXViewController.h │ │ │ │ └── DPAllJoynSettingDetailLIFXViewController.m │ │ └── Supporting Files │ │ │ ├── Info.plist │ │ │ └── dConnectDeviceAllJoyn-Prefix.pch │ ├── dConnectDeviceAllJoynTests │ │ ├── Sources │ │ │ └── dConnectDeviceAllJoynTests.m │ │ └── Supporting Files │ │ │ └── Info.plist │ ├── dConnectDeviceAllJoyn_resources │ │ └── Info.plist │ ├── deps │ │ ├── .gitignore │ │ ├── AllJoyn │ │ │ └── .gitignore │ │ ├── AllJoynFramework │ │ │ ├── AJNAboutDataListener.h │ │ │ ├── AJNAboutDataListenerImpl.h │ │ │ ├── AJNAboutIcon.h │ │ │ ├── AJNAboutIconObject.h │ │ │ ├── AJNAboutIconProxy.h │ │ │ ├── AJNAboutListener.h │ │ │ ├── AJNAboutListenerImpl.h │ │ │ ├── AJNAboutObject.h │ │ │ ├── AJNAboutObjectDescription.h │ │ │ ├── AJNAboutProxy.h │ │ │ ├── AJNAuthenticationListener.h │ │ │ ├── AJNAuthenticationListenerImpl.h │ │ │ ├── AJNBus.h │ │ │ ├── AJNBusAttachment.h │ │ │ ├── AJNBusController.h │ │ │ ├── AJNBusInterface.h │ │ │ ├── AJNBusListener.h │ │ │ ├── AJNBusListenerImpl.h │ │ │ ├── AJNBusObject.h │ │ │ ├── AJNBusObjectImpl.h │ │ │ ├── AJNClientController.h │ │ │ ├── AJNHandle.h │ │ │ ├── AJNInit.h │ │ │ ├── AJNInterfaceDescription.h │ │ │ ├── AJNInterfaceMember.h │ │ │ ├── AJNInterfaceProperty.h │ │ │ ├── AJNKeyStoreListener.h │ │ │ ├── AJNKeyStoreListenerImpl.h │ │ │ ├── AJNMessage.h │ │ │ ├── AJNMessageArgument.h │ │ │ ├── AJNMessageHeaderFields.h │ │ │ ├── AJNObject.h │ │ │ ├── AJNObserver.h │ │ │ ├── AJNObserverListener.h │ │ │ ├── AJNPasswordManager.h │ │ │ ├── AJNProxyBusObject.h │ │ │ ├── AJNSecurityCredentials.h │ │ │ ├── AJNServiceController.h │ │ │ ├── AJNSessionListener.h │ │ │ ├── AJNSessionListenerImpl.h │ │ │ ├── AJNSessionOptions.h │ │ │ ├── AJNSessionPortListener.h │ │ │ ├── AJNSessionPortListenerImpl.h │ │ │ ├── AJNSignalHandler.h │ │ │ ├── AJNSignalHandlerImpl.h │ │ │ ├── AJNStatus.h │ │ │ ├── AJNTranslator.h │ │ │ ├── AJNTranslatorImpl.h │ │ │ ├── AJNTransportMask.h │ │ │ ├── AJNType.h │ │ │ ├── AJNVersion.h │ │ │ ├── AllJoynFramework_iOS.h │ │ │ └── ReadMe.txt │ │ └── CocoaPods │ │ │ ├── .gitignore │ │ │ ├── AllJoynSSL.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ │ ├── Podfile │ │ │ └── Pods │ │ │ ├── .gitignore │ │ │ ├── AllJoynSSL.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── Pods.xcodeproj │ │ │ └── project.pbxproj │ └── tools │ │ └── AllJoynCodeGenerator │ │ ├── AllJoynCodeGenerator │ │ ├── objcExtensionHeader.xsl │ │ ├── objcExtensionSource.xsl │ │ ├── objcHeader.xsl │ │ └── objcSource.xsl ├── dConnectDeviceChromeCast │ ├── LICENSE.TXT │ ├── bin │ │ └── .gitignore │ ├── dConnectDeviceChromeCast_resources │ │ ├── Info.plist │ │ ├── InfoPlist.strings │ │ ├── dConnectDeviceChromecast_resources-Info.plist │ │ ├── dConnectDeviceChromecast_resources-Prefix.pch │ │ ├── dconnect_icon.png │ │ └── dconnect_icon_off.png │ ├── dConnectDeviceChromecast.xcodeproj │ │ ├── dConnectChromecast.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── dConnectChromecast.xcscheme │ │ │ │ ├── dConnectChromecast_framework.xcscheme │ │ │ │ └── dConnectChromecast_resources.xcscheme │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── dConnectDeviceChromecast │ │ ├── Classes │ │ │ ├── CastComponents │ │ │ │ ├── CastComponents.storyboard │ │ │ │ ├── CastContainerController.h │ │ │ │ ├── CastContainerController.m │ │ │ │ ├── CastDeviceController.h │ │ │ │ ├── CastDeviceController.m │ │ │ │ ├── CastIconButton.h │ │ │ │ ├── CastIconButton.m │ │ │ │ ├── CastInstructionsViewController.h │ │ │ │ ├── CastInstructionsViewController.m │ │ │ │ ├── CastViewController.h │ │ │ │ ├── CastViewController.m │ │ │ │ ├── DeviceTableViewController.h │ │ │ │ ├── DeviceTableViewController.m │ │ │ │ ├── NotificationConstants.h │ │ │ │ ├── NotificationConstants.m │ │ │ │ ├── RepeatingTimerManager.h │ │ │ │ ├── RepeatingTimerManager.m │ │ │ │ ├── SimpleImageFetcher.h │ │ │ │ ├── SimpleImageFetcher.m │ │ │ │ ├── Toast.h │ │ │ │ ├── Toast.m │ │ │ │ ├── TracksTableViewController.h │ │ │ │ └── TracksTableViewController.m │ │ │ ├── DPChromecastCanvasProfile.h │ │ │ ├── DPChromecastCanvasProfile.m │ │ │ ├── DPChromecastDevicePlugin.h │ │ │ ├── DPChromecastDevicePlugin.m │ │ │ ├── DPChromecastGuideViewController.h │ │ │ ├── DPChromecastGuideViewController.m │ │ │ ├── DPChromecastManager.h │ │ │ ├── DPChromecastManager.m │ │ │ ├── DPChromecastMediaContext.h │ │ │ ├── DPChromecastMediaContext.m │ │ │ ├── DPChromecastMediaPlayerProfile.h │ │ │ ├── DPChromecastMediaPlayerProfile.m │ │ │ ├── DPChromecastNotificationProfile.h │ │ │ ├── DPChromecastNotificationProfile.m │ │ │ ├── DPChromecastReachability.h │ │ │ ├── DPChromecastReachability.m │ │ │ ├── DPChromecastService.h │ │ │ ├── DPChromecastService.m │ │ │ ├── DPChromecastSettingViewController.h │ │ │ ├── DPChromecastSettingViewController.m │ │ │ ├── DPChromecastSystemProfile.h │ │ │ └── DPChromecastSystemProfile.m │ │ ├── Headers │ │ │ └── .keep │ │ ├── Resources │ │ │ ├── Chromecast_iPad.storyboard │ │ │ ├── Chromecast_iPhone.storyboard │ │ │ ├── Info.plist │ │ │ ├── icon-cast-connected.png │ │ │ ├── icon-cast-identified.png │ │ │ ├── img01.png │ │ │ ├── img02.png │ │ │ └── img03.png │ │ └── dConnectDeviceChromecast-Prefix.pch │ ├── dConnectDeviceChromecastTests │ │ ├── dConnectChromecastTests-Info.plist │ │ ├── dConnectChromecastTests.m │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── dConnectDeviceChromecast_iPhone.storyboard │ │ ├── dConnectChromecast_iPhone.storyboard-Info.plist │ │ ├── dConnectChromecast_iPhone.storyboard-Prefix.pch │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ └── deps │ │ └── CocoaPods │ │ ├── .gitignore │ │ ├── Podfile │ │ └── Pods │ │ ├── .gitignore │ │ └── Cast.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── dConnectDeviceHitoe │ ├── .gitignore │ ├── LICENSE.TXT │ ├── bin │ │ ├── .gitignore │ │ └── dConnectDeviceHitoe_resources.bundle │ │ │ └── Hitoe_iPad.storyboardc │ │ │ └── UIViewController-slV-06-R6j.nib │ ├── dConnectDeviceHitoe.xcodeproj │ │ └── project.pbxproj │ ├── dConnectDeviceHitoe │ │ ├── Classes │ │ │ ├── DPHitoeConsts.h │ │ │ ├── DPHitoeDevicePlugin.h │ │ │ ├── DPHitoeDevicePlugin.m │ │ │ ├── DPHitoeService.h │ │ │ ├── DPHitoeService.m │ │ │ ├── Profile │ │ │ │ ├── DPHitoeECGProfile.h │ │ │ │ ├── DPHitoeECGProfile.m │ │ │ │ ├── DPHitoeHealthProfile.h │ │ │ │ ├── DPHitoeHealthProfile.m │ │ │ │ ├── DPHitoeServiceDiscoveryProfle.h │ │ │ │ ├── DPHitoeServiceDiscoveryProfle.m │ │ │ │ ├── DPHitoeSystemProfile.h │ │ │ │ └── DPHitoeSystemProfile.m │ │ │ ├── data │ │ │ │ ├── DPHitoeAccelerationData.h │ │ │ │ ├── DPHitoeAccelerationData.m │ │ │ │ ├── DPHitoeHeartData.h │ │ │ │ ├── DPHitoeHeartData.m │ │ │ │ ├── DPHitoeHeartRateData.h │ │ │ │ ├── DPHitoeHeartRateData.m │ │ │ │ ├── DPHitoeManager.h │ │ │ │ ├── DPHitoeManager.m │ │ │ │ ├── DPHitoePoseEstimationData.h │ │ │ │ ├── DPHitoePoseEstimationData.m │ │ │ │ ├── DPHitoeStressEstimationData.h │ │ │ │ ├── DPHitoeStressEstimationData.m │ │ │ │ ├── DPHitoeTargetDeviceData.h │ │ │ │ ├── DPHitoeTargetDeviceData.m │ │ │ │ ├── DPHitoeWalkStateData.h │ │ │ │ └── DPHitoeWalkStateData.m │ │ │ ├── db │ │ │ │ ├── DPHitoeDBManager.h │ │ │ │ ├── DPHitoeDBManager.m │ │ │ │ ├── DPHitoeDevice.h │ │ │ │ └── DPHitoeDevice.m │ │ │ ├── event │ │ │ │ ├── DPHitoeEventDispatcher.h │ │ │ │ ├── DPHitoeEventDispatcher.m │ │ │ │ ├── DPHitoeEventDispatcherFactory.h │ │ │ │ ├── DPHitoeEventDispatcherFactory.m │ │ │ │ ├── DPHitoeEventDispatcherManager.h │ │ │ │ ├── DPHitoeEventDispatcherManager.m │ │ │ │ ├── DPHitoeImmediateEventDispatcher.h │ │ │ │ ├── DPHitoeImmediateEventDispatcher.m │ │ │ │ ├── DPHitoeIntervalEventDispatcher.h │ │ │ │ └── DPHitoeIntervalEventDispatcher.m │ │ │ ├── profile │ │ │ │ ├── DPHitoeBatteryProfile.h │ │ │ │ ├── DPHitoeBatteryProfile.m │ │ │ │ ├── DPHitoeDeviceOrientationProfile.h │ │ │ │ ├── DPHitoeDeviceOrientationProfile.m │ │ │ │ ├── DPHitoePoseEstimationProfile.h │ │ │ │ ├── DPHitoePoseEstimationProfile.m │ │ │ │ ├── DPHitoeStressEstimationProfile.h │ │ │ │ ├── DPHitoeStressEstimationProfile.m │ │ │ │ ├── DPHitoeWalkStateProfile.h │ │ │ │ └── DPHitoeWalkStateProfile.m │ │ │ ├── setting │ │ │ │ ├── cell │ │ │ │ │ ├── DPHitoeAddDeviceCell.h │ │ │ │ │ ├── DPHitoeAddDeviceCell.m │ │ │ │ │ ├── DPHitoeDeviceListCell.h │ │ │ │ │ └── DPHitoeDeviceListCell.m │ │ │ │ ├── control │ │ │ │ │ ├── DPHioteControlDeviceOrientationViewController.m │ │ │ │ │ ├── DPHitoeControlBatteryViewController.h │ │ │ │ │ ├── DPHitoeControlBatteryViewController.m │ │ │ │ │ ├── DPHitoeControlDeviceOrientationViewController.h │ │ │ │ │ ├── DPHitoeControlECGViewController.h │ │ │ │ │ ├── DPHitoeControlECGViewController.m │ │ │ │ │ ├── DPHitoeControlHealthViewController.h │ │ │ │ │ ├── DPHitoeControlHealthViewController.m │ │ │ │ │ ├── DPHitoeControlPoseViewController.h │ │ │ │ │ ├── DPHitoeControlPoseViewController.m │ │ │ │ │ ├── DPHitoeControlStressViewController.h │ │ │ │ │ ├── DPHitoeControlStressViewController.m │ │ │ │ │ ├── DPHitoeControlViewController.h │ │ │ │ │ ├── DPHitoeControlViewController.m │ │ │ │ │ ├── DPHitoeControlWalkViewController.h │ │ │ │ │ ├── DPHitoeControlWalkViewController.m │ │ │ │ │ └── view │ │ │ │ │ │ ├── DPHitoeACCChartView.h │ │ │ │ │ │ ├── DPHitoeACCChartView.m │ │ │ │ │ │ ├── DPHitoeECGChartView.h │ │ │ │ │ │ └── DPHitoeECGChartView.m │ │ │ │ ├── dialog │ │ │ │ │ ├── DPHitoeDialog.h │ │ │ │ │ ├── DPHitoeDialog.m │ │ │ │ │ ├── DPHitoePinCodeDialog.h │ │ │ │ │ ├── DPHitoePinCodeDialog.m │ │ │ │ │ ├── DPHitoeProgressDialog.h │ │ │ │ │ ├── DPHitoeProgressDialog.m │ │ │ │ │ ├── DPHitoeSetShirtDialog.h │ │ │ │ │ ├── DPHitoeSetShirtDialog.m │ │ │ │ │ ├── DPHitoeWakeupDialog.h │ │ │ │ │ ├── DPHitoeWakeupDialog.m │ │ │ │ │ ├── DPHitoeWarningDialog.h │ │ │ │ │ └── DPHitoeWarningDialog.m │ │ │ │ └── viewcontroller │ │ │ │ │ ├── DPHitoeAddDeviceTableViewController.h │ │ │ │ │ ├── DPHitoeAddDeviceTableViewController.m │ │ │ │ │ ├── DPHitoeDeviceControlViewController.h │ │ │ │ │ ├── DPHitoeDeviceControlViewController.m │ │ │ │ │ ├── DPHitoeDeviceListTableViewController.h │ │ │ │ │ └── DPHitoeDeviceListTableViewController.m │ │ │ └── util │ │ │ │ ├── DPHitoeMDERFloatConvertUtil.h │ │ │ │ ├── DPHitoeMDERFloatConvertUtil.m │ │ │ │ ├── DPHitoeRawDataParseUtil.h │ │ │ │ ├── DPHitoeRawDataParseUtil.m │ │ │ │ ├── DPHitoeStringUtil.h │ │ │ │ └── DPHitoeStringUtil.m │ │ ├── Headers │ │ │ └── .gitkeep │ │ └── Resources │ │ │ ├── DPHitoeTable.xcdatamodeld │ │ │ └── DPHitoeTable.xcdatamodel │ │ │ │ └── contents │ │ │ ├── Drawable_iPad │ │ │ ├── hitoe_explain960.png │ │ │ ├── hitoe_input_pin960.png │ │ │ ├── hitoe_set960.png │ │ │ ├── mark_battery01_960.png │ │ │ ├── mark_battery02_960.png │ │ │ ├── mark_battery03_960.png │ │ │ ├── mark_battery04_960.png │ │ │ ├── mark_battery05_960.png │ │ │ ├── mark_heartrate960.png │ │ │ ├── pose_backward960.png │ │ │ ├── pose_default960.png │ │ │ ├── pose_facedown960.png │ │ │ ├── pose_faceleft960.png │ │ │ ├── pose_faceright960.png │ │ │ ├── pose_faceup960.png │ │ │ ├── pose_forward960.png │ │ │ ├── pose_leftside960.png │ │ │ ├── pose_rightside960.png │ │ │ ├── pose_running960.png │ │ │ ├── pose_standing960.png │ │ │ └── pose_walking960.png │ │ │ ├── Drawable_iPhone │ │ │ ├── bg_orientation_graph.png │ │ │ ├── check_off.png │ │ │ ├── check_on.png │ │ │ ├── hitoe_explain.png │ │ │ ├── hitoe_input_pin.png │ │ │ ├── hitoe_set.png │ │ │ ├── mark_battery01.png │ │ │ ├── mark_battery02.png │ │ │ ├── mark_battery03.png │ │ │ ├── mark_battery04.png │ │ │ ├── mark_battery05.png │ │ │ ├── mark_heartrate.png │ │ │ ├── pose_backward.png │ │ │ ├── pose_default.png │ │ │ ├── pose_facedown.png │ │ │ ├── pose_faceleft.png │ │ │ ├── pose_faceright.png │ │ │ ├── pose_faceup.png │ │ │ ├── pose_forward.png │ │ │ ├── pose_leftside.png │ │ │ ├── pose_rightside.png │ │ │ ├── pose_running.png │ │ │ ├── pose_standing.png │ │ │ └── pose_walking.png │ │ │ ├── HitoeShirtDialog_iPad.storyboard │ │ │ ├── HitoeShirtDialog_iPhone.storyboard │ │ │ ├── HitoeWakeupDialog_iPad.storyboard │ │ │ ├── HitoeWakeupDialog_iPhone.storyboard │ │ │ ├── HitoeWarningDialog_iPad.storyboard │ │ │ ├── HitoeWarningDialog_iPhone.storyboard │ │ │ ├── Hitoe_iPad.storyboard │ │ │ ├── Hitoe_iPhone.storyboard │ │ │ ├── PinCodeDialog_iPad.storyboard │ │ │ ├── PinCodeDialog_iPhone.storyboard │ │ │ ├── ProgressDialog.storyboard │ │ │ ├── dconnect_icon.png │ │ │ └── dconnect_icon_off.png │ └── dConnectDeviceHitoe_resources │ │ └── Info.plist ├── dConnectDeviceHost │ ├── LICENSE.TXT │ ├── bin │ │ └── .gitignore │ ├── dConnectDeviceHost.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── dConnectDeviceHost.xcscheme │ │ │ ├── dConnectDeviceHost_framework.xcscheme │ │ │ └── dConnectDeviceHost_resources.xcscheme │ ├── dConnectDeviceHost │ │ ├── Classes │ │ │ ├── DPHostDevicePlugin.h │ │ │ ├── DPHostDevicePlugin.m │ │ │ ├── DPHostReachability.h │ │ │ ├── DPHostReachability.m │ │ │ ├── DPHostService.h │ │ │ ├── DPHostService.m │ │ │ ├── DPHostUtils.h │ │ │ ├── DPHostUtils.m │ │ │ └── profile │ │ │ │ ├── DPHostBatteryProfile.h │ │ │ │ ├── DPHostBatteryProfile.m │ │ │ │ ├── DPHostCanvas │ │ │ │ ├── DPHostCanvasDrawImage.h │ │ │ │ ├── DPHostCanvasDrawImage.m │ │ │ │ ├── DPHostCanvasDrawObject.h │ │ │ │ ├── DPHostCanvasDrawObject.m │ │ │ │ ├── DPHostCanvasUIViewController.h │ │ │ │ ├── DPHostCanvasUIViewController.m │ │ │ │ ├── DPHostCanvasView.h │ │ │ │ └── DPHostCanvasView.m │ │ │ │ ├── DPHostCanvasProfile.h │ │ │ │ ├── DPHostCanvasProfile.m │ │ │ │ ├── DPHostConnectionProfile.h │ │ │ │ ├── DPHostConnectionProfile.m │ │ │ │ ├── DPHostDeviceOrientationProfile.h │ │ │ │ ├── DPHostDeviceOrientationProfile.m │ │ │ │ ├── DPHostFileProfile.h │ │ │ │ ├── DPHostFileProfile.m │ │ │ │ ├── DPHostGeolocationProfile.h │ │ │ │ ├── DPHostGeolocationProfile.m │ │ │ │ ├── DPHostLightProfile.h │ │ │ │ ├── DPHostLightProfile.m │ │ │ │ ├── DPHostMediaPlayer │ │ │ │ ├── DPHostMediaContext.h │ │ │ │ ├── DPHostMediaContext.m │ │ │ │ ├── DPHostMediaPlayerProfile.h │ │ │ │ ├── DPHostMediaPlayerProfile.m │ │ │ │ └── Players │ │ │ │ │ ├── DPHostIPodAudioPlayer.h │ │ │ │ │ ├── DPHostIPodAudioPlayer.m │ │ │ │ │ ├── DPHostMediaPlayer.h │ │ │ │ │ ├── DPHostMediaPlayer.m │ │ │ │ │ ├── DPHostMediaPlayerFactory.h │ │ │ │ │ ├── DPHostMediaPlayerFactory.m │ │ │ │ │ ├── DPHostMoviePlayer.h │ │ │ │ │ └── DPHostMoviePlayer.m │ │ │ │ ├── DPHostMediaStreamRecording │ │ │ │ ├── DPHostMediaStreamRecordingProfile.h │ │ │ │ ├── DPHostMediaStreamRecordingProfile.m │ │ │ │ ├── DPHostRecorderUtils.h │ │ │ │ ├── DPHostRecorderUtils.m │ │ │ │ └── Recorders │ │ │ │ │ ├── Audio │ │ │ │ │ ├── DPHostAudioRecorder.h │ │ │ │ │ └── DPHostAudioRecorder.m │ │ │ │ │ ├── DPHostPhotoRecorder.h │ │ │ │ │ ├── DPHostPhotoRecorder.m │ │ │ │ │ ├── DPHostRecorder.h │ │ │ │ │ ├── DPHostRecorder.m │ │ │ │ │ ├── DPHostRecorderManager.h │ │ │ │ │ ├── DPHostRecorderManager.m │ │ │ │ │ ├── DPHostStreamRecorder.h │ │ │ │ │ ├── DPHostStreamRecorder.m │ │ │ │ │ ├── Photo │ │ │ │ │ ├── DPHostCameraRecorder.h │ │ │ │ │ ├── DPHostCameraRecorder.m │ │ │ │ │ ├── DPHostSimpleHttpServer.h │ │ │ │ │ └── DPHostSimpleHttpServer.m │ │ │ │ │ └── Video │ │ │ │ │ ├── DPHostVideoRecorder.h │ │ │ │ │ └── DPHostVideoRecorder.m │ │ │ │ ├── DPHostNotificationProfile.h │ │ │ │ ├── DPHostNotificationProfile.m │ │ │ │ ├── DPHostPhoneProfile.h │ │ │ │ ├── DPHostPhoneProfile.m │ │ │ │ ├── DPHostProximityProfile.h │ │ │ │ ├── DPHostProximityProfile.m │ │ │ │ ├── DPHostSettingProfile.h │ │ │ │ ├── DPHostSettingProfile.m │ │ │ │ ├── DPHostSystemProfile.h │ │ │ │ ├── DPHostSystemProfile.m │ │ │ │ ├── DPHostTouchProfile.h │ │ │ │ ├── DPHostTouchProfile.m │ │ │ │ ├── DPHostTouchUIViewController.h │ │ │ │ ├── DPHostTouchUIViewController.m │ │ │ │ ├── DPHostTouchView.h │ │ │ │ ├── DPHostTouchView.m │ │ │ │ ├── DPHostVibrationProfile.h │ │ │ │ ├── DPHostVibrationProfile.m │ │ │ │ └── util │ │ │ │ ├── DPHostDeviceRepeatExecutor.h │ │ │ │ ├── DPHostDeviceRepeatExecutor.m │ │ │ │ ├── DPHostTimeoutSchedule.h │ │ │ │ ├── DPHostTimeoutSchedule.m │ │ │ │ ├── DPHostUtil.h │ │ │ │ └── DPHostUtil.m │ │ ├── DPHostDevicePlugin-Prefix.pch │ │ └── Headers │ │ │ └── .keep │ ├── dConnectDeviceHostTests │ │ ├── dConnectDeviceHostTests-Info.plist │ │ ├── dConnectDeviceHostTests.m │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ └── dConnectDeviceHost_resources │ │ ├── close_small_button_focus.png │ │ ├── close_small_button_normal.png │ │ ├── close_small_button_push.png │ │ ├── dConnectDeviceHost.storyboard │ │ ├── dConnectDeviceHost_resources-Info.plist │ │ ├── dConnectDeviceHost_resources-Prefix.pch │ │ ├── dconnect_icon.png │ │ ├── dconnect_icon_off.png │ │ └── en.lproj │ │ └── InfoPlist.strings ├── dConnectDeviceHue │ ├── bin │ │ └── .gitignore │ ├── dConnectDeviceHue.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── dConnectDeviceHueResources.xcscheme │ │ │ └── dConnectDeviceHue_framework.xcscheme │ ├── dConnectDeviceHue │ │ ├── Classes │ │ │ ├── DPHueDevicePlugin.h │ │ │ ├── DPHueDevicePlugin.m │ │ │ ├── DPHueItemBridge.h │ │ │ ├── DPHueItemBridge.m │ │ │ ├── DPHueLightProfile.h │ │ │ ├── DPHueLightProfile.m │ │ │ ├── DPHueLightService.h │ │ │ ├── DPHueLightService.m │ │ │ ├── DPHueManager.h │ │ │ ├── DPHueManager.m │ │ │ ├── DPHueModelController.h │ │ │ ├── DPHueModelController.m │ │ │ ├── DPHueReachability.h │ │ │ ├── DPHueReachability.m │ │ │ ├── DPHueService.h │ │ │ ├── DPHueService.m │ │ │ ├── DPHueSettingViewController1.h │ │ │ ├── DPHueSettingViewController1.m │ │ │ ├── DPHueSettingViewController2.h │ │ │ ├── DPHueSettingViewController2.m │ │ │ ├── DPHueSettingViewController3.h │ │ │ ├── DPHueSettingViewController3.m │ │ │ ├── DPHueSettingViewController4.h │ │ │ ├── DPHueSettingViewController4.m │ │ │ ├── DPHueSettingViewControllerBase.h │ │ │ ├── DPHueSettingViewControllerBase.m │ │ │ ├── DPHueSystemProfile.h │ │ │ ├── DPHueSystemProfile.m │ │ │ ├── DPHueViewController.h │ │ │ ├── DPHueViewController.m │ │ │ └── util │ │ │ │ ├── DPHueDeviceRepeatExecutor.h │ │ │ │ ├── DPHueDeviceRepeatExecutor.m │ │ │ │ ├── DPHueTimeoutSchedule.h │ │ │ │ ├── DPHueTimeoutSchedule.m │ │ │ │ ├── DPHueUtil.h │ │ │ │ └── DPHueUtil.m │ │ ├── Headers │ │ │ ├── .keep │ │ │ └── DPHueConst.h │ │ ├── Resources │ │ │ ├── HueSetting_iPad.storyboard │ │ │ ├── HueSetting_iPhone.storyboard │ │ │ ├── Info.plist │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── hue001.png │ │ │ ├── hue002.png │ │ │ ├── hue003.png │ │ │ ├── hue004.png │ │ │ ├── hue_small_icon.png │ │ │ └── ja.lproj │ │ │ │ └── Localizable.strings │ │ └── dConnectDeviceHue-Prefix.pch │ ├── dConnectDeviceHueTests │ │ ├── dConnectDeviceHueTests-Info.plist │ │ ├── dConnectDeviceHueTests.m │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── ja.lproj │ │ │ └── InfoPlist.strings │ └── dConnectDeviceHue_resources │ │ ├── dConnectDeviceHue_resources-Info.plist │ │ ├── dConnectDeviceHue_resources-Prefix.pch │ │ ├── dconnect_icon.png │ │ ├── dconnect_icon_off.png │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ └── ja.lproj │ │ └── InfoPlist.strings ├── dConnectDeviceIRKit │ ├── LICENSE.TXT │ ├── bin │ │ └── .gitignore │ ├── dConnectDeviceIRKit.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── dConnectDeviceIRKit.xcscheme │ │ │ ├── dConnectDeviceIRKit_framework.xcscheme │ │ │ └── dConnectDeviceIRKit_resources.xcscheme │ ├── dConnectDeviceIRKit │ │ ├── Classes │ │ │ ├── DPIRKitConst.h │ │ │ ├── DPIRKitDevicePlugin.h │ │ │ ├── DPIRKitDevicePlugin.m │ │ │ ├── DPIRKitService.h │ │ │ ├── DPIRKitService.m │ │ │ ├── DPIRKitVirtualService.h │ │ │ ├── DPIRKitVirtualService.m │ │ │ ├── alert │ │ │ │ ├── DPIRKitCategorySelectDialog.h │ │ │ │ ├── DPIRKitCategorySelectDialog.m │ │ │ │ ├── DPIRKitDialog.h │ │ │ │ ├── DPIRKitDialog.m │ │ │ │ ├── DPIRKitVirtualDeviceCreateDialog.h │ │ │ │ └── DPIRKitVirtualDeviceCreateDialog.m │ │ │ ├── db │ │ │ │ ├── DPIRKitDBManager.h │ │ │ │ ├── DPIRKitDBManager.m │ │ │ │ ├── DPIRKitRESTfulRequest.h │ │ │ │ ├── DPIRKitRESTfulRequest.m │ │ │ │ ├── DPIRKitVirtualDevice.h │ │ │ │ └── DPIRKitVirtualDevice.m │ │ │ ├── irkit │ │ │ │ ├── DPIRKitDevice.h │ │ │ │ ├── DPIRKitDevice.m │ │ │ │ ├── DPIRKitManager.h │ │ │ │ ├── DPIRKitManager.m │ │ │ │ ├── DPIRKit_irkit.h │ │ │ │ ├── NSString+Hex.h │ │ │ │ └── NSString+Hex.m │ │ │ ├── network │ │ │ │ ├── DPIRKitReachability.h │ │ │ │ ├── DPIRKitReachability.m │ │ │ │ ├── DPIRKitWiFiUtil.h │ │ │ │ └── DPIRKitWiFiUtil.m │ │ │ ├── profile │ │ │ │ ├── DPIRKitLightProfile.h │ │ │ │ ├── DPIRKitLightProfile.m │ │ │ │ ├── DPIRKitPowerProfile.h │ │ │ │ ├── DPIRKitPowerProfile.m │ │ │ │ ├── DPIRKitRemoteControllerProfile.h │ │ │ │ ├── DPIRKitRemoteControllerProfile.m │ │ │ │ ├── DPIRKitSystemProfile.h │ │ │ │ ├── DPIRKitSystemProfile.m │ │ │ │ ├── DPIRKitTVProfile.h │ │ │ │ └── DPIRKitTVProfile.m │ │ │ └── setting │ │ │ │ ├── DPIRKitModelController.h │ │ │ │ ├── DPIRKitModelController.m │ │ │ │ └── viewcontroller │ │ │ │ ├── DPIRKitConnectionGuideViewController.h │ │ │ │ ├── DPIRKitConnectionGuideViewController.m │ │ │ │ ├── DPIRKitPageViewController.h │ │ │ │ ├── DPIRKitPageViewController.m │ │ │ │ ├── DPIRKitRegisterIRViewController.h │ │ │ │ ├── DPIRKitRegisterIRViewController.m │ │ │ │ ├── DPIRKitSettingViewController.h │ │ │ │ ├── DPIRKitSettingViewController.m │ │ │ │ ├── DPIRKitVirtualDeviceViewController.h │ │ │ │ ├── DPIRKitVirtualDeviceViewController.m │ │ │ │ ├── DPIRKitVirtualProfileViewController.h │ │ │ │ ├── DPIRKitVirtualProfileViewController.m │ │ │ │ ├── DPIRKitWiFiFormViewController.h │ │ │ │ ├── DPIRKitWiFiFormViewController.m │ │ │ │ ├── DPIRKitWiFiSelectionGuideViewController.h │ │ │ │ └── DPIRKitWiFiSelectionGuideViewController.m │ │ ├── Headers │ │ │ └── DPIRKit.h │ │ ├── Resources │ │ │ ├── Base.lproj │ │ │ │ ├── Storyboard_iPad.storyboard │ │ │ │ └── Storyboard_iPhone.storyboard │ │ │ ├── CategorySelectDialog.storyboard │ │ │ ├── DPIRKitTable.xcdatamodeld │ │ │ │ └── DPIRKitTable.xcdatamodel │ │ │ │ │ └── contents │ │ │ ├── VirtualDeviceCreateDialog.storyboard │ │ │ ├── dConnectDeviceIRKit-Info.plist │ │ │ ├── en.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Storyboard_iPad.strings │ │ │ │ └── Storyboard_iPhone.strings │ │ │ ├── irkit01.png │ │ │ ├── irkit02.png │ │ │ ├── irkit03.png │ │ │ ├── irkit04.png │ │ │ ├── irkit05.png │ │ │ ├── irkit06.png │ │ │ ├── irkit07.png │ │ │ ├── irkit08.png │ │ │ ├── irkit09.png │ │ │ ├── irkit10.png │ │ │ ├── ja.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── Storyboard_iPad.strings │ │ │ │ └── Storyboard_iPhone.strings │ │ │ ├── light.png │ │ │ └── tv.png │ │ ├── dConnectDeviceIRKit-Prefix.pch │ │ └── dConnectDeviceIRKit.framework │ │ │ ├── Headers │ │ │ └── DPIRKit.h │ │ │ ├── Versions │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ └── DPIRKit.h │ │ │ │ └── dConnectDeviceIRKit │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ └── DPIRKit.h │ │ │ │ └── dConnectDeviceIRKit │ │ │ └── dConnectDeviceIRKit │ ├── dConnectDeviceIRKitTests │ │ ├── dConnectDeviceIRKitTests-Info.plist │ │ ├── dConnectDeviceIRKitTests.m │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ └── dConnectDeviceIRKit_resources │ │ ├── dConnectDeviceIRKit_resources-Info.plist │ │ ├── dConnectDeviceIRKit_resources-Prefix.pch │ │ ├── dconnect_icon.png │ │ ├── dconnect_icon_off.png │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── ja.lproj │ │ └── InfoPlist.strings │ │ ├── remotecontroller.json │ │ └── tv.json ├── dConnectDeviceLinking │ ├── Libs │ │ └── Release │ │ │ └── .gitignore │ ├── bin │ │ └── .gitignore │ ├── dConnectDeviceLinking.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── dConnectDeviceLinking │ │ ├── Classes │ │ │ ├── DPLinkingDevicePlugin.h │ │ │ ├── DPLinkingDevicePlugin.m │ │ │ ├── beacon │ │ │ │ ├── DPLinkingAtmosphericPressureData.h │ │ │ │ ├── DPLinkingAtmosphericPressureData.m │ │ │ │ ├── DPLinkingBattryData.h │ │ │ │ ├── DPLinkingBattryData.m │ │ │ │ ├── DPLinkingBeacon.h │ │ │ │ ├── DPLinkingBeacon.m │ │ │ │ ├── DPLinkingBeaconManager.h │ │ │ │ ├── DPLinkingBeaconManager.m │ │ │ │ ├── DPLinkingGattData.h │ │ │ │ ├── DPLinkingGattData.m │ │ │ │ ├── DPLinkingHumidityData.h │ │ │ │ ├── DPLinkingHumidityData.m │ │ │ │ ├── DPLinkingRawData.h │ │ │ │ ├── DPLinkingRawData.m │ │ │ │ ├── DPLinkingTemperatureData.h │ │ │ │ ├── DPLinkingTemperatureData.m │ │ │ │ ├── profile │ │ │ │ │ ├── DPLinkingBeaconAtmosphericPressureProfile.h │ │ │ │ │ ├── DPLinkingBeaconAtmosphericPressureProfile.m │ │ │ │ │ ├── DPLinkingBeaconBatteryProfile.h │ │ │ │ │ ├── DPLinkingBeaconBatteryProfile.m │ │ │ │ │ ├── DPLinkingBeaconHumidityProfile.h │ │ │ │ │ ├── DPLinkingBeaconHumidityProfile.m │ │ │ │ │ ├── DPLinkingBeaconKeyEventProfile.h │ │ │ │ │ ├── DPLinkingBeaconKeyEventProfile.m │ │ │ │ │ ├── DPLinkingBeaconProximityProfile.h │ │ │ │ │ ├── DPLinkingBeaconProximityProfile.m │ │ │ │ │ ├── DPLinkingBeaconTemperatureProfile.h │ │ │ │ │ ├── DPLinkingBeaconTemperatureProfile.m │ │ │ │ │ └── util │ │ │ │ │ │ ├── DPLinkingBeaconAtmosphericPressureOnce.h │ │ │ │ │ │ ├── DPLinkingBeaconAtmosphericPressureOnce.m │ │ │ │ │ │ ├── DPLinkingBeaconBatteryOnce.h │ │ │ │ │ │ ├── DPLinkingBeaconBatteryOnce.m │ │ │ │ │ │ ├── DPLinkingBeaconHumidityOnce.h │ │ │ │ │ │ ├── DPLinkingBeaconHumidityOnce.m │ │ │ │ │ │ ├── DPLinkingBeaconKeyEventOnce.h │ │ │ │ │ │ ├── DPLinkingBeaconKeyEventOnce.m │ │ │ │ │ │ ├── DPLinkingBeaconProximityOnce.h │ │ │ │ │ │ ├── DPLinkingBeaconProximityOnce.m │ │ │ │ │ │ ├── DPLinkingBeaconTemperatureOnce.h │ │ │ │ │ │ ├── DPLinkingBeaconTemperatureOnce.m │ │ │ │ │ │ ├── DPLinkingBeaconUtil.h │ │ │ │ │ │ └── DPLinkingBeaconUtil.m │ │ │ │ └── service │ │ │ │ │ ├── DPLinkingBeaconService.h │ │ │ │ │ └── DPLinkingBeaconService.m │ │ │ ├── linking │ │ │ │ ├── DPLinkingDevice.h │ │ │ │ ├── DPLinkingDevice.m │ │ │ │ ├── DPLinkingDeviceManager.h │ │ │ │ ├── DPLinkingDeviceManager.m │ │ │ │ ├── DPLinkingSensorData.h │ │ │ │ ├── DPLinkingSensorData.m │ │ │ │ ├── profile │ │ │ │ │ ├── DPLinkingDeviceAtmosphericPressureProfile.h │ │ │ │ │ ├── DPLinkingDeviceAtmosphericPressureProfile.m │ │ │ │ │ ├── DPLinkingDeviceBatteryProfile.h │ │ │ │ │ ├── DPLinkingDeviceBatteryProfile.m │ │ │ │ │ ├── DPLinkingDeviceHumidityProfile.h │ │ │ │ │ ├── DPLinkingDeviceHumidityProfile.m │ │ │ │ │ ├── DPLinkingDeviceKeyEventProfile.h │ │ │ │ │ ├── DPLinkingDeviceKeyEventProfile.m │ │ │ │ │ ├── DPLinkingDeviceLightProfile.h │ │ │ │ │ ├── DPLinkingDeviceLightProfile.m │ │ │ │ │ ├── DPLinkingDeviceNotificationProfile.h │ │ │ │ │ ├── DPLinkingDeviceNotificationProfile.m │ │ │ │ │ ├── DPLinkingDeviceOrientationProfile.h │ │ │ │ │ ├── DPLinkingDeviceOrientationProfile.m │ │ │ │ │ ├── DPLinkingDeviceProximityProfile.h │ │ │ │ │ ├── DPLinkingDeviceProximityProfile.m │ │ │ │ │ ├── DPLinkingDeviceTemperatureProfile.h │ │ │ │ │ ├── DPLinkingDeviceTemperatureProfile.m │ │ │ │ │ ├── DPLinkingDeviceVibrationProfile.h │ │ │ │ │ ├── DPLinkingDeviceVibrationProfile.m │ │ │ │ │ └── util │ │ │ │ │ │ ├── DPLinkingDeviceAtmosphericPressureOnce.h │ │ │ │ │ │ ├── DPLinkingDeviceAtmosphericPressureOnce.m │ │ │ │ │ │ ├── DPLinkingDeviceBatteryOnce.h │ │ │ │ │ │ ├── DPLinkingDeviceBatteryOnce.m │ │ │ │ │ │ ├── DPLinkingDeviceButtonOnce.h │ │ │ │ │ │ ├── DPLinkingDeviceButtonOnce.m │ │ │ │ │ │ ├── DPLinkingDeviceHumidityOnce.h │ │ │ │ │ │ ├── DPLinkingDeviceHumidityOnce.m │ │ │ │ │ │ ├── DPLinkingDeviceProximityOnce.h │ │ │ │ │ │ ├── DPLinkingDeviceProximityOnce.m │ │ │ │ │ │ ├── DPLinkingDeviceRepeatExecutor.h │ │ │ │ │ │ ├── DPLinkingDeviceRepeatExecutor.m │ │ │ │ │ │ ├── DPLinkingDeviceSensorHolder.h │ │ │ │ │ │ ├── DPLinkingDeviceSensorHolder.m │ │ │ │ │ │ ├── DPLinkingDeviceSensorOnce.h │ │ │ │ │ │ ├── DPLinkingDeviceSensorOnce.m │ │ │ │ │ │ ├── DPLinkingDeviceTemperatureOnce.h │ │ │ │ │ │ └── DPLinkingDeviceTemperatureOnce.m │ │ │ │ └── service │ │ │ │ │ ├── DPLinkingDeviceService.h │ │ │ │ │ └── DPLinkingDeviceService.m │ │ │ ├── profile │ │ │ │ ├── DConnectAtmosphericPressureProfile.h │ │ │ │ ├── DConnectAtmosphericPressureProfile.m │ │ │ │ ├── DPLinkingServiceDiscoveryProfile.h │ │ │ │ ├── DPLinkingServiceDiscoveryProfile.m │ │ │ │ ├── DPLinkingSystemProfile.h │ │ │ │ └── DPLinkingSystemProfile.m │ │ │ ├── ui │ │ │ │ ├── DPLinkingAppInfoViewController.h │ │ │ │ ├── DPLinkingAppInfoViewController.m │ │ │ │ ├── DPLinkingBeaconListViewController.h │ │ │ │ ├── DPLinkingBeaconListViewController.m │ │ │ │ ├── DPLinkingBeaconViewController.h │ │ │ │ ├── DPLinkingBeaconViewController.m │ │ │ │ ├── DPLinkingButton.h │ │ │ │ ├── DPLinkingButton.m │ │ │ │ ├── DPLinkingDeviceListViewController.h │ │ │ │ ├── DPLinkingDeviceListViewController.m │ │ │ │ ├── DPLinkingDeviceViewController.h │ │ │ │ ├── DPLinkingDeviceViewController.m │ │ │ │ ├── DPLinkingMainViewController.h │ │ │ │ ├── DPLinkingMainViewController.m │ │ │ │ ├── DPLinkingPairingViewController.h │ │ │ │ ├── DPLinkingPairingViewController.m │ │ │ │ ├── DPLinkingPopoverViewController.h │ │ │ │ ├── DPLinkingPopoverViewController.m │ │ │ │ ├── DPLinkingSearchViewController.h │ │ │ │ └── DPLinkingSearchViewController.m │ │ │ └── util │ │ │ │ ├── DPLinkingTimeoutSchedule.h │ │ │ │ ├── DPLinkingTimeoutSchedule.m │ │ │ │ ├── DPLinkingUtil.h │ │ │ │ └── DPLinkingUtil.m │ │ ├── Headers │ │ │ └── .gitignore │ │ ├── Resources │ │ │ ├── Linking.storyboard │ │ │ ├── beacon_icon_blue.png │ │ │ ├── beacon_icon_white.png │ │ │ ├── beacon_icon_white@2x.png │ │ │ ├── dconnect_icon.png │ │ │ └── dconnect_icon_off.png │ │ └── dConnectDeviceLinking-Prefix.pch │ ├── dConnectDeviceLinkingTests │ │ ├── Info.plist │ │ └── dConnectDeviceLinkingTests.m │ ├── dConnectDeviceLinkingUITests │ │ ├── Info.plist │ │ └── dConnectDeviceLinkingUITests.m │ └── dConnectDeviceLinking_resources │ │ ├── Info.plist │ │ └── atmosphericpressure.json ├── dConnectDevicePebble │ ├── LICENSE.TXT │ ├── PebbleKit.framework │ │ ├── Headers │ │ │ ├── NSDictionary+Pebble.h │ │ │ ├── NSNumber+stdint.h │ │ │ ├── PBBitmap.h │ │ │ ├── PBDataLoggingService.h │ │ │ ├── PBErrors.h │ │ │ ├── PBLog.h │ │ │ ├── PBPebbleCentral.h │ │ │ ├── PBWatch+AppMessages.h │ │ │ ├── PBWatch+Golf.h │ │ │ ├── PBWatch+Ping.h │ │ │ ├── PBWatch+Sports.h │ │ │ ├── PBWatch+Version.h │ │ │ ├── PBWatch.h │ │ │ ├── PebbleKit.h │ │ │ └── gtypes.h │ │ ├── PebbleKit │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── NSDictionary+Pebble.h │ │ │ │ ├── NSNumber+stdint.h │ │ │ │ ├── PBBitmap.h │ │ │ │ ├── PBDataLoggingService.h │ │ │ │ ├── PBErrors.h │ │ │ │ ├── PBLog.h │ │ │ │ ├── PBPebbleCentral.h │ │ │ │ ├── PBWatch+AppMessages.h │ │ │ │ ├── PBWatch+Golf.h │ │ │ │ ├── PBWatch+Ping.h │ │ │ │ ├── PBWatch+Sports.h │ │ │ │ ├── PBWatch+Version.h │ │ │ │ ├── PBWatch.h │ │ │ │ ├── PebbleKit.h │ │ │ │ └── gtypes.h │ │ │ └── PebbleKit │ │ │ └── Current │ │ │ ├── Headers │ │ │ ├── NSDictionary+Pebble.h │ │ │ ├── NSNumber+stdint.h │ │ │ ├── PBBitmap.h │ │ │ ├── PBDataLoggingService.h │ │ │ ├── PBErrors.h │ │ │ ├── PBLog.h │ │ │ ├── PBPebbleCentral.h │ │ │ ├── PBWatch+AppMessages.h │ │ │ ├── PBWatch+Golf.h │ │ │ ├── PBWatch+Ping.h │ │ │ ├── PBWatch+Sports.h │ │ │ ├── PBWatch+Version.h │ │ │ ├── PBWatch.h │ │ │ ├── PebbleKit.h │ │ │ └── gtypes.h │ │ │ └── PebbleKit │ ├── PebbleVendor.framework │ │ ├── Headers │ │ │ ├── CHMultiDictionary.h │ │ │ ├── CHMutableDictionary.h │ │ │ ├── DDASLLogger.h │ │ │ ├── DDFileLogger.h │ │ │ ├── DDLog.h │ │ │ ├── DDTTYLogger.h │ │ │ ├── NSJSONSerialization+ObjectWithNString.h │ │ │ ├── NSJSONSerialization+PBJSONHelpers.h │ │ │ ├── NSString+HexData.h │ │ │ └── UIDevice-Hardware.h │ │ ├── PebbleVendor │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── CHMultiDictionary.h │ │ │ │ ├── CHMutableDictionary.h │ │ │ │ ├── DDASLLogger.h │ │ │ │ ├── DDFileLogger.h │ │ │ │ ├── DDLog.h │ │ │ │ ├── DDTTYLogger.h │ │ │ │ ├── NSJSONSerialization+ObjectWithNString.h │ │ │ │ ├── NSJSONSerialization+PBJSONHelpers.h │ │ │ │ ├── NSString+HexData.h │ │ │ │ └── UIDevice-Hardware.h │ │ │ └── PebbleVendor │ │ │ └── Current │ │ │ ├── Headers │ │ │ ├── CHMultiDictionary.h │ │ │ ├── CHMutableDictionary.h │ │ │ ├── DDASLLogger.h │ │ │ ├── DDFileLogger.h │ │ │ ├── DDLog.h │ │ │ ├── DDTTYLogger.h │ │ │ ├── NSJSONSerialization+ObjectWithNString.h │ │ │ ├── NSJSONSerialization+PBJSONHelpers.h │ │ │ ├── NSString+HexData.h │ │ │ └── UIDevice-Hardware.h │ │ │ └── PebbleVendor │ ├── bin │ │ └── .gitignore │ ├── dConnectDevicePebble.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── dConnectDevicePebble.xcscheme │ │ │ ├── dConnectDevicePebble_framework.xcscheme │ │ │ └── dConnectDevicePebble_resources.xcscheme │ ├── dConnectDevicePebble │ │ ├── Classes │ │ │ ├── DPPebbleDevicePlugin.h │ │ │ ├── DPPebbleDevicePlugin.m │ │ │ ├── DPPebbleImage.h │ │ │ ├── DPPebbleImage.m │ │ │ ├── DPPebbleManager.h │ │ │ ├── DPPebbleManager.m │ │ │ ├── DPPebbleService.h │ │ │ ├── DPPebbleService.m │ │ │ ├── pebble_device_plugin_defines.h │ │ │ ├── profile │ │ │ │ ├── DPPebbleBatteryProfile.h │ │ │ │ ├── DPPebbleBatteryProfile.m │ │ │ │ ├── DPPebbleCanvasProfile.h │ │ │ │ ├── DPPebbleCanvasProfile.m │ │ │ │ ├── DPPebbleDeviceOrientationProfile.h │ │ │ │ ├── DPPebbleDeviceOrientationProfile.m │ │ │ │ ├── DPPebbleKeyEventProfile.h │ │ │ │ ├── DPPebbleKeyEventProfile.m │ │ │ │ ├── DPPebbleNotificationProfile.h │ │ │ │ ├── DPPebbleNotificationProfile.m │ │ │ │ ├── DPPebbleProfileUtil.h │ │ │ │ ├── DPPebbleProfileUtil.m │ │ │ │ ├── DPPebbleSettingProfile.h │ │ │ │ ├── DPPebbleSettingProfile.m │ │ │ │ ├── DPPebbleSystemProfile.h │ │ │ │ ├── DPPebbleSystemProfile.m │ │ │ │ ├── DPPebbleVibrationProfile.h │ │ │ │ └── DPPebbleVibrationProfile.m │ │ │ └── settings │ │ │ │ ├── PebbleDataViewController.h │ │ │ │ ├── PebbleDataViewController.m │ │ │ │ ├── PebbleModelController.h │ │ │ │ ├── PebbleModelController.m │ │ │ │ ├── PebbleViewController.h │ │ │ │ ├── PebbleViewController.m │ │ │ │ └── page │ │ │ │ ├── PebbleSettingView01Controller.h │ │ │ │ ├── PebbleSettingView01Controller.m │ │ │ │ ├── PebbleSettingView02Controller.h │ │ │ │ ├── PebbleSettingView02Controller.m │ │ │ │ ├── PebbleSettingView03Controller.h │ │ │ │ ├── PebbleSettingView03Controller.m │ │ │ │ ├── PebbleSettingView04Controller.h │ │ │ │ ├── PebbleSettingView04Controller.m │ │ │ │ ├── PebbleSettingView05Controller.h │ │ │ │ ├── PebbleSettingView05Controller.m │ │ │ │ ├── PebbleSettingView06Controller.h │ │ │ │ └── PebbleSettingView06Controller.m │ │ ├── Headers │ │ │ └── .keep │ │ └── dConnectDevicePebble-Prefix.pch │ ├── dConnectDevicePebbleTests │ │ ├── dConnectDevicePebbleTests-Info.plist │ │ ├── dConnectDevicePebbleTests.m │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ └── dConnectDevicePebble_resources │ │ ├── dConnectDevicePebble.pbw │ │ ├── dConnectDevicePebble_iPad.storyboard │ │ ├── dConnectDevicePebble_iPhone.storyboard │ │ ├── dConnectDevicePebble_resources-Info.plist │ │ ├── dConnectDevicePebble_resources-Prefix.pch │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ └── images │ │ ├── Download_on_the_App_Store_Badge_US-UK_135x40.png │ │ ├── dconnect_icon.png │ │ ├── dconnect_icon_off.png │ │ ├── img01.png │ │ ├── img02.png │ │ ├── img03.png │ │ ├── img04.png │ │ └── img05.png ├── dConnectDeviceSonyCamera │ ├── LICENSE.TXT │ ├── bin │ │ └── .gitignore │ ├── dConnectDeviceSonyCamera.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── dConnectDeviceSonyCamera.xcscheme │ │ │ ├── dConnectDeviceSonyCamera_framework.xcscheme │ │ │ └── dConnectDeviceSonyCamera_resources.xcscheme │ ├── dConnectDeviceSonyCamera │ │ ├── Classes │ │ │ ├── SonyCameraDataViewController.h │ │ │ ├── SonyCameraDataViewController.m │ │ │ ├── SonyCameraDevicePlugin.h │ │ │ ├── SonyCameraDevicePlugin.m │ │ │ ├── SonyCameraManager.h │ │ │ ├── SonyCameraManager.m │ │ │ ├── SonyCameraModelController.h │ │ │ ├── SonyCameraModelController.m │ │ │ ├── SonyCameraPreview.h │ │ │ ├── SonyCameraPreview.m │ │ │ ├── SonyCameraReachability.h │ │ │ ├── SonyCameraReachability.m │ │ │ ├── SonyCameraRemoteApiUtil.h │ │ │ ├── SonyCameraRemoteApiUtil.m │ │ │ ├── SonyCameraService.h │ │ │ ├── SonyCameraService.m │ │ │ ├── SonyCameraSettingView01Controller.h │ │ │ ├── SonyCameraSettingView01Controller.m │ │ │ ├── SonyCameraSettingView02Controller.h │ │ │ ├── SonyCameraSettingView02Controller.m │ │ │ ├── SonyCameraSettingView03Controller.h │ │ │ ├── SonyCameraSettingView03Controller.m │ │ │ ├── SonyCameraSettingView04Controller.h │ │ │ ├── SonyCameraSettingView04Controller.m │ │ │ ├── SonyCameraSimpleHttpServer.h │ │ │ ├── SonyCameraSimpleHttpServer.m │ │ │ ├── SonyCameraViewController.h │ │ │ ├── SonyCameraViewController.m │ │ │ ├── profile │ │ │ │ ├── SonyCameraCameraProfile.m │ │ │ │ ├── SonyCameraMediaStreamRecordingProfile.h │ │ │ │ ├── SonyCameraMediaStreamRecordingProfile.m │ │ │ │ ├── SonyCameraSystemProfile.h │ │ │ │ └── SonyCameraSystemProfile.m │ │ │ └── sony_camera_remote_sdk │ │ │ │ ├── Data │ │ │ │ ├── DeviceInfo.h │ │ │ │ ├── DeviceInfo.m │ │ │ │ ├── DeviceList.h │ │ │ │ └── DeviceList.m │ │ │ │ ├── DeviceInfo.h │ │ │ │ ├── DeviceInfo.m │ │ │ │ ├── DeviceList.h │ │ │ │ ├── DeviceList.m │ │ │ │ ├── SampleDeviceDiscovery.h │ │ │ │ ├── SampleDeviceDiscovery.m │ │ │ │ ├── SampleLiveviewManager.h │ │ │ │ ├── SampleLiveviewManager.m │ │ │ │ ├── UdpRequest.h │ │ │ │ ├── UdpRequest.m │ │ │ │ └── webapi │ │ │ │ ├── HttpRequest │ │ │ │ ├── HttpAsynchronousRequest.h │ │ │ │ ├── HttpAsynchronousRequest.m │ │ │ │ ├── HttpSynchronousRequest.h │ │ │ │ └── HttpSynchronousRequest.m │ │ │ │ ├── RemoteApiList.h │ │ │ │ ├── SampleAvContentApi.h │ │ │ │ ├── SampleAvContentApi.m │ │ │ │ ├── SampleAvContentDefinitions.h │ │ │ │ ├── SampleCameraApi.h │ │ │ │ ├── SampleCameraApi.m │ │ │ │ ├── SampleCameraDefinitions.h │ │ │ │ ├── SampleCameraEventObserver.h │ │ │ │ ├── SampleCameraEventObserver.m │ │ │ │ ├── SampleRemoteApi.h │ │ │ │ └── SampleRemoteApi.m │ │ ├── Headers │ │ │ └── SonyCameraCameraProfile.h │ │ └── dConnectDeviceSonyCamera-Prefix.pch │ ├── dConnectDeviceSonyCameraTests │ │ ├── dConnectDeviceSonyCameraTests-Info.plist │ │ ├── dConnectDeviceSonyCameraTests.m │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── ja.lproj │ │ │ └── InfoPlist.strings │ └── dConnectDeviceSonyCamera_resources │ │ ├── SonyCameraDevicePlugin_iPad.storyboard │ │ ├── SonyCameraDevicePlugin_iPhone.storyboard │ │ ├── dConnectDeviceSonyCamera_resources-Info.plist │ │ ├── dConnectDeviceSonyCamera_resources-Prefix.pch │ │ ├── dconnect_icon.png │ │ ├── dconnect_icon_off.png │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ └── images │ │ ├── pageindicator_off.png │ │ ├── pageindicator_on.png │ │ ├── settings_ipad.png │ │ ├── settings_iphone.png │ │ ├── sonycamera01@2x.png │ │ ├── sonycamera_img01@2x.png │ │ ├── sonycamera_img02@2x.png │ │ └── sonycamera_img03@2x.png ├── dConnectDeviceSphero │ ├── .gitignore │ ├── LICENSE.TXT │ ├── Resources │ │ └── dConnectDeviceSpheroResources.bundle │ │ │ ├── Base.lproj │ │ │ ├── Localizable.strings │ │ │ ├── SpheroDevicePlugin_iPad.storyboardc │ │ │ │ ├── Info.plist │ │ │ │ ├── UIViewController-bPg-8d-35B.nib │ │ │ │ └── bPg-8d-35B-view-pg4-iF-2Ed.nib │ │ │ ├── SpheroDevicePlugin_iPhone.storyboardc │ │ │ │ ├── Info.plist │ │ │ │ ├── P1g-co-LIB-view-9py-AV-Ydo.nib │ │ │ │ └── UIViewController-P1g-co-LIB.nib │ │ │ ├── Tutorial_iPad_landscape.nib │ │ │ ├── Tutorial_iPad_portrait.nib │ │ │ ├── Tutorial_iPhone_landscape.nib │ │ │ └── Tutorial_iPhone_portrait.nib │ │ │ ├── Info.plist │ │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── SpheroDevicePlugin_iPad.strings │ │ │ ├── SpheroDevicePlugin_iPhone.strings │ │ │ ├── Tutorial_iPad_landscape.strings │ │ │ ├── Tutorial_iPad_portrait.strings │ │ │ ├── Tutorial_iPhone_landscape.strings │ │ │ └── Tutorial_iPhone_portrait.strings │ │ │ ├── ja.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── SpheroDevicePlugin_iPad.strings │ │ │ ├── SpheroDevicePlugin_iPhone.strings │ │ │ ├── Tutorial_iPad_landscape.strings │ │ │ ├── Tutorial_iPad_portrait.strings │ │ │ ├── Tutorial_iPhone_landscape.strings │ │ │ └── Tutorial_iPhone_portrait.strings │ │ │ ├── sphero001.png │ │ │ ├── sphero002.png │ │ │ ├── sphero003.png │ │ │ ├── sphero004.png │ │ │ ├── sphero005.png │ │ │ ├── sphero006.png │ │ │ ├── sphero007.png │ │ │ ├── sphero007_2.png │ │ │ ├── sphero008.png │ │ │ ├── sphero009.png │ │ │ ├── sphero010.png │ │ │ ├── sphero010_2.png │ │ │ └── sphero011.png │ ├── bin │ │ └── .gitignore │ ├── dConnectDeviceSphero.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── dConnectDeviceSphero.xcscheme │ │ │ ├── dConnectDeviceSphero_framework.xcscheme │ │ │ └── dConnectDeviceSphero_resources.xcscheme │ ├── dConnectDeviceSphero │ │ ├── Classes │ │ │ ├── DPGuideViewController.h │ │ │ ├── DPGuideViewController.m │ │ │ ├── DPSpheroDeviceOrientationProfile.h │ │ │ ├── DPSpheroDeviceOrientationProfile.m │ │ │ ├── DPSpheroDevicePlugin.h │ │ │ ├── DPSpheroDevicePlugin.m │ │ │ ├── DPSpheroDriveControllerProfile.h │ │ │ ├── DPSpheroDriveControllerProfile.m │ │ │ ├── DPSpheroLightProfile.h │ │ │ ├── DPSpheroLightProfile.m │ │ │ ├── DPSpheroLightService.h │ │ │ ├── DPSpheroLightService.m │ │ │ ├── DPSpheroManager.h │ │ │ ├── DPSpheroManager.m │ │ │ ├── DPSpheroProfile.m │ │ │ ├── DPSpheroSensorProfile.h │ │ │ ├── DPSpheroSensorProfile.m │ │ │ ├── DPSpheroService.h │ │ │ ├── DPSpheroService.m │ │ │ ├── DPSpheroSettingViewController.h │ │ │ ├── DPSpheroSettingViewController.m │ │ │ ├── DPSpheroSystemProfile.h │ │ │ ├── DPSpheroSystemProfile.m │ │ │ └── util │ │ │ │ ├── DPSpheroDeviceRepeatExecutor.h │ │ │ │ ├── DPSpheroDeviceRepeatExecutor.m │ │ │ │ ├── DPSpheroTimeoutSchedule.h │ │ │ │ ├── DPSpheroTimeoutSchedule.m │ │ │ │ ├── DPSpheroUtil.h │ │ │ │ └── DPSpheroUtil.m │ │ ├── Headers │ │ │ └── DPSpheroProfile.h │ │ ├── Resources │ │ │ ├── Base.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── SpheroDevicePlugin_iPad.storyboard │ │ │ │ └── SpheroDevicePlugin_iPhone.storyboard │ │ │ ├── Info.plist │ │ │ ├── SpheroBluetoothSetting.png │ │ │ ├── SpheroSettingConnected_2.png │ │ │ ├── SpheroSettingWakeup_2.png │ │ │ ├── en.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── SpheroDevicePlugin_iPad.strings │ │ │ │ └── SpheroDevicePlugin_iPhone.strings │ │ │ └── ja.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── SpheroDevicePlugin_iPad.strings │ │ │ │ └── SpheroDevicePlugin_iPhone.strings │ │ └── dConnectDeviceSphero-Prefix.pch │ ├── dConnectDeviceSpheroTests │ │ ├── DConnectSpheroDevicePluginTests.m │ │ ├── dConnectDeviceSpheroTests-Info.plist │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ └── dConnectDeviceSphero_resources │ │ ├── dConnectDeviceSphero_resources-Info.plist │ │ ├── dConnectDeviceSphero_resources-Prefix.pch │ │ ├── dconnect_icon.png │ │ ├── dconnect_icon_off.png │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ └── ja.lproj │ │ └── InfoPlist.strings ├── dConnectDeviceTest │ ├── LICENSE.TXT │ ├── NOTICE.TXT │ ├── bin │ │ └── .gitignore │ ├── dConnectDeviceTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── dConnectDeviceTest.xcscheme │ │ │ └── dConnectDeviceTestFramework.xcscheme │ ├── dConnectDeviceTest │ │ ├── Classes │ │ │ ├── DeviceTestPlugin.h │ │ │ ├── DeviceTestPlugin.m │ │ │ ├── Profile │ │ │ │ ├── TestAllGetControlProfile.h │ │ │ │ ├── TestAllGetControlProfile.m │ │ │ │ ├── TestBatteryProfile.h │ │ │ │ ├── TestBatteryProfile.m │ │ │ │ ├── TestConnectionProfile.h │ │ │ │ ├── TestConnectionProfile.m │ │ │ │ ├── TestDeviceOrientationProfile.h │ │ │ │ ├── TestDeviceOrientationProfile.m │ │ │ │ ├── TestDriveControllerProfile.h │ │ │ │ ├── TestDriveControllerProfile.m │ │ │ │ ├── TestFileDescriptorProfile.h │ │ │ │ ├── TestFileDescriptorProfile.m │ │ │ │ ├── TestFileProfile.h │ │ │ │ ├── TestFileProfile.m │ │ │ │ ├── TestLightProfile.h │ │ │ │ ├── TestLightProfile.m │ │ │ │ ├── TestMediaPlayerProfile.h │ │ │ │ ├── TestMediaPlayerProfile.m │ │ │ │ ├── TestMediaStreamRecordingProfile.h │ │ │ │ ├── TestMediaStreamRecordingProfile.m │ │ │ │ ├── TestNotificationProfile.h │ │ │ │ ├── TestNotificationProfile.m │ │ │ │ ├── TestOmnidirectionalImageProfile.h │ │ │ │ ├── TestOmnidirectionalImageProfile.m │ │ │ │ ├── TestPhoneProfile.h │ │ │ │ ├── TestPhoneProfile.m │ │ │ │ ├── TestProximityProfile.h │ │ │ │ ├── TestProximityProfile.m │ │ │ │ ├── TestRemoteControllerProfile.h │ │ │ │ ├── TestRemoteControllerProfile.m │ │ │ │ ├── TestSettingProfile.h │ │ │ │ ├── TestSettingProfile.m │ │ │ │ ├── TestSystemProfile.h │ │ │ │ ├── TestSystemProfile.m │ │ │ │ ├── TestUniqueEventProfile.h │ │ │ │ ├── TestUniqueEventProfile.m │ │ │ │ ├── TestUniquePingProfile.h │ │ │ │ ├── TestUniquePingProfile.m │ │ │ │ ├── TestUniqueTimeoutProfile.h │ │ │ │ ├── TestUniqueTimeoutProfile.m │ │ │ │ ├── TestVibrationProfile.h │ │ │ │ └── TestVibrationProfile.m │ │ │ ├── TestService.h │ │ │ └── TestService.m │ │ ├── Resources │ │ │ └── Info.plist │ │ ├── dConnectDeviceTest-Prefix.pch │ │ └── dConnectDeviceTest.framework │ │ │ ├── Versions │ │ │ ├── A │ │ │ │ └── dConnectDeviceTest │ │ │ └── Current │ │ │ └── dConnectDeviceTest │ ├── dConnectDeviceTestTests │ │ ├── Multipart │ │ │ └── Tools │ │ │ │ ├── Hash.h │ │ │ │ ├── Hash.m │ │ │ │ ├── Multipart.h │ │ │ │ └── Multipart.m │ │ ├── SocketRocket │ │ │ ├── SRWebSocket.h │ │ │ └── SRWebSocket.m │ │ ├── dConnectDeviceTestTests-Info.plist │ │ ├── dConnectManager │ │ │ ├── AccessToken.h │ │ │ ├── AccessToken.m │ │ │ ├── DConnectTestCase.h │ │ │ ├── DConnectTestCase.m │ │ │ └── RESTful │ │ │ │ ├── RESTfulFailAllGetControlTest.m │ │ │ │ ├── RESTfulFailAuthorizationProfileTest.m │ │ │ │ ├── RESTfulFailBatteryProfileTest.m │ │ │ │ ├── RESTfulFailConnectionProfileTest.m │ │ │ │ ├── RESTfulFailDeviceOrientationProfileTest.m │ │ │ │ ├── RESTfulFailFileDescriptorProfileTest.m │ │ │ │ ├── RESTfulFailFileProfileTest.m │ │ │ │ ├── RESTfulFailLightProfileTest.m │ │ │ │ ├── RESTfulFailMediaPlayerProfileTest.m │ │ │ │ ├── RESTfulFailMediaStreamRecordingProfileTest.m │ │ │ │ ├── RESTfulFailNetworkServiceDiscoveryProfileTest.m │ │ │ │ ├── RESTfulFailNotificationProfileTest.m │ │ │ │ ├── RESTfulFailPhoneProfileTest.m │ │ │ │ ├── RESTfulFailProximityProfileTest.m │ │ │ │ ├── RESTfulFailServiceDiscoveryProfileTest.m │ │ │ │ ├── RESTfulFailServiceInformationProfileTest.m │ │ │ │ ├── RESTfulFailSettingProfileTest.m │ │ │ │ ├── RESTfulFailSystemProfileTest.m │ │ │ │ ├── RESTfulFailVibrationProfileTest.m │ │ │ │ ├── RESTfulNormalAllGetControlTest.m │ │ │ │ ├── RESTfulNormalAuthorizationProfileTest.h │ │ │ │ ├── RESTfulNormalAuthorizationProfileTest.m │ │ │ │ ├── RESTfulNormalAvailabilityProfileTest.m │ │ │ │ ├── RESTfulNormalBatteryProfileTest.m │ │ │ │ ├── RESTfulNormalConnectionProfileTest.m │ │ │ │ ├── RESTfulNormalDeviceOrientationProfileTest.m │ │ │ │ ├── RESTfulNormalFileDescriptorProfileTest.m │ │ │ │ ├── RESTfulNormalFileProfileTest.m │ │ │ │ ├── RESTfulNormalLightProfileTest.m │ │ │ │ ├── RESTfulNormalMediaPlayerProfileTest.m │ │ │ │ ├── RESTfulNormalMediaStreamRecordingProfileTest.m │ │ │ │ ├── RESTfulNormalNotificationProfileTest.m │ │ │ │ ├── RESTfulNormalPhoneProfileTest.m │ │ │ │ ├── RESTfulNormalProximityProfileTest.m │ │ │ │ ├── RESTfulNormalServiceDiscoveryProfileTest.m │ │ │ │ ├── RESTfulNormalServiceInformationProfileTest.m │ │ │ │ ├── RESTfulNormalSettingsProfileTest.m │ │ │ │ ├── RESTfulNormalSystemProfileTest.m │ │ │ │ ├── RESTfulNormalVibrationProfileTest.m │ │ │ │ ├── RESTfulTestCase.h │ │ │ │ └── RESTfulTestCase.m │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── doxygen.conf │ ├── test-reports │ │ └── html │ │ │ └── alltests-errors.html │ ├── xctest-report.xml │ └── xctest.sh └── dConnectDeviceTheta │ ├── LICENSE.TXT │ ├── bin │ └── .gitignore │ ├── dConnectDeviceTheta.xcodeproj │ └── project.pbxproj │ ├── dConnectDeviceTheta │ ├── Classes │ │ ├── .gitignore │ │ ├── DPOmnidirectionalImageProfile.m │ │ ├── DPThetaBatteryProfile.h │ │ ├── DPThetaBatteryProfile.m │ │ ├── DPThetaCamera.h │ │ ├── DPThetaCamera.m │ │ ├── DPThetaCameraBuilder.h │ │ ├── DPThetaCameraBuilder.m │ │ ├── DPThetaDevicePlugin.h │ │ ├── DPThetaDevicePlugin.m │ │ ├── DPThetaFileProfile.h │ │ ├── DPThetaFileProfile.m │ │ ├── DPThetaGLRenderView.h │ │ ├── DPThetaGLRenderView.m │ │ ├── DPThetaGuideViewController.h │ │ ├── DPThetaGuideViewController.m │ │ ├── DPThetaManager.h │ │ ├── DPThetaManager.m │ │ ├── DPThetaMediaStreamRecordingProfile.h │ │ ├── DPThetaMediaStreamRecordingProfile.m │ │ ├── DPThetaMixedReplaceMediaServer.h │ │ ├── DPThetaMixedReplaceMediaServer.m │ │ ├── DPThetaOmnidirectionalImage.h │ │ ├── DPThetaOmnidirectionalImage.m │ │ ├── DPThetaOmnidirectionalImageProfile.h │ │ ├── DPThetaOmnidirectionalImageProfile.m │ │ ├── DPThetaParam.h │ │ ├── DPThetaParam.m │ │ ├── DPThetaQuaternion.h │ │ ├── DPThetaQuaternion.m │ │ ├── DPThetaROI.h │ │ ├── DPThetaReachability.h │ │ ├── DPThetaReachability.m │ │ ├── DPThetaRoiDeliveryContext.h │ │ ├── DPThetaRoiDeliveryContext.m │ │ ├── DPThetaService.h │ │ ├── DPThetaService.m │ │ ├── DPThetaSettingViewController.h │ │ ├── DPThetaSettingViewController.m │ │ ├── DPThetaSystemProfile.h │ │ ├── DPThetaUVSphere.h │ │ ├── DPThetaUVSphere.m │ │ ├── DPThetaVector3D.h │ │ ├── DPThetaVector3D.m │ │ ├── DPThetatSystemProfile.m │ │ └── GCDAsyncSocket.h │ ├── Headers │ │ └── DPOmnidirectionalImageProfile.h │ └── Resources │ │ ├── Theta_iPad.storyboard │ │ ├── Theta_iPhone.storyboard │ │ ├── WiFiTheta.png │ │ ├── theta.png │ │ ├── theta@2x.png │ │ ├── thetaMovie.png │ │ ├── thetaMovie@2x.png │ │ ├── thetaOn.png │ │ ├── thetaOn@2x.png │ │ ├── thetaStandby.png │ │ ├── thetaStandby@2x.png │ │ ├── thetaWiFi.png │ │ └── thetaWiFi@2x.png │ ├── dConnectDeviceThetaTests │ └── Info.plist │ ├── dConnectDeviceTheta_resources │ ├── Info.plist │ ├── dconnect_icon.png │ ├── dconnect_icon_off.png │ └── omnidirectionalimage.json │ └── require_theta_sdk.rb ├── dConnectSDK ├── dConnectBrowserForIOS9 │ ├── BookmarkDBFramework │ │ ├── GHConfig.h │ │ ├── GHData.h │ │ ├── GHDataManager.h │ │ ├── GHDataManager.m │ │ ├── GHPageModel.h │ │ ├── GHPageModel.m │ │ ├── GHURLManager.h │ │ ├── GHURLManager.m │ │ ├── GHUtils.h │ │ ├── GHUtils.m │ │ ├── Info.plist │ │ ├── Page.h │ │ ├── Page.m │ │ ├── db.xcdatamodeld │ │ │ ├── .xccurrentversion │ │ │ ├── db 2.xcdatamodel │ │ │ │ └── contents │ │ │ ├── db 3.xcdatamodel │ │ │ │ └── contents │ │ │ └── db.xcdatamodel │ │ │ │ └── contents │ │ └── libs │ │ │ └── SVProgressHUD │ │ │ ├── SVProgressHUD.bundle │ │ │ ├── error-black.png │ │ │ ├── error-black@2x.png │ │ │ ├── error.png │ │ │ ├── error@2x.png │ │ │ ├── success-black.png │ │ │ ├── success-black@2x.png │ │ │ ├── success.png │ │ │ └── success@2x.png │ │ │ ├── SVProgressHUD.h │ │ │ └── SVProgressHUD.m │ ├── BookmarkShare │ │ ├── AddBookmarkPreprocessor.js │ │ ├── Base.lproj │ │ │ └── MainInterface.storyboard │ │ ├── BookmarkShare.entitlements │ │ ├── Info.plist │ │ ├── ShareViewController.h │ │ ├── ShareViewController.m │ │ └── module.modulemap │ ├── dConnectBrowserForIOS9.xcodeproj │ │ └── project.pbxproj │ └── dConnectBrowserForIOS9 │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-60@2x-1.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-83.5@2x.png │ │ │ ├── Icon-Notification.png │ │ │ ├── Icon-Notification@3x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x-1.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small-41.png │ │ │ ├── Icon-Small-42.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x-1.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ └── icon_1024px.png │ │ ├── ButtonStretch-Highlighted.imageset │ │ │ ├── ButtonStretch-Highlighted@2x.png │ │ │ └── Contents.json │ │ ├── ButtonStretch.imageset │ │ │ ├── ButtonStretch@2x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── bg.imageset │ │ │ ├── Contents.json │ │ │ └── bg_on.png │ │ ├── bluetooth_off.imageset │ │ │ ├── Contents.json │ │ │ └── bluetooth_off.pdf │ │ ├── bluetooth_on.imageset │ │ │ ├── Contents.json │ │ │ └── bluetooth_on.pdf │ │ ├── bookmark.imageset │ │ │ ├── Contents.json │ │ │ └── icon_bookmark_1.png │ │ ├── close_button.imageset │ │ │ ├── Contents.json │ │ │ └── close_button.pdf │ │ ├── default_device_icon.imageset │ │ │ ├── Contents.json │ │ │ └── dconnect_icon.png │ │ ├── default_device_icon_off.imageset │ │ │ ├── Contents.json │ │ │ └── dconnect_icon_off.png │ │ ├── deviceDetailButton.imageset │ │ │ ├── Contents.json │ │ │ └── deviceDetail.pdf │ │ ├── deviceIcon.imageset │ │ │ ├── Contents.json │ │ │ └── deviceIcon.pdf │ │ ├── deviceWebAPI_icon.imageset │ │ │ ├── Contents.json │ │ │ └── deviceWebAPI_icon.pdf │ │ ├── guide01.imageset │ │ │ ├── Contents.json │ │ │ ├── img_1.png │ │ │ ├── img_1@2x.png │ │ │ └── img_1@3x.png │ │ ├── guide02.imageset │ │ │ ├── Contents.json │ │ │ ├── img_2.png │ │ │ ├── img_2@2x.png │ │ │ └── img_2@3x.png │ │ ├── guide03.imageset │ │ │ ├── Contents.json │ │ │ ├── img_3.png │ │ │ ├── img_3@2x.png │ │ │ └── img_3@3x.png │ │ ├── guide04.imageset │ │ │ ├── Contents.json │ │ │ ├── img_4.png │ │ │ ├── img_4@2x.png │ │ │ └── img_4@3x.png │ │ ├── guide05.imageset │ │ │ ├── Contents.json │ │ │ ├── img_5.png │ │ │ ├── img_5@2x.png │ │ │ └── img_5@3x.png │ │ ├── guide06.imageset │ │ │ ├── Contents.json │ │ │ ├── img_6.png │ │ │ ├── img_6@2x.png │ │ │ └── img_6@3x.png │ │ ├── guide07.imageset │ │ │ ├── Contents.json │ │ │ ├── img_7.png │ │ │ ├── img_7@2x.png │ │ │ └── img_7@3x.png │ │ ├── help.imageset │ │ │ ├── Contents.json │ │ │ └── help.pdf │ │ ├── logo.imageset │ │ │ ├── Contents.json │ │ │ └── logo_1.png │ │ ├── nfc_off.imageset │ │ │ ├── Contents.json │ │ │ └── nfc_off.pdf │ │ ├── nfc_on.imageset │ │ │ ├── Contents.json │ │ │ └── nfc_on.pdf │ │ ├── no_bookmark_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-76.png │ │ │ └── icon-76@2x.png │ │ ├── search.imageset │ │ │ ├── Contents.json │ │ │ └── icon_search.png │ │ ├── settings.imageset │ │ │ ├── Contents.json │ │ │ └── icon_setting_1.png │ │ ├── wifi_off.imageset │ │ │ ├── Contents.json │ │ │ └── wifi_off.pdf │ │ └── wifi_on.imageset │ │ │ ├── Contents.json │ │ │ └── wifi_on.pdf │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Bookmark.storyboard │ │ ├── Info.plist │ │ ├── Popup.storyboard │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── classes │ │ ├── BookmarkIconViewCell.h │ │ ├── BookmarkIconViewCell.m │ │ ├── BookmarkIconViewModel.h │ │ ├── BookmarkIconViewModel.m │ │ ├── DetailableCell.h │ │ ├── DetailableCell.m │ │ ├── DeviceIconViewCell.h │ │ ├── DeviceIconViewCell.m │ │ ├── DeviceIconViewModel.h │ │ ├── DeviceIconViewModel.m │ │ ├── DeviceMoreViewCell.h │ │ ├── DeviceMoreViewCell.m │ │ ├── DevicePlugin.storyboard │ │ ├── GHAddBookmarkController.h │ │ ├── GHAddBookmarkController.m │ │ ├── GHBookmarkCell.h │ │ ├── GHBookmarkCell.m │ │ ├── GHBookmarkTitleCell.h │ │ ├── GHBookmarkTitleCell.m │ │ ├── GHBookmarkTitleCell.xib │ │ ├── GHBookmarkTopController.h │ │ ├── GHBookmarkTopController.m │ │ ├── GHBookmarkViewController.h │ │ ├── GHBookmarkViewController.m │ │ ├── GHDeviceListViewController.h │ │ ├── GHDeviceListViewController.m │ │ ├── GHDeviceListViewModel.h │ │ ├── GHDeviceListViewModel.m │ │ ├── GHDevicePluginDetailViewController.h │ │ ├── GHDevicePluginDetailViewController.m │ │ ├── GHDevicePluginDetailViewModel.h │ │ ├── GHDevicePluginDetailViewModel.m │ │ ├── GHDevicePluginSectionHeaderViewCell.h │ │ ├── GHDevicePluginSectionHeaderViewCell.m │ │ ├── GHDevicePluginTableViewController.h │ │ ├── GHDevicePluginTableViewController.m │ │ ├── GHDevicePluginViewCell.h │ │ ├── GHDevicePluginViewCell.m │ │ ├── GHDevicePluginViewModel.h │ │ ├── GHDevicePluginViewModel.m │ │ ├── GHDeviceProfileViewCell.h │ │ ├── GHDeviceProfileViewCell.m │ │ ├── GHDeviceSettingButtonViewCell.h │ │ ├── GHDeviceSettingButtonViewCell.m │ │ ├── GHDeviceUtil.h │ │ ├── GHDeviceUtil.m │ │ ├── GHDirectory.h │ │ ├── GHDirectory.m │ │ ├── GHFolderCell.h │ │ ├── GHFolderCell.m │ │ ├── GHFolderCreateController.h │ │ ├── GHFolderCreateController.m │ │ ├── GHFolderTitleCell.h │ │ ├── GHFolderTitleCell.m │ │ ├── GHFolderTitleCell.xib │ │ ├── GHFoldersListController.h │ │ ├── GHFoldersListController.m │ │ ├── GHHeaderView.h │ │ ├── GHHeaderView.m │ │ ├── GHPageViewCell.h │ │ ├── GHPageViewCell.m │ │ ├── GHPageViewCell.xib │ │ ├── GHSettingController.h │ │ ├── GHSettingController.m │ │ ├── GHSettingViewModel.h │ │ ├── GHSettingViewModel.m │ │ ├── GHToolView.h │ │ ├── GHToolView.m │ │ ├── GHURLLabel.h │ │ ├── GHURLLabel.m │ │ ├── GrayLabelCell.h │ │ ├── GrayLabelCell.m │ │ ├── GuideDataViewController.h │ │ ├── GuideDataViewController.m │ │ ├── InitialGuide.storyboard │ │ ├── InitialGuideViewController.h │ │ ├── InitialGuideViewController.m │ │ ├── InitialGuideViewModel.h │ │ ├── InitialGuideViewModel.m │ │ ├── SwitchableCell.h │ │ ├── SwitchableCell.m │ │ ├── TopCollectionHeaderView.h │ │ ├── TopCollectionHeaderView.m │ │ ├── TopViewModel.h │ │ ├── TopViewModel.m │ │ ├── WebViewController.h │ │ └── WebViewController.m │ │ ├── dConnectBrowserForIOS9-Prefix.pch │ │ ├── dConnectBrowserForIOS9.entitlements │ │ ├── demo │ │ ├── checker.html │ │ ├── css │ │ │ ├── accordion.css │ │ │ ├── checker.css │ │ │ ├── index.css │ │ │ └── resource.css │ │ ├── images │ │ │ ├── icon01_battery.png │ │ │ ├── icon02_mediaStreamRecording.png │ │ │ ├── icon03_deviceOrientation.png │ │ │ ├── icon04_vibration.png │ │ │ ├── icon05_settings.png │ │ │ ├── icon06_canvas.png │ │ │ ├── icon07_mediaPlayer.png │ │ │ ├── icon08_notification.png │ │ │ ├── icon09_file.png │ │ │ ├── icon10_proximity.png │ │ │ ├── icon11_phone.png │ │ │ ├── icon12_keyEvent.png │ │ │ ├── icon13_light.png │ │ │ ├── icon14_temperature.png │ │ │ ├── icon15_humidity.png │ │ │ ├── icon16_atmosphericPressure.png │ │ │ ├── icon21_other.png │ │ │ ├── icon26_geolocation.png │ │ │ ├── icon27_touch.png │ │ │ ├── icon33_connect6.png │ │ │ ├── icon_minus.png │ │ │ └── icon_plus.png │ │ ├── index.html │ │ ├── js │ │ │ ├── checker.js │ │ │ ├── dconnectsdk-2.2.0.js │ │ │ ├── index.js │ │ │ ├── resource.js │ │ │ └── util.js │ │ └── resource.html │ │ ├── help │ │ ├── css │ │ │ └── main.css │ │ ├── index.html │ │ ├── summary │ │ │ ├── bookmark.html │ │ │ ├── browser.html │ │ │ ├── device_list.html │ │ │ ├── device_plugin.html │ │ │ ├── device_plugin_list.html │ │ │ ├── images │ │ │ │ ├── bookmark_main.png │ │ │ │ ├── device_list_main.png │ │ │ │ ├── device_plugin_info.png │ │ │ │ ├── device_plugin_list.png │ │ │ │ ├── device_plugin_list_detail.png │ │ │ │ ├── device_plugin_list_main.png │ │ │ │ ├── device_plugin_manage.png │ │ │ │ ├── device_plugin_restart.png │ │ │ │ ├── manager_start.png │ │ │ │ ├── mark.png │ │ │ │ ├── safari_view_main.png │ │ │ │ ├── save_bookmark_action_button.png │ │ │ │ ├── save_bookmark_info.png │ │ │ │ ├── save_bookmark_safari.png │ │ │ │ ├── save_bookmark_show_dialog.png │ │ │ │ ├── setting_main.png │ │ │ │ ├── top_guide01.png │ │ │ │ ├── top_guide02.png │ │ │ │ ├── top_guide03.png │ │ │ │ ├── top_guide04.png │ │ │ │ ├── top_guide05.png │ │ │ │ ├── top_guide06.png │ │ │ │ └── top_guide07.png │ │ │ ├── manager.html │ │ │ ├── safari_view.html │ │ │ ├── save_bookmark.html │ │ │ ├── security.html │ │ │ ├── security │ │ │ │ ├── images │ │ │ │ │ ├── access_token_info.png │ │ │ │ │ ├── access_token_list.png │ │ │ │ │ ├── security_external_ip.png │ │ │ │ │ ├── security_local_oauth.png │ │ │ │ │ ├── security_local_oauth_dialog.png │ │ │ │ │ ├── security_origin.png │ │ │ │ │ └── security_origin_block.png │ │ │ │ ├── security_access_token.html │ │ │ │ ├── security_external_ip.html │ │ │ │ ├── security_local_oauth.html │ │ │ │ ├── security_origin.html │ │ │ │ ├── security_origin_block.html │ │ │ │ ├── security_ssl.html │ │ │ │ └── security_white_list.html │ │ │ ├── setting.html │ │ │ └── top.html │ │ └── tutorial │ │ │ ├── demo │ │ │ ├── css │ │ │ │ └── demo_take_photo.css │ │ │ ├── demo_acceleration.html │ │ │ ├── demo_battery.html │ │ │ ├── demo_take_photo.html │ │ │ ├── demo_vibration.html │ │ │ ├── images │ │ │ │ ├── battery_1.png │ │ │ │ ├── battery_2.png │ │ │ │ ├── battery_3.png │ │ │ │ ├── battery_4.png │ │ │ │ └── take_photo_1.png │ │ │ └── js │ │ │ │ ├── dconnectsdk-2.2.0.js │ │ │ │ ├── demo_acceleration.js │ │ │ │ ├── demo_battery.js │ │ │ │ ├── demo_take_photo.js │ │ │ │ ├── demo_vibration.js │ │ │ │ ├── queue.js │ │ │ │ └── util.js │ │ │ └── host_tutorial.html │ │ ├── html │ │ └── device.html │ │ ├── images │ │ ├── bookmark@2x.png │ │ ├── folder@2x.png │ │ └── star@2x.png │ │ ├── libs │ │ ├── GTMNSString-HTML │ │ │ ├── GTMDefines.h │ │ │ ├── GTMNSString+HTML.h │ │ │ ├── GTMNSString+HTML.m │ │ │ ├── GTMNSString-HTML.podspec │ │ │ ├── LICENSE │ │ │ ├── NSString+HTML.h │ │ │ ├── NSString+HTML.m │ │ │ └── README.md │ │ └── RATreeView │ │ │ ├── RATreeNode.h │ │ │ ├── RATreeNode.m │ │ │ ├── RATreeNodeCollectionController.h │ │ │ ├── RATreeNodeCollectionController.m │ │ │ ├── RATreeNodeInfo+Private.h │ │ │ ├── RATreeNodeInfo+Private.m │ │ │ ├── RATreeNodeInfo.h │ │ │ ├── RATreeNodeInfo.m │ │ │ ├── RATreeView+Enums.h │ │ │ ├── RATreeView+Enums.m │ │ │ ├── RATreeView+Private.h │ │ │ ├── RATreeView+Private.m │ │ │ ├── RATreeView+TableViewDataSource.h │ │ │ ├── RATreeView+TableViewDataSource.m │ │ │ ├── RATreeView+TableViewDelegate.h │ │ │ ├── RATreeView+TableViewDelegate.m │ │ │ ├── RATreeView+UIScrollView.h │ │ │ ├── RATreeView+UIScrollView.m │ │ │ ├── RATreeView.h │ │ │ └── RATreeView.m │ │ └── main.m └── dConnectSDKForIOS │ ├── DConnectSDK.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── DConnectSDK.xcscheme │ │ ├── DConnectSDK_framework.xcscheme │ │ └── DConnectSDK_resources.xcscheme │ ├── DConnectSDK │ ├── Classes │ │ ├── DConnectConst.h │ │ ├── DConnectDevicePlugin+Private.h │ │ ├── DConnectDevicePlugin+Private.m │ │ ├── DConnectDevicePlugin.m │ │ ├── DConnectDevicePluginManager.h │ │ ├── DConnectDevicePluginManager.m │ │ ├── DConnectFileManager.m │ │ ├── DConnectFilesProfile.h │ │ ├── DConnectFilesProfile.m │ │ ├── DConnectLocalOAuthDB.h │ │ ├── DConnectLocalOAuthDB.m │ │ ├── DConnectManager+Private.h │ │ ├── DConnectManager.m │ │ ├── DConnectManagerAuthorizationProfile.h │ │ ├── DConnectManagerAuthorizationProfile.m │ │ ├── DConnectManagerDeliveryProfile.h │ │ ├── DConnectManagerDeliveryProfile.m │ │ ├── DConnectManagerServiceDiscoveryProfile.h │ │ ├── DConnectManagerServiceDiscoveryProfile.m │ │ ├── DConnectManagerSystemProfile.h │ │ ├── DConnectManagerSystemProfile.m │ │ ├── DConnectMessage+Private.h │ │ ├── DConnectMessage.m │ │ ├── DConnectRequestMessage.m │ │ ├── DConnectResponseMessage.m │ │ ├── DConnectSettings.m │ │ ├── DConnectUtil.m │ │ ├── cipher │ │ │ ├── CipherAuthSignature.h │ │ │ ├── CipherAuthSignature.m │ │ │ ├── CipherSignatureFactory.h │ │ │ ├── CipherSignatureFactory.m │ │ │ ├── CipherSignatureKind.h │ │ │ ├── CipherSignatureProc.h │ │ │ ├── CipherSignatureProc.m │ │ │ ├── CipherSignatureProcMD.h │ │ │ └── CipherSignatureProcMD.m │ │ ├── db │ │ │ ├── DConnectSQLite.h │ │ │ ├── DConnectSQLiteCursor.h │ │ │ ├── DConnectSQLiteCursor.m │ │ │ ├── DConnectSQLiteDatabase.h │ │ │ ├── DConnectSQLiteDatabase.m │ │ │ ├── DConnectSQLiteOpenHelper.h │ │ │ └── DConnectSQLiteOpenHelper.m │ │ ├── event │ │ │ ├── DConnectEvent.m │ │ │ ├── DConnectEventBroker.h │ │ │ ├── DConnectEventBroker.m │ │ │ ├── DConnectEventManager.m │ │ │ ├── DConnectEventProtocol.h │ │ │ ├── DConnectEventProtocol.m │ │ │ ├── DConnectEventSession.h │ │ │ ├── DConnectEventSession.m │ │ │ ├── DConnectEventSessionTable.h │ │ │ ├── DConnectEventSessionTable.m │ │ │ ├── DConnectMessageEventSession.h │ │ │ ├── DConnectMessageEventSession.m │ │ │ └── cache │ │ │ │ ├── DConnectBaseCacheController.m │ │ │ │ ├── DConnectFileCacheController.m │ │ │ │ ├── DConnectMemoryCacheController.m │ │ │ │ └── db │ │ │ │ ├── DConnectDBCacheController.m │ │ │ │ └── dao │ │ │ │ ├── DConnectAttributeDao.h │ │ │ │ ├── DConnectAttributeDao.m │ │ │ │ ├── DConnectClientDao.h │ │ │ │ ├── DConnectClientDao.m │ │ │ │ ├── DConnectDeviceDao.h │ │ │ │ ├── DConnectDeviceDao.m │ │ │ │ ├── DConnectEventDao.h │ │ │ │ ├── DConnectEventDao.m │ │ │ │ ├── DConnectEventDaoHeader.h │ │ │ │ ├── DConnectEventDeviceDao.h │ │ │ │ ├── DConnectEventDeviceDao.m │ │ │ │ ├── DConnectEventSessionDao.h │ │ │ │ ├── DConnectEventSessionDao.m │ │ │ │ ├── DConnectInterfaceDao.h │ │ │ │ ├── DConnectInterfaceDao.m │ │ │ │ ├── DConnectProfileDao.h │ │ │ │ └── DConnectProfileDao.m │ │ ├── http │ │ │ ├── DConnectHttpConnection.h │ │ │ ├── DConnectHttpConnection.m │ │ │ ├── DConnectHttpServer.h │ │ │ ├── DConnectHttpServer.m │ │ │ ├── DConnectIdentityStore.m │ │ │ ├── DConnectMultipartParser.h │ │ │ ├── DConnectMultipartParser.m │ │ │ ├── DConnectServerManager.h │ │ │ ├── DConnectServerManager.m │ │ │ ├── DConnectWebSocket.h │ │ │ ├── DConnectWebSocket.m │ │ │ ├── NSURLRequest+BodyAndBodyStreamInOne.h │ │ │ └── NSURLRequest+BodyAndBodyStreamInOne.m │ │ ├── localoauth │ │ │ ├── LocalOAuth2Main.h │ │ │ ├── LocalOAuth2Main.m │ │ │ ├── LocalOAuth2Settings.h │ │ │ ├── LocalOAuth2Settings.m │ │ │ ├── LocalOAuthAccessTokenData.h │ │ │ ├── LocalOAuthAccessTokenData.m │ │ │ ├── LocalOAuthAccessTokenDetailViewController.h │ │ │ ├── LocalOAuthAccessTokenDetailViewController.m │ │ │ ├── LocalOAuthAccessTokenListViewController.h │ │ │ ├── LocalOAuthAccessTokenListViewController.m │ │ │ ├── LocalOAuthAccessTokenScope.h │ │ │ ├── LocalOAuthAccessTokenScope.m │ │ │ ├── LocalOAuthAuthSession.h │ │ │ ├── LocalOAuthAuthSession.m │ │ │ ├── LocalOAuthCheckAccessTokenResult.h │ │ │ ├── LocalOAuthCheckAccessTokenResult.m │ │ │ ├── LocalOAuthClient.h │ │ │ ├── LocalOAuthClient.m │ │ │ ├── LocalOAuthClientData.h │ │ │ ├── LocalOAuthClientData.m │ │ │ ├── LocalOAuthClientManager.h │ │ │ ├── LocalOAuthClientManager.m │ │ │ ├── LocalOAuthClientPackageInfo.h │ │ │ ├── LocalOAuthClientPackageInfo.m │ │ │ ├── LocalOAuthConfirmAuthParams.h │ │ │ ├── LocalOAuthConfirmAuthParams.m │ │ │ ├── LocalOAuthConfirmAuthParamsBuilder.h │ │ │ ├── LocalOAuthConfirmAuthParamsBuilder.m │ │ │ ├── LocalOAuthConfirmAuthRequest.h │ │ │ ├── LocalOAuthConfirmAuthRequest.m │ │ │ ├── LocalOAuthConfirmAuthViewController.h │ │ │ ├── LocalOAuthConfirmAuthViewController.m │ │ │ ├── LocalOAuthDbCacheController.h │ │ │ ├── LocalOAuthDbCacheController.m │ │ │ ├── LocalOAuthGrantType.h │ │ │ ├── LocalOAuthGrantType.m │ │ │ ├── LocalOAuthPackageInfo.h │ │ │ ├── LocalOAuthPackageInfo.m │ │ │ ├── LocalOAuthPlaceHolder.h │ │ │ ├── LocalOAuthPlaceHolder.m │ │ │ ├── LocalOAuthRedirectionURI.h │ │ │ ├── LocalOAuthRedirectionURI.m │ │ │ ├── LocalOAuthResponseType.h │ │ │ ├── LocalOAuthResponseType.m │ │ │ ├── LocalOAuthSQLiteClient.h │ │ │ ├── LocalOAuthSQLiteClient.m │ │ │ ├── LocalOAuthSQLiteProfile.h │ │ │ ├── LocalOAuthSQLiteProfile.m │ │ │ ├── LocalOAuthSQLiteScopeDb.h │ │ │ ├── LocalOAuthSQLiteScopeDb.m │ │ │ ├── LocalOAuthSQLiteScopeInfo.h │ │ │ ├── LocalOAuthSQLiteScopeInfo.m │ │ │ ├── LocalOAuthSQLiteToken.h │ │ │ ├── LocalOAuthSQLiteToken.m │ │ │ ├── LocalOAuthSampleUser.h │ │ │ ├── LocalOAuthSampleUser.m │ │ │ ├── LocalOAuthSampleUserManager.h │ │ │ ├── LocalOAuthSampleUserManager.m │ │ │ ├── LocalOAuthScope.h │ │ │ ├── LocalOAuthScope.m │ │ │ ├── LocalOAuthScopeUtil.h │ │ │ ├── LocalOAuthScopeUtil.m │ │ │ ├── LocalOAuthToken.h │ │ │ ├── LocalOAuthToken.m │ │ │ ├── LocalOAuthTokenManager.h │ │ │ ├── LocalOAuthTokenManager.m │ │ │ ├── LocalOAuthTypedefs.h │ │ │ ├── LocalOAuthTypedefs.m │ │ │ ├── LocalOAuthUtils.h │ │ │ ├── LocalOAuthUtils.m │ │ │ └── cache │ │ │ │ └── db │ │ │ │ └── dao │ │ │ │ ├── LocalOAuthClientDao.h │ │ │ │ ├── LocalOAuthClientDao.m │ │ │ │ ├── LocalOAuthProfileDao.h │ │ │ │ ├── LocalOAuthProfileDao.m │ │ │ │ ├── LocalOAuthScopeDao.h │ │ │ │ ├── LocalOAuthScopeDao.m │ │ │ │ ├── LocalOAuthTokenDao.h │ │ │ │ └── LocalOAuthTokenDao.m │ │ ├── policy │ │ │ ├── DConnectAllowlist.h │ │ │ ├── DConnectAllowlist.m │ │ │ ├── DConnectAllowlistUtil.m │ │ │ ├── DConnectAllowlistViewController.h │ │ │ ├── DConnectAllowlistViewController.m │ │ │ ├── DConnectAllowlistlistUtil.h │ │ │ ├── DConnectEditOriginViewController.h │ │ │ ├── DConnectEditOriginViewController.m │ │ │ ├── DConnectLiteralOrigin.h │ │ │ ├── DConnectLiteralOrigin.m │ │ │ ├── DConnectOrigin.h │ │ │ ├── DConnectOriginDao.h │ │ │ ├── DConnectOriginDao.m │ │ │ ├── DConnectOriginInfo.h │ │ │ ├── DConnectOriginInfo.m │ │ │ ├── DConnectOriginParser.h │ │ │ ├── DConnectOriginParser.m │ │ │ ├── DConnectWebAppOrigin.h │ │ │ └── DConnectWebAppOrigin.m │ │ ├── profile │ │ │ ├── DConnectAuthorizationProfile+Private.h │ │ │ ├── DConnectAuthorizationProfile.m │ │ │ ├── DConnectAvailabilityProfile.m │ │ │ ├── DConnectBatteryProfile.m │ │ │ ├── DConnectCanvasProfile.m │ │ │ ├── DConnectConnectionProfile.m │ │ │ ├── DConnectDeviceOrientationProfile.m │ │ │ ├── DConnectFileDescriptorProfile.m │ │ │ ├── DConnectFileProfile.m │ │ │ ├── DConnectGeolocationProfile.m │ │ │ ├── DConnectKeyEventProfile.m │ │ │ ├── DConnectLightProfile.m │ │ │ ├── DConnectMediaPlayerProfile.m │ │ │ ├── DConnectMediaStreamRecordingProfile.m │ │ │ ├── DConnectNotificationProfile.m │ │ │ ├── DConnectPhoneProfile.m │ │ │ ├── DConnectProfile.m │ │ │ ├── DConnectProfileProvider.m │ │ │ ├── DConnectProximityProfile.m │ │ │ ├── DConnectServiceDiscoveryProfile.m │ │ │ ├── DConnectServiceInformationProfile.m │ │ │ ├── DConnectSettingProfile.m │ │ │ ├── DConnectSystemProfile.m │ │ │ ├── DConnectTouchProfile.m │ │ │ ├── DConnectVibrationProfile.m │ │ │ ├── api │ │ │ │ └── DConnectApiEntity.m │ │ │ └── spec │ │ │ │ ├── DConnectApiSpec.m │ │ │ │ ├── DConnectApiSpecBuilder.h │ │ │ │ ├── DConnectApiSpecBuilder.m │ │ │ │ ├── DConnectArrayDataSpec.h │ │ │ │ ├── DConnectArrayDataSpec.m │ │ │ │ ├── DConnectArrayDataSpecBuilder.h │ │ │ │ ├── DConnectArrayDataSpecBuilder.m │ │ │ │ ├── DConnectArrayParameterSpec.h │ │ │ │ ├── DConnectArrayParameterSpec.m │ │ │ │ ├── DConnectArrayParameterSpecBuilder.h │ │ │ │ ├── DConnectArrayParameterSpecBuilder.m │ │ │ │ ├── DConnectBooleanDataSpec.h │ │ │ │ ├── DConnectBooleanDataSpec.m │ │ │ │ ├── DConnectBooleanDataSpecBuilder.h │ │ │ │ ├── DConnectBooleanDataSpecBuilder.m │ │ │ │ ├── DConnectBooleanParameterSpec.h │ │ │ │ ├── DConnectBooleanParameterSpec.m │ │ │ │ ├── DConnectBooleanParameterSpecBuilder.h │ │ │ │ ├── DConnectBooleanParameterSpecBuilder.m │ │ │ │ ├── DConnectDataSpec.h │ │ │ │ ├── DConnectDataSpec.m │ │ │ │ ├── DConnectFileDataSpec.h │ │ │ │ ├── DConnectFileDataSpec.m │ │ │ │ ├── DConnectFileParameterSpec.h │ │ │ │ ├── DConnectFileParameterSpec.m │ │ │ │ ├── DConnectFileParameterSpecBuilder.h │ │ │ │ ├── DConnectFileParameterSpecBuilder.m │ │ │ │ ├── DConnectIntegerDataSpec.h │ │ │ │ ├── DConnectIntegerDataSpec.m │ │ │ │ ├── DConnectIntegerDataSpecBuilder.h │ │ │ │ ├── DConnectIntegerDataSpecBuilder.m │ │ │ │ ├── DConnectIntegerParameterSpec.h │ │ │ │ ├── DConnectIntegerParameterSpec.m │ │ │ │ ├── DConnectIntegerParameterSpecBuilder.h │ │ │ │ ├── DConnectIntegerParameterSpecBuilder.m │ │ │ │ ├── DConnectNumberDataSpec.h │ │ │ │ ├── DConnectNumberDataSpec.m │ │ │ │ ├── DConnectNumberDataSpecBuilder.h │ │ │ │ ├── DConnectNumberDataSpecBuilder.m │ │ │ │ ├── DConnectNumberParameterSpec.h │ │ │ │ ├── DConnectNumberParameterSpec.m │ │ │ │ ├── DConnectNumberParameterSpecBuilder.h │ │ │ │ ├── DConnectNumberParameterSpecBuilder.m │ │ │ │ ├── DConnectParameterSpec.h │ │ │ │ ├── DConnectParameterSpec.m │ │ │ │ ├── DConnectParameterSpecBaseBuilder.h │ │ │ │ ├── DConnectParameterSpecBaseBuilder.m │ │ │ │ ├── DConnectPluginSpec.m │ │ │ │ ├── DConnectProfileSpec.m │ │ │ │ ├── DConnectProfileSpecBuilder.h │ │ │ │ ├── DConnectProfileSpecBuilder.m │ │ │ │ ├── DConnectSpecConstants.m │ │ │ │ ├── DConnectSpecErrorFactory.h │ │ │ │ ├── DConnectSpecErrorFactory.m │ │ │ │ ├── DConnectStringDataSpec.h │ │ │ │ ├── DConnectStringDataSpec.m │ │ │ │ ├── DConnectStringDataSpecBuilder.h │ │ │ │ ├── DConnectStringDataSpecBuilder.m │ │ │ │ ├── DConnectStringParameterSpec.h │ │ │ │ ├── DConnectStringParameterSpec.m │ │ │ │ ├── DConnectStringParameterSpecBuilder.h │ │ │ │ ├── DConnectStringParameterSpecBuilder.m │ │ │ │ └── parser │ │ │ │ ├── DConnectProfileSpecJsonParser.h │ │ │ │ ├── DConnectProfileSpecJsonParser.m │ │ │ │ ├── DConnectProfileSpecJsonParserFactory.h │ │ │ │ ├── DConnectProfileSpecJsonParserFactory.m │ │ │ │ ├── DConnectSwaggerJsonParser.h │ │ │ │ ├── DConnectSwaggerJsonParser.m │ │ │ │ ├── DConnectSwaggerJsonParserFactory.h │ │ │ │ └── DConnectSwaggerJsonParserFactory.m │ │ ├── service │ │ │ ├── DConnectService.m │ │ │ ├── DConnectServiceManager.m │ │ │ └── DConnectServiceProvider.m │ │ ├── test │ │ │ └── CoverageExportSetting.m │ │ ├── utils │ │ │ ├── DConnectEventHelper.m │ │ │ ├── DConnectMessageFactory.m │ │ │ ├── DConnectRFC3339DateUtils.m │ │ │ ├── DConnectURIBuilder.m │ │ │ ├── DConnectVersionName.h │ │ │ ├── DConnectVersionName.m │ │ │ ├── NSString+Extension.h │ │ │ └── NSString+Extension.m │ │ └── viewcontroller │ │ │ ├── DConnectServiceListViewCell.h │ │ │ ├── DConnectServiceListViewCell.m │ │ │ └── DConnectServiceListViewController.m │ ├── DConnectSDK-Prefix.pch │ ├── DConnectSDK │ │ ├── DConnectApiEntity.h │ │ ├── DConnectApiSpec.h │ │ ├── DConnectAuthorizationProfile.h │ │ ├── DConnectAvailabilityProfile.h │ │ ├── DConnectBaseCacheController.h │ │ ├── DConnectBatteryProfile.h │ │ ├── DConnectCanvasProfile.h │ │ ├── DConnectConnectionProfile.h │ │ ├── DConnectDBCacheController.h │ │ ├── DConnectDeviceOrientationProfile.h │ │ ├── DConnectDevicePlugin.h │ │ ├── DConnectEvent.h │ │ ├── DConnectEventCacheController.h │ │ ├── DConnectEventHelper.h │ │ ├── DConnectEventManager.h │ │ ├── DConnectFileCacheController.h │ │ ├── DConnectFileDescriptorProfile.h │ │ ├── DConnectFileManager.h │ │ ├── DConnectFileProfile.h │ │ ├── DConnectGeolocationProfile.h │ │ ├── DConnectIdentityStore.h │ │ ├── DConnectKeyEventProfile.h │ │ ├── DConnectLightProfile.h │ │ ├── DConnectManager.h │ │ ├── DConnectMediaPlayerProfile.h │ │ ├── DConnectMediaStreamRecordingProfile.h │ │ ├── DConnectMemoryCacheController.h │ │ ├── DConnectMessage.h │ │ ├── DConnectMessageFactory.h │ │ ├── DConnectNotificationProfile.h │ │ ├── DConnectPhoneProfile.h │ │ ├── DConnectPluginSpec.h │ │ ├── DConnectProfile.h │ │ ├── DConnectProfileProvider.h │ │ ├── DConnectProfileSpec.h │ │ ├── DConnectProximityProfile.h │ │ ├── DConnectRFC3339DateUtils.h │ │ ├── DConnectRequestMessage.h │ │ ├── DConnectResponseMessage.h │ │ ├── DConnectSDK.h │ │ ├── DConnectService.h │ │ ├── DConnectServiceDiscoveryProfile.h │ │ ├── DConnectServiceInformationProfile.h │ │ ├── DConnectServiceListViewController.h │ │ ├── DConnectServiceListener.h │ │ ├── DConnectServiceManager.h │ │ ├── DConnectServiceProvider.h │ │ ├── DConnectSettingProfile.h │ │ ├── DConnectSettings.h │ │ ├── DConnectSpecConstants.h │ │ ├── DConnectSystemProfile.h │ │ ├── DConnectTouchProfile.h │ │ ├── DConnectURIBuilder.h │ │ ├── DConnectUtil.h │ │ └── DConnectVibrationProfile.h │ ├── Dependencies │ │ ├── CocoaAsyncSocket │ │ │ ├── About.txt │ │ │ ├── GCDAsyncSocket.h │ │ │ └── GCDAsyncSocket.m │ │ ├── CocoaHTTPServer │ │ │ ├── Categories │ │ │ │ ├── DDData.h │ │ │ │ ├── DDData.m │ │ │ │ ├── DDNumber.h │ │ │ │ ├── DDNumber.m │ │ │ │ ├── DDRange.h │ │ │ │ └── DDRange.m │ │ │ ├── HTTPAuthenticationRequest.h │ │ │ ├── HTTPAuthenticationRequest.m │ │ │ ├── HTTPConnection.h │ │ │ ├── HTTPConnection.m │ │ │ ├── HTTPLogging.h │ │ │ ├── HTTPMessage.h │ │ │ ├── HTTPMessage.m │ │ │ ├── HTTPResponse.h │ │ │ ├── HTTPServer.h │ │ │ ├── HTTPServer.m │ │ │ ├── LICENSE.txt │ │ │ ├── Mime │ │ │ │ ├── MultipartFormDataParser.h │ │ │ │ ├── MultipartFormDataParser.m │ │ │ │ ├── MultipartMessageHeader.h │ │ │ │ ├── MultipartMessageHeader.m │ │ │ │ ├── MultipartMessageHeaderField.h │ │ │ │ └── MultipartMessageHeaderField.m │ │ │ ├── Responses │ │ │ │ ├── HTTPAsyncFileResponse.h │ │ │ │ ├── HTTPAsyncFileResponse.m │ │ │ │ ├── HTTPDataResponse.h │ │ │ │ ├── HTTPDataResponse.m │ │ │ │ ├── HTTPDynamicFileResponse.h │ │ │ │ ├── HTTPDynamicFileResponse.m │ │ │ │ ├── HTTPErrorResponse.h │ │ │ │ ├── HTTPErrorResponse.m │ │ │ │ ├── HTTPFileResponse.h │ │ │ │ ├── HTTPFileResponse.m │ │ │ │ ├── HTTPRedirectResponse.h │ │ │ │ └── HTTPRedirectResponse.m │ │ │ ├── WebSocket.h │ │ │ └── WebSocket.m │ │ ├── GCIPUtil.h │ │ ├── GCIPUtil.m │ │ ├── RoutingHTTPServer │ │ │ ├── HTTPResponseProxy.h │ │ │ ├── HTTPResponseProxy.m │ │ │ ├── LICENSE.txt │ │ │ ├── Route.h │ │ │ ├── Route.m │ │ │ ├── RouteRequest.h │ │ │ ├── RouteRequest.m │ │ │ ├── RouteResponse.h │ │ │ ├── RouteResponse.m │ │ │ ├── RoutingConnection.h │ │ │ ├── RoutingConnection.m │ │ │ ├── RoutingHTTPServer.h │ │ │ └── RoutingHTTPServer.m │ │ └── multipart-parser-c │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── multipart_parser.c │ │ │ └── multipart_parser.h │ └── Resources │ │ ├── Base.lproj │ │ ├── DConnectSDK-iPad.storyboard │ │ └── DConnectSDK-iPhone.storyboard │ │ ├── dconnect-ios.crt │ │ ├── dconnect-ios.p12 │ │ ├── en.lproj │ │ ├── DConnectSDK-iPad.strings │ │ ├── DConnectSDK-iPhone.strings │ │ └── Localizable.strings │ │ └── ja.lproj │ │ ├── DConnectSDK-iPad.strings │ │ ├── DConnectSDK-iPhone.strings │ │ └── Localizable.strings │ ├── DConnectSDKTests │ ├── DConnectManager │ │ ├── Fail │ │ │ └── DConnectSDKFailTestCase.m │ │ ├── Normal │ │ │ ├── DConnectBatteryProfileTest.m │ │ │ ├── DConnectFileProfileTest.m │ │ │ ├── DConnectManagerTestCase.m │ │ │ ├── DConnectNetworkServiceDiscoveryProfileTest.m │ │ │ ├── DConnectNormalTestCase.h │ │ │ ├── DConnectNormalTestCase.m │ │ │ └── DConnectSystemProfileTest.m │ │ └── NormalTestDevicePlugin │ │ │ ├── DConnectURIBuilder.h │ │ │ ├── DConnectURIBuilder.m │ │ │ ├── TestDevicePlugin.h │ │ │ └── TestDevicePlugin.m │ ├── DConnectSDKTests-Info.plist │ ├── GcovTestObserver.h │ ├── GcovTestObserver.m │ ├── Multipart │ │ ├── Tools │ │ │ ├── Hash.h │ │ │ ├── Hash.m │ │ │ ├── Multipart.h │ │ │ └── Multipart.m │ │ └── WebAPISuccessTestCase.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── ja.lproj │ │ └── InfoPlist.strings │ ├── DConnectSDK_resources │ ├── .gitignore │ ├── DConnectSDK_resources-Info.plist │ ├── DConnectSDK_resources-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ └── ja.lproj │ │ └── InfoPlist.strings │ ├── Doxyfile │ ├── LICENSE.TXT │ ├── NOTICE.TXT │ ├── ObjectiveC.gcno │ ├── bin │ └── .gitignore │ ├── doc_img │ └── ios_arch.png │ └── download-spec.sh └── readme.en.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /DeviceConnect.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/DeviceConnect.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DeviceConnect.xcworkspace/xcshareddata/DeviceConnect.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/DeviceConnect.xcworkspace/xcshareddata/DeviceConnect.xcscmblueprint -------------------------------------------------------------------------------- /DeviceConnect.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/DeviceConnect.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/README.md -------------------------------------------------------------------------------- /assets/availability.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/assets/availability.PNG -------------------------------------------------------------------------------- /dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Classes/DCMECGProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Classes/DCMECGProfile.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Classes/DCMHealthProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Classes/DCMHealthProfile.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Classes/DCMHumidityProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Classes/DCMHumidityProfile.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Classes/DCMTVProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Classes/DCMTVProfile.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Classes/DCMWalkStateProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Classes/DCMWalkStateProfile.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/DCMDevicePluginSDK-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/DCMDevicePluginSDK-Prefix.pch -------------------------------------------------------------------------------- /dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Headers/DCMDevicePluginSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Headers/DCMDevicePluginSDK.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Headers/DCMECGProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Headers/DCMECGProfile.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Headers/DCMHealthProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Headers/DCMHealthProfile.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Headers/DCMHumidityProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Headers/DCMHumidityProfile.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Headers/DCMTVProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Headers/DCMTVProfile.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Headers/DCMWalkStateProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/DCMDevicePluginSDK/DCMDevicePluginSDK/Headers/DCMWalkStateProfile.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/DCMDevicePluginSDK/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/DCMDevicePluginSDK/LICENSE.TXT -------------------------------------------------------------------------------- /dConnectDevicePlugin/DCMDevicePluginSDK/bin/.gitignore: -------------------------------------------------------------------------------- 1 | *.framework 2 | *.bundle -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/LICENSE.TXT -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/bin/.gitignore: -------------------------------------------------------------------------------- 1 | *.framework 2 | *.bundle -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/dConnectDeviceAllJoyn-Prefix.gcno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/dConnectDeviceAllJoyn-Prefix.gcno -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/dConnectDeviceAllJoyn_resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/dConnectDeviceAllJoyn_resources/Info.plist -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/.gitignore: -------------------------------------------------------------------------------- 1 | !*.o 2 | !*.a -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoyn/.gitignore: -------------------------------------------------------------------------------- 1 | darwin/ -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNAboutDataListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNAboutDataListener.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNAboutIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNAboutIcon.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNAboutIconObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNAboutIconObject.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNAboutIconProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNAboutIconProxy.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNAboutListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNAboutListener.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNAboutListenerImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNAboutListenerImpl.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNAboutObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNAboutObject.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNAboutProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNAboutProxy.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNBus.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNBusAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNBusAttachment.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNBusController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNBusController.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNBusInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNBusInterface.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNBusListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNBusListener.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNBusListenerImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNBusListenerImpl.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNBusObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNBusObject.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNBusObjectImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNBusObjectImpl.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNClientController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNClientController.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNHandle.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNInit.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNInterfaceMember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNInterfaceMember.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNInterfaceProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNInterfaceProperty.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNKeyStoreListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNKeyStoreListener.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNMessage.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNMessageArgument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNMessageArgument.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNObject.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNObserver.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNObserverListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNObserverListener.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNPasswordManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNPasswordManager.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNProxyBusObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNProxyBusObject.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNServiceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNServiceController.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNSessionListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNSessionListener.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNSessionOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNSessionOptions.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNSignalHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNSignalHandler.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNSignalHandlerImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNSignalHandlerImpl.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNStatus.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNTranslator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNTranslator.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNTranslatorImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNTranslatorImpl.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNTransportMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNTransportMask.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNType.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AJNVersion.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AllJoynFramework_iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/AllJoynFramework_iOS.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/AllJoynFramework/ReadMe.txt: -------------------------------------------------------------------------------- 1 | AllJoyn 15.04.00b OSX/iOS SDK distribution. -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/CocoaPods/.gitignore: -------------------------------------------------------------------------------- 1 | Podfile.lock -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/CocoaPods/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/CocoaPods/Podfile -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/deps/CocoaPods/Pods/.gitignore: -------------------------------------------------------------------------------- 1 | Headers/ 2 | Local Podspecs/ 3 | Manifest.lock 4 | OpenSSL-Static/ 5 | Target Support Files/ -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/tools/AllJoynCodeGenerator/objcHeader.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/tools/AllJoynCodeGenerator/objcHeader.xsl -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceAllJoyn/tools/AllJoynCodeGenerator/objcSource.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceAllJoyn/tools/AllJoynCodeGenerator/objcSource.xsl -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceChromeCast/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceChromeCast/LICENSE.TXT -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceChromeCast/bin/.gitignore: -------------------------------------------------------------------------------- 1 | *.framework 2 | *.bundle -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceChromeCast/dConnectDeviceChromecast/Headers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceChromeCast/deps/CocoaPods/.gitignore: -------------------------------------------------------------------------------- 1 | Podfile.lock 2 | Cast.xcworkspace -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceChromeCast/deps/CocoaPods/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceChromeCast/deps/CocoaPods/Podfile -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceChromeCast/deps/CocoaPods/Pods/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceChromeCast/deps/CocoaPods/Pods/.gitignore -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHitoe/.gitignore: -------------------------------------------------------------------------------- 1 | hitoeAPI.framework -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHitoe/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHitoe/LICENSE.TXT -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHitoe/bin/.gitignore: -------------------------------------------------------------------------------- 1 | *.framework 2 | *.bundle -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHitoe/dConnectDeviceHitoe.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHitoe/dConnectDeviceHitoe.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHitoe/dConnectDeviceHitoe/Classes/DPHitoeConsts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHitoe/dConnectDeviceHitoe/Classes/DPHitoeConsts.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHitoe/dConnectDeviceHitoe/Classes/DPHitoeService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHitoe/dConnectDeviceHitoe/Classes/DPHitoeService.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHitoe/dConnectDeviceHitoe/Classes/DPHitoeService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHitoe/dConnectDeviceHitoe/Classes/DPHitoeService.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHitoe/dConnectDeviceHitoe/Classes/db/DPHitoeDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHitoe/dConnectDeviceHitoe/Classes/db/DPHitoeDevice.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHitoe/dConnectDeviceHitoe/Classes/db/DPHitoeDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHitoe/dConnectDeviceHitoe/Classes/db/DPHitoeDevice.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHitoe/dConnectDeviceHitoe/Headers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHitoe/dConnectDeviceHitoe/Resources/dconnect_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHitoe/dConnectDeviceHitoe/Resources/dconnect_icon.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHitoe/dConnectDeviceHitoe_resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHitoe/dConnectDeviceHitoe_resources/Info.plist -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHost/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHost/LICENSE.TXT -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHost/bin/.gitignore: -------------------------------------------------------------------------------- 1 | *.framework 2 | *.bundle -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/Classes/DPHostDevicePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/Classes/DPHostDevicePlugin.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/Classes/DPHostDevicePlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/Classes/DPHostDevicePlugin.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/Classes/DPHostReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/Classes/DPHostReachability.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/Classes/DPHostReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/Classes/DPHostReachability.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/Classes/DPHostService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/Classes/DPHostService.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/Classes/DPHostService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/Classes/DPHostService.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/Classes/DPHostUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/Classes/DPHostUtils.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/Classes/DPHostUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/Classes/DPHostUtils.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/DPHostDevicePlugin-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/DPHostDevicePlugin-Prefix.pch -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost/Headers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost_resources/dconnect_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHost/dConnectDeviceHost_resources/dconnect_icon.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/bin/.gitignore: -------------------------------------------------------------------------------- 1 | *.framework 2 | *.bundle -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueDevicePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueDevicePlugin.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueDevicePlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueDevicePlugin.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueItemBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueItemBridge.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueItemBridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueItemBridge.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueLightProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueLightProfile.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueLightProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueLightProfile.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueLightService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueLightService.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueLightService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueLightService.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueManager.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueManager.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueModelController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueModelController.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueModelController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueModelController.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueReachability.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueReachability.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueService.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueService.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueSystemProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueSystemProfile.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueSystemProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueSystemProfile.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueViewController.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/DPHueViewController.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/util/DPHueUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/util/DPHueUtil.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/util/DPHueUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Classes/util/DPHueUtil.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Headers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Headers/DPHueConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Headers/DPHueConst.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Resources/Info.plist -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Resources/hue001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Resources/hue001.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Resources/hue002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Resources/hue002.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Resources/hue003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Resources/hue003.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Resources/hue004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Resources/hue004.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Resources/hue_small_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/Resources/hue_small_icon.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/dConnectDeviceHue-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue/dConnectDeviceHue-Prefix.pch -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHueTests/dConnectDeviceHueTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHueTests/dConnectDeviceHueTests.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHueTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHueTests/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHueTests/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHueTests/ja.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue_resources/dconnect_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue_resources/dconnect_icon.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue_resources/dconnect_icon_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceHue/dConnectDeviceHue_resources/dconnect_icon_off.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/LICENSE.TXT -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/bin/.gitignore: -------------------------------------------------------------------------------- 1 | *.framework 2 | *.bundle -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Classes/DPIRKitConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Classes/DPIRKitConst.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Classes/DPIRKitService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Classes/DPIRKitService.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Classes/DPIRKitService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Classes/DPIRKitService.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Headers/DPIRKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Headers/DPIRKit.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit01.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit02.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit03.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit04.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit05.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit06.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit07.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit08.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit09.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/irkit10.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/light.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit/Resources/tv.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit_resources/dconnect_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit_resources/dconnect_icon.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit_resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit_resources/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit_resources/tv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceIRKit/dConnectDeviceIRKit_resources/tv.json -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceLinking/Libs/Release/.gitignore: -------------------------------------------------------------------------------- 1 | *.framework 2 | *.bundle -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceLinking/bin/.gitignore: -------------------------------------------------------------------------------- 1 | *.framework 2 | *.bundle -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceLinking/dConnectDeviceLinking/Headers/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceLinking/dConnectDeviceLinkingTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceLinking/dConnectDeviceLinkingTests/Info.plist -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceLinking/dConnectDeviceLinkingUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceLinking/dConnectDeviceLinkingUITests/Info.plist -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceLinking/dConnectDeviceLinking_resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceLinking/dConnectDeviceLinking_resources/Info.plist -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/LICENSE.TXT -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/NSNumber+stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/NSNumber+stdint.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PBBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PBBitmap.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PBErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PBErrors.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PBLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PBLog.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PBPebbleCentral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PBPebbleCentral.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PBWatch+Golf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PBWatch+Golf.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PBWatch+Ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PBWatch+Ping.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PBWatch+Sports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PBWatch+Sports.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PBWatch+Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PBWatch+Version.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PBWatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PBWatch.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PebbleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/PebbleKit.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/gtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Headers/gtypes.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/PebbleKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/PebbleKit -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Versions/A/Headers/PBLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Versions/A/Headers/PBLog.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Versions/A/PebbleKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Versions/A/PebbleKit -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Versions/Current/PebbleKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleKit.framework/Versions/Current/PebbleKit -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleVendor.framework/Headers/DDASLLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleVendor.framework/Headers/DDASLLogger.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleVendor.framework/Headers/DDFileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleVendor.framework/Headers/DDFileLogger.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleVendor.framework/Headers/DDLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleVendor.framework/Headers/DDLog.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleVendor.framework/Headers/DDTTYLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleVendor.framework/Headers/DDTTYLogger.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleVendor.framework/PebbleVendor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleVendor.framework/PebbleVendor -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/PebbleVendor.framework/Versions/A/PebbleVendor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/PebbleVendor.framework/Versions/A/PebbleVendor -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/bin/.gitignore: -------------------------------------------------------------------------------- 1 | *.framework 2 | *.bundle -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/dConnectDevicePebble.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/dConnectDevicePebble.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/dConnectDevicePebble/Classes/DPPebbleImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/dConnectDevicePebble/Classes/DPPebbleImage.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/dConnectDevicePebble/Classes/DPPebbleImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/dConnectDevicePebble/Classes/DPPebbleImage.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/dConnectDevicePebble/Classes/DPPebbleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/dConnectDevicePebble/Classes/DPPebbleManager.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/dConnectDevicePebble/Classes/DPPebbleManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/dConnectDevicePebble/Classes/DPPebbleManager.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/dConnectDevicePebble/Classes/DPPebbleService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/dConnectDevicePebble/Classes/DPPebbleService.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/dConnectDevicePebble/Classes/DPPebbleService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDevicePebble/dConnectDevicePebble/Classes/DPPebbleService.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDevicePebble/dConnectDevicePebble/Headers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceSonyCamera/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceSonyCamera/LICENSE.TXT -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceSonyCamera/bin/.gitignore: -------------------------------------------------------------------------------- 1 | *.framework 2 | *.bundle -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceSphero/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceSphero/.gitignore -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceSphero/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceSphero/LICENSE.TXT -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceSphero/bin/.gitignore: -------------------------------------------------------------------------------- 1 | *.framework 2 | *.bundle -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceSphero/dConnectDeviceSphero.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceSphero/dConnectDeviceSphero.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceSphero/dConnectDeviceSphero/Classes/DPSpheroManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceSphero/dConnectDeviceSphero/Classes/DPSpheroManager.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceSphero/dConnectDeviceSphero/Classes/DPSpheroManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceSphero/dConnectDeviceSphero/Classes/DPSpheroManager.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceSphero/dConnectDeviceSphero/Classes/DPSpheroProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceSphero/dConnectDeviceSphero/Classes/DPSpheroProfile.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceSphero/dConnectDeviceSphero/Classes/DPSpheroService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceSphero/dConnectDeviceSphero/Classes/DPSpheroService.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceSphero/dConnectDeviceSphero/Classes/DPSpheroService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceSphero/dConnectDeviceSphero/Classes/DPSpheroService.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceSphero/dConnectDeviceSphero/Headers/DPSpheroProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceSphero/dConnectDeviceSphero/Headers/DPSpheroProfile.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceSphero/dConnectDeviceSphero/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceSphero/dConnectDeviceSphero/Resources/Info.plist -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTest/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTest/LICENSE.TXT -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTest/NOTICE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTest/NOTICE.TXT -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTest/bin/.gitignore: -------------------------------------------------------------------------------- 1 | *.framework 2 | *.bundle -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTest/Classes/DeviceTestPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTest/Classes/DeviceTestPlugin.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTest/Classes/DeviceTestPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTest/Classes/DeviceTestPlugin.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTest/Classes/TestService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTest/Classes/TestService.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTest/Classes/TestService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTest/Classes/TestService.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTest/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTest/Resources/Info.plist -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTest/dConnectDeviceTest-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTest/dConnectDeviceTest-Prefix.pch -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTest/dConnectDeviceTest.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | ../Versions/A -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTest/dConnectDeviceTest.framework/dConnectDeviceTest: -------------------------------------------------------------------------------- 1 | Versions/Current/dConnectDeviceTest -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTestTests/Multipart/Tools/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTestTests/Multipart/Tools/Hash.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTestTests/Multipart/Tools/Hash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTest/dConnectDeviceTestTests/Multipart/Tools/Hash.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTest/doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTest/doxygen.conf -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTest/test-reports/html/alltests-errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTest/test-reports/html/alltests-errors.html -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTest/xctest-report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTest/xctest-report.xml -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTest/xctest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTest/xctest.sh -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/LICENSE.TXT -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/bin/.gitignore: -------------------------------------------------------------------------------- 1 | *.framework 2 | *.bundle -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/.gitignore: -------------------------------------------------------------------------------- 1 | lib* -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaCamera.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaCamera.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaCamera.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaManager.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaManager.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaParam.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaParam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaParam.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaQuaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaQuaternion.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaQuaternion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaQuaternion.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaROI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaROI.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaService.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaService.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaUVSphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaUVSphere.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaUVSphere.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaUVSphere.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaVector3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaVector3D.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaVector3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/DPThetaVector3D.m -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/GCDAsyncSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Classes/GCDAsyncSocket.h -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/WiFiTheta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/WiFiTheta.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/theta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/theta.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/theta@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/theta@2x.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/thetaMovie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/thetaMovie.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/thetaMovie@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/thetaMovie@2x.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/thetaOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/thetaOn.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/thetaOn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/thetaOn@2x.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/thetaStandby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/thetaStandby.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/thetaWiFi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/thetaWiFi.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/thetaWiFi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta/Resources/thetaWiFi@2x.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceThetaTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceThetaTests/Info.plist -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta_resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta_resources/Info.plist -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta_resources/dconnect_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/dConnectDeviceTheta_resources/dconnect_icon.png -------------------------------------------------------------------------------- /dConnectDevicePlugin/dConnectDeviceTheta/require_theta_sdk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectDevicePlugin/dConnectDeviceTheta/require_theta_sdk.rb -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHConfig.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHData.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHDataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHDataManager.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHDataManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHDataManager.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHPageModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHPageModel.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHPageModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHPageModel.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHURLManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHURLManager.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHURLManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHURLManager.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHUtils.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/GHUtils.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/Info.plist -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/Page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/Page.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/Page.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/Page.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/db.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkDBFramework/db.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkShare/AddBookmarkPreprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkShare/AddBookmarkPreprocessor.js -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkShare/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkShare/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkShare/BookmarkShare.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkShare/BookmarkShare.entitlements -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkShare/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkShare/Info.plist -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkShare/ShareViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkShare/ShareViewController.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkShare/ShareViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkShare/ShareViewController.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/BookmarkShare/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/BookmarkShare/module.modulemap -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/AppDelegate.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/AppDelegate.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/Bookmark.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/Bookmark.storyboard -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/Info.plist -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/Popup.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/Popup.storyboard -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/ViewController.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/ViewController.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/BookmarkIconViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/BookmarkIconViewCell.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/BookmarkIconViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/BookmarkIconViewCell.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/DetailableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/DetailableCell.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/DetailableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/DetailableCell.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/DeviceIconViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/DeviceIconViewCell.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/DeviceIconViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/DeviceIconViewCell.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/DeviceIconViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/DeviceIconViewModel.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/DeviceIconViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/DeviceIconViewModel.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/DeviceMoreViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/DeviceMoreViewCell.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/DeviceMoreViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/DeviceMoreViewCell.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHBookmarkCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHBookmarkCell.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHBookmarkCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHBookmarkCell.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHBookmarkTitleCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHBookmarkTitleCell.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHBookmarkTitleCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHBookmarkTitleCell.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHDeviceUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHDeviceUtil.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHDeviceUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHDeviceUtil.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHDirectory.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHDirectory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHDirectory.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHFolderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHFolderCell.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHFolderCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHFolderCell.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHFolderTitleCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHFolderTitleCell.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHFolderTitleCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHFolderTitleCell.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHFolderTitleCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHFolderTitleCell.xib -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHHeaderView.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHHeaderView.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHPageViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHPageViewCell.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHPageViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHPageViewCell.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHPageViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHPageViewCell.xib -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHSettingController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHSettingController.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHSettingController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHSettingController.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHSettingViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHSettingViewModel.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHSettingViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHSettingViewModel.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHToolView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHToolView.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHToolView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHToolView.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHURLLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHURLLabel.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHURLLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GHURLLabel.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GrayLabelCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GrayLabelCell.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GrayLabelCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/GrayLabelCell.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/SwitchableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/SwitchableCell.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/SwitchableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/SwitchableCell.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/TopViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/TopViewModel.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/TopViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/TopViewModel.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/WebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/WebViewController.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/WebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/classes/WebViewController.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/checker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/checker.html -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/css/accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/css/accordion.css -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/css/checker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/css/checker.css -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/css/index.css -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/css/resource.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/css/resource.css -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/images/icon01_battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/images/icon01_battery.png -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/images/icon06_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/images/icon06_canvas.png -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/images/icon09_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/images/icon09_file.png -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/images/icon11_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/images/icon11_phone.png -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/images/icon13_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/images/icon13_light.png -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/images/icon21_other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/images/icon21_other.png -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/images/icon27_touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/images/icon27_touch.png -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/images/icon_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/images/icon_minus.png -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/images/icon_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/images/icon_plus.png -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/index.html -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/js/checker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/js/checker.js -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/js/dconnectsdk-2.2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/js/dconnectsdk-2.2.0.js -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/js/index.js -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/js/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/js/resource.js -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/js/util.js -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/resource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/demo/resource.html -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/css/main.css -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/index.html -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/summary/bookmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/summary/bookmark.html -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/summary/browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/summary/browser.html -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/summary/device_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/summary/device_list.html -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/summary/images/mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/summary/images/mark.png -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/summary/manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/summary/manager.html -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/summary/safari_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/summary/safari_view.html -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/summary/security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/summary/security.html -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/summary/setting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/summary/setting.html -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/summary/top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/summary/top.html -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/tutorial/demo/js/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/tutorial/demo/js/queue.js -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/tutorial/demo/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/help/tutorial/demo/js/util.js -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/html/device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/html/device.html -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/images/bookmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/images/bookmark@2x.png -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/images/folder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/images/folder@2x.png -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/images/star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/images/star@2x.png -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/libs/GTMNSString-HTML/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/libs/GTMNSString-HTML/LICENSE -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/libs/RATreeView/RATreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/libs/RATreeView/RATreeNode.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/libs/RATreeView/RATreeNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/libs/RATreeView/RATreeNode.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/libs/RATreeView/RATreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/libs/RATreeView/RATreeView.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/libs/RATreeView/RATreeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/libs/RATreeView/RATreeView.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectBrowserForIOS9/dConnectBrowserForIOS9/main.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectConst.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectDevicePlugin+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectDevicePlugin+Private.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectDevicePlugin+Private.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectDevicePlugin+Private.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectDevicePlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectDevicePlugin.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectDevicePluginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectDevicePluginManager.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectDevicePluginManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectDevicePluginManager.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectFileManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectFileManager.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectFilesProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectFilesProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectFilesProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectFilesProfile.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectLocalOAuthDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectLocalOAuthDB.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectLocalOAuthDB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectLocalOAuthDB.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectManager+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectManager+Private.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectManager.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectManagerAuthorizationProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectManagerAuthorizationProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectManagerAuthorizationProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectManagerAuthorizationProfile.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectManagerDeliveryProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectManagerDeliveryProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectManagerDeliveryProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectManagerDeliveryProfile.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectManagerSystemProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectManagerSystemProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectManagerSystemProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectManagerSystemProfile.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectMessage+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectMessage+Private.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectMessage.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectRequestMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectRequestMessage.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectResponseMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectResponseMessage.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectSettings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectSettings.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/DConnectUtil.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/cipher/CipherAuthSignature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/cipher/CipherAuthSignature.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/cipher/CipherAuthSignature.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/cipher/CipherAuthSignature.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/cipher/CipherSignatureFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/cipher/CipherSignatureFactory.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/cipher/CipherSignatureFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/cipher/CipherSignatureFactory.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/cipher/CipherSignatureKind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/cipher/CipherSignatureKind.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/cipher/CipherSignatureProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/cipher/CipherSignatureProc.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/cipher/CipherSignatureProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/cipher/CipherSignatureProc.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/cipher/CipherSignatureProcMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/cipher/CipherSignatureProcMD.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/cipher/CipherSignatureProcMD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/cipher/CipherSignatureProcMD.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/db/DConnectSQLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/db/DConnectSQLite.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/db/DConnectSQLiteCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/db/DConnectSQLiteCursor.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/db/DConnectSQLiteCursor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/db/DConnectSQLiteCursor.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/db/DConnectSQLiteDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/db/DConnectSQLiteDatabase.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/db/DConnectSQLiteDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/db/DConnectSQLiteDatabase.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/db/DConnectSQLiteOpenHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/db/DConnectSQLiteOpenHelper.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/db/DConnectSQLiteOpenHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/db/DConnectSQLiteOpenHelper.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEvent.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEventBroker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEventBroker.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEventBroker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEventBroker.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEventManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEventManager.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEventProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEventProtocol.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEventProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEventProtocol.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEventSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEventSession.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEventSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEventSession.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEventSessionTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEventSessionTable.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEventSessionTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectEventSessionTable.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectMessageEventSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectMessageEventSession.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectMessageEventSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/DConnectMessageEventSession.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/cache/db/dao/DConnectClientDao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/cache/db/dao/DConnectClientDao.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/cache/db/dao/DConnectClientDao.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/cache/db/dao/DConnectClientDao.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/cache/db/dao/DConnectDeviceDao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/event/cache/db/dao/DConnectDeviceDao.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectHttpConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectHttpConnection.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectHttpConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectHttpConnection.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectHttpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectHttpServer.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectHttpServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectHttpServer.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectIdentityStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectIdentityStore.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectMultipartParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectMultipartParser.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectMultipartParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectMultipartParser.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectServerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectServerManager.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectServerManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectServerManager.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectWebSocket.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectWebSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/http/DConnectWebSocket.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuth2Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuth2Main.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuth2Main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuth2Main.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuth2Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuth2Settings.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuth2Settings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuth2Settings.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthAuthSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthAuthSession.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthAuthSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthAuthSession.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthClient.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthClient.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthClientData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthClientData.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthClientData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthClientData.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthGrantType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthGrantType.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthGrantType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthGrantType.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthPackageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthPackageInfo.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthPackageInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthPackageInfo.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthPlaceHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthPlaceHolder.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthPlaceHolder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthPlaceHolder.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthResponseType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthResponseType.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthResponseType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthResponseType.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthSQLiteClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthSQLiteClient.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthSQLiteClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthSQLiteClient.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthSQLiteToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthSQLiteToken.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthSQLiteToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthSQLiteToken.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthSampleUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthSampleUser.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthSampleUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthSampleUser.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthScope.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthScope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthScope.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthScopeUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthScopeUtil.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthScopeUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthScopeUtil.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthToken.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthToken.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthTokenManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthTokenManager.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthTokenManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthTokenManager.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthTypedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthTypedefs.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthTypedefs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthTypedefs.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthUtils.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/localoauth/LocalOAuthUtils.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectAllowlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectAllowlist.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectAllowlist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectAllowlist.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectAllowlistUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectAllowlistUtil.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectAllowlistlistUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectAllowlistlistUtil.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectLiteralOrigin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectLiteralOrigin.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectLiteralOrigin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectLiteralOrigin.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectOrigin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectOrigin.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectOriginDao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectOriginDao.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectOriginDao.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectOriginDao.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectOriginInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectOriginInfo.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectOriginInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectOriginInfo.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectOriginParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectOriginParser.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectOriginParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectOriginParser.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectWebAppOrigin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectWebAppOrigin.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectWebAppOrigin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/policy/DConnectWebAppOrigin.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectBatteryProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectBatteryProfile.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectCanvasProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectCanvasProfile.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectConnectionProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectConnectionProfile.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectFileProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectFileProfile.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectKeyEventProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectKeyEventProfile.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectLightProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectLightProfile.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectPhoneProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectPhoneProfile.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectProfile.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectProfileProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectProfileProvider.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectProximityProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectProximityProfile.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectSettingProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectSettingProfile.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectSystemProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectSystemProfile.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectTouchProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectTouchProfile.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectVibrationProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/DConnectVibrationProfile.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/api/DConnectApiEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/api/DConnectApiEntity.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/spec/DConnectApiSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/spec/DConnectApiSpec.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/spec/DConnectDataSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/spec/DConnectDataSpec.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/spec/DConnectDataSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/spec/DConnectDataSpec.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/spec/DConnectFileDataSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/spec/DConnectFileDataSpec.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/spec/DConnectFileDataSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/spec/DConnectFileDataSpec.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/spec/DConnectPluginSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/spec/DConnectPluginSpec.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/spec/DConnectProfileSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/profile/spec/DConnectProfileSpec.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/service/DConnectService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/service/DConnectService.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/service/DConnectServiceManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/service/DConnectServiceManager.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/service/DConnectServiceProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/service/DConnectServiceProvider.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/test/CoverageExportSetting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/test/CoverageExportSetting.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/utils/DConnectEventHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/utils/DConnectEventHelper.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/utils/DConnectMessageFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/utils/DConnectMessageFactory.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/utils/DConnectRFC3339DateUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/utils/DConnectRFC3339DateUtils.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/utils/DConnectURIBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/utils/DConnectURIBuilder.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/utils/DConnectVersionName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/utils/DConnectVersionName.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/utils/DConnectVersionName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/utils/DConnectVersionName.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/utils/NSString+Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/utils/NSString+Extension.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/utils/NSString+Extension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Classes/utils/NSString+Extension.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK-Prefix.pch -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectApiEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectApiEntity.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectApiSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectApiSpec.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectAuthorizationProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectAuthorizationProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectAvailabilityProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectAvailabilityProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectBaseCacheController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectBaseCacheController.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectBatteryProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectBatteryProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectCanvasProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectCanvasProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectConnectionProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectConnectionProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectDBCacheController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectDBCacheController.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectDevicePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectDevicePlugin.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectEvent.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectEventCacheController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectEventCacheController.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectEventHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectEventHelper.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectEventManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectEventManager.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectFileCacheController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectFileCacheController.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectFileDescriptorProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectFileDescriptorProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectFileManager.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectFileProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectFileProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectGeolocationProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectGeolocationProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectIdentityStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectIdentityStore.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectKeyEventProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectKeyEventProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectLightProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectLightProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectManager.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectMediaPlayerProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectMediaPlayerProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectMemoryCacheController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectMemoryCacheController.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectMessage.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectMessageFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectMessageFactory.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectNotificationProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectNotificationProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectPhoneProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectPhoneProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectPluginSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectPluginSpec.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectProfileProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectProfileProvider.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectProfileSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectProfileSpec.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectProximityProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectProximityProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectRFC3339DateUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectRFC3339DateUtils.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectRequestMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectRequestMessage.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectResponseMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectResponseMessage.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectSDK.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectService.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectServiceListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectServiceListener.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectServiceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectServiceManager.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectServiceProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectServiceProvider.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectSettingProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectSettingProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectSettings.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectSpecConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectSpecConstants.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectSystemProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectSystemProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectTouchProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectTouchProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectURIBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectURIBuilder.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectUtil.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectVibrationProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/DConnectSDK/DConnectVibrationProfile.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaAsyncSocket/About.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaAsyncSocket/About.txt -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaHTTPServer/HTTPLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaHTTPServer/HTTPLogging.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaHTTPServer/HTTPMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaHTTPServer/HTTPMessage.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaHTTPServer/HTTPMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaHTTPServer/HTTPMessage.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaHTTPServer/HTTPResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaHTTPServer/HTTPResponse.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaHTTPServer/HTTPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaHTTPServer/HTTPServer.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaHTTPServer/HTTPServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaHTTPServer/HTTPServer.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaHTTPServer/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaHTTPServer/LICENSE.txt -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaHTTPServer/WebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaHTTPServer/WebSocket.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaHTTPServer/WebSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/CocoaHTTPServer/WebSocket.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/GCIPUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/GCIPUtil.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/GCIPUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/GCIPUtil.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/RoutingHTTPServer/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/RoutingHTTPServer/LICENSE.txt -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/RoutingHTTPServer/Route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/RoutingHTTPServer/Route.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/RoutingHTTPServer/Route.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/RoutingHTTPServer/Route.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/multipart-parser-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/multipart-parser-c/Makefile -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/multipart-parser-c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Dependencies/multipart-parser-c/README.md -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Resources/dconnect-ios.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Resources/dconnect-ios.crt -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Resources/dconnect-ios.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Resources/dconnect-ios.p12 -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Resources/en.lproj/DConnectSDK-iPad.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Resources/en.lproj/DConnectSDK-iPad.strings -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Resources/ja.lproj/DConnectSDK-iPad.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Resources/ja.lproj/DConnectSDK-iPad.strings -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK/Resources/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK/Resources/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDKTests/DConnectSDKTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDKTests/DConnectSDKTests-Info.plist -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDKTests/GcovTestObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDKTests/GcovTestObserver.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDKTests/GcovTestObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDKTests/GcovTestObserver.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDKTests/Multipart/Tools/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDKTests/Multipart/Tools/Hash.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDKTests/Multipart/Tools/Hash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDKTests/Multipart/Tools/Hash.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDKTests/Multipart/Tools/Multipart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDKTests/Multipart/Tools/Multipart.h -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDKTests/Multipart/Tools/Multipart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDKTests/Multipart/Tools/Multipart.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDKTests/Multipart/WebAPISuccessTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDKTests/Multipart/WebAPISuccessTestCase.m -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDKTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDKTests/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK_resources/.gitignore: -------------------------------------------------------------------------------- 1 | api/ -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK_resources/DConnectSDK_resources-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK_resources/DConnectSDK_resources-Info.plist -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK_resources/DConnectSDK_resources-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/DConnectSDK_resources/DConnectSDK_resources-Prefix.pch -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK_resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/DConnectSDK_resources/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/Doxyfile -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/LICENSE.TXT -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/NOTICE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/NOTICE.TXT -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/ObjectiveC.gcno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/ObjectiveC.gcno -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/bin/.gitignore: -------------------------------------------------------------------------------- 1 | *.framework 2 | *.bundle -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/doc_img/ios_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/doc_img/ios_arch.png -------------------------------------------------------------------------------- /dConnectSDK/dConnectSDKForIOS/download-spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/dConnectSDK/dConnectSDKForIOS/download-spec.sh -------------------------------------------------------------------------------- /readme.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeviceConnect/DeviceConnect-iOS/HEAD/readme.en.md --------------------------------------------------------------------------------