diff --git a/TrackIT-iOS-master-3/LICENSE b/TrackIT-iOS-master-3/LICENSE deleted file mode 100644 index 6d0382d..0000000 --- a/TrackIT-iOS-master-3/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2020 TechAvangers - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/TrackIT-iOS-master-3/README.md b/TrackIT-iOS-master-3/README.md deleted file mode 100644 index cc036ed..0000000 --- a/TrackIT-iOS-master-3/README.md +++ /dev/null @@ -1,97 +0,0 @@ -TrackIT ---- -Open source native cross-platform mobile application for tracking infections in communities. - -## Scenario - -First of all, we should do at this time is social distancing, but we can't survive without food so we have to expose our selves to some degree to get that groceriess. - -Going to market in these times poses a risk of getting in close contact with someone who can be infected. -To track proximity connections we can use TrackIT app. When you are grocery shopping app is constantly scanning your environment and stores other devices information to your local database so you don't have to be using data plans. - -Another person uses an android version of TrackIT too, and it's located at the same place as you are. -Your device is advertising itself the whole time you are scanning so this other user can record your device as well. - -After you connect to the internet ( ```keep in mind that app should at least be in the background not closed```) app connects to a server and syncs your stored sessions. - -Some days later, you have received notification that is stating that you have been in close proximity with someone who has tested **positive** for COVID-19. - -Your direct order is to self-quarantine and reports your symptoms trough your government suggested channel. - - - -Functionalities ---- -TrackIT mobile app utilizes Bluetooth capability of the device and tracks infections in the community. -
-When application opens the app it utilizes two features simultaneously: - -- Creating BLE service and assigning new UUID and saving every service to a local database -- Start scanning environment for all Bluetooth devices and saving all their data to a local database - -### App functions - -App functions are divided into two separate parts: -- First part is in charge of ``` scanning for other devices ``` -- The second part is in charge of ``` maintaining runnable service ``` - -### Scanning for devices - -TrackIT uses Bluetooth to scan your environment. ``` App must be in the foreground for scanning to be effective because of Apple background policy ```. - -The app is built to recognize states of Bluetooth state on the device, where most important states are ```.unknown``` ```.on``` ```.off```. - -App scans and stores every scanned device and prepares it for syncing with a server. -
-All scanned devices that are stored can be seen under ``` Tracked devices ``` segment in ``` Devices ``` tab. - -App stores devices: -- name -- uuid -- rssi -- timestamp ``` yyyy-mm-dd HH:mm:ss ``` - -Syncing with the server is done automatically in the background as soon as the user connects to the internet. If syncing was not done application will send alert to the user requiring manual sync. - -### Emitting service - -Emitting or advertising service is used for a device to advertise itself as peripheral. -
-Advertising device as a peripheral is important because it enables other devices to scan and store UUID of the advertised peripheral. - -The flow of starting the service: -- generating UUID -- advertising it to the environment with unique name and UUID -- storing service to a local database - -Every stored service can be seen under ``` My devices ``` segment in ```Devices ``` tab. - -App stores services ``` generatedID ``` to a local database. - -### Background syncing -```server in development``` - -The app will sync with the server when it stays in the background. The app can't sync with the server if it was terminated by the user itself. -
-For further use of the app, syncing is required. - -## Stack used - -Application is light-weight because of a limited number of libraries that are used in development. -
-We strived to achieve as many as possible without requiring an external library. -

-This project has been completely free of CocoaPods and every library was implemented trough Swift Package manager to ensure greater stability. -

- -User interface stability has been achieved mostly using a storyboard. -App user interface follows ``` Human interface guidelines ``` - -### Libraries used: -- Lottie ```pulsing animation``` -- Realm ```local database storing``` -- CoreBluetooth ```Apple built-in framework ``` - -### Programming language - -Whole projects have been written using ```Swift 5```. diff --git a/TrackIT-iOS-master-3/TrackIT.xcodeproj/project.pbxproj b/TrackIT-iOS-master-3/TrackIT.xcodeproj/project.pbxproj deleted file mode 100644 index acc8edd..0000000 --- a/TrackIT-iOS-master-3/TrackIT.xcodeproj/project.pbxproj +++ /dev/null @@ -1,557 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 52; - objects = { - -/* Begin PBXBuildFile section */ - 84007A3D242E58F3007C3FB9 /* RandomAlpahNumericString.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84007A3C242E58F3007C3FB9 /* RandomAlpahNumericString.swift */; }; - 84007A3F242E5C79007C3FB9 /* ShowAlertDialog.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84007A3E242E5C79007C3FB9 /* ShowAlertDialog.swift */; }; - 84007A41242E6054007C3FB9 /* ScanningForPeripheral.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84007A40242E6054007C3FB9 /* ScanningForPeripheral.swift */; }; - 84007A44242E7A64007C3FB9 /* Realm in Frameworks */ = {isa = PBXBuildFile; productRef = 84007A43242E7A64007C3FB9 /* Realm */; }; - 84007A46242E7A64007C3FB9 /* RealmSwift in Frameworks */ = {isa = PBXBuildFile; productRef = 84007A45242E7A64007C3FB9 /* RealmSwift */; }; - 84007A48242E7BD3007C3FB9 /* RealmTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84007A47242E7BD3007C3FB9 /* RealmTest.swift */; }; - 84007A4C242E89F3007C3FB9 /* UserPeripheralService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84007A4B242E89F3007C3FB9 /* UserPeripheralService.swift */; }; - 84007A4F242E8AD2007C3FB9 /* RealmWriteToDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84007A4E242E8AD2007C3FB9 /* RealmWriteToDatabase.swift */; }; - 84007A51242E9593007C3FB9 /* ScannedPeripherals.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84007A50242E9593007C3FB9 /* ScannedPeripherals.swift */; }; - 84007A54242F6849007C3FB9 /* ScannedItemsTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84007A53242F6849007C3FB9 /* ScannedItemsTableViewCell.swift */; }; - 84007A56242F7198007C3FB9 /* MyPeripheralsTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84007A55242F7198007C3FB9 /* MyPeripheralsTableViewCell.swift */; }; - 842FB2A1242E48D500A22311 /* CreatingPeripheralService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 842FB2A0242E48D500A22311 /* CreatingPeripheralService.swift */; }; - 84D7D868242D57D000B2710E /* Lottie in Frameworks */ = {isa = PBXBuildFile; productRef = 84D7D867242D57D000B2710E /* Lottie */; }; - 84D7D86C242D59CF00B2710E /* HexToString.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84D7D86B242D59CF00B2710E /* HexToString.swift */; }; - E16EA159242D36C200B0BE1F /* DevicesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E16EA158242D36C100B0BE1F /* DevicesViewController.swift */; }; - E1E55B58242C118B00FFAA8A /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1E55B57242C118B00FFAA8A /* AppDelegate.swift */; }; - E1E55B5A242C118B00FFAA8A /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1E55B59242C118B00FFAA8A /* SceneDelegate.swift */; }; - E1E55B5C242C118B00FFAA8A /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1E55B5B242C118B00FFAA8A /* ViewController.swift */; }; - E1E55B5F242C118B00FFAA8A /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = E1E55B5D242C118B00FFAA8A /* Main.storyboard */; }; - E1E55B61242C119500FFAA8A /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = E1E55B60242C119500FFAA8A /* Assets.xcassets */; }; - E1E55B64242C119500FFAA8A /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = E1E55B62242C119500FFAA8A /* LaunchScreen.storyboard */; }; - E1E55B88242C121D00FFAA8A /* lf30_editor_SKZ870.json in Resources */ = {isa = PBXBuildFile; fileRef = E1E55B87242C121D00FFAA8A /* lf30_editor_SKZ870.json */; }; - E1EA60142431FF7C00187889 /* ob1.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1EA60132431FF7C00187889 /* ob1.swift */; }; - E1EA601E2432335F00187889 /* ob2.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1EA601D2432335F00187889 /* ob2.swift */; }; - E1EA60202432336A00187889 /* ob3.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1EA601F2432336A00187889 /* ob3.swift */; }; - E1EA60222432337700187889 /* ob4.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1EA60212432337700187889 /* ob4.swift */; }; - E1EA60242432381100187889 /* tabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1EA60232432381100187889 /* tabBar.swift */; }; -/* End PBXBuildFile section */ - -/* Begin PBXCopyFilesBuildPhase section */ - 84D7D862242D56B000B2710E /* Embed Frameworks */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - ); - name = "Embed Frameworks"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 84007A3C242E58F3007C3FB9 /* RandomAlpahNumericString.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RandomAlpahNumericString.swift; sourceTree = ""; }; - 84007A3E242E5C79007C3FB9 /* ShowAlertDialog.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShowAlertDialog.swift; sourceTree = ""; }; - 84007A40242E6054007C3FB9 /* ScanningForPeripheral.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScanningForPeripheral.swift; sourceTree = ""; }; - 84007A47242E7BD3007C3FB9 /* RealmTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RealmTest.swift; sourceTree = ""; }; - 84007A4B242E89F3007C3FB9 /* UserPeripheralService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserPeripheralService.swift; sourceTree = ""; }; - 84007A4E242E8AD2007C3FB9 /* RealmWriteToDatabase.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RealmWriteToDatabase.swift; sourceTree = ""; }; - 84007A50242E9593007C3FB9 /* ScannedPeripherals.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScannedPeripherals.swift; sourceTree = ""; }; - 84007A53242F6849007C3FB9 /* ScannedItemsTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScannedItemsTableViewCell.swift; sourceTree = ""; }; - 84007A55242F7198007C3FB9 /* MyPeripheralsTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyPeripheralsTableViewCell.swift; sourceTree = ""; }; - 842FB2A0242E48D500A22311 /* CreatingPeripheralService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CreatingPeripheralService.swift; sourceTree = ""; }; - 84D7D86B242D59CF00B2710E /* HexToString.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HexToString.swift; sourceTree = ""; }; - E16EA158242D36C100B0BE1F /* DevicesViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DevicesViewController.swift; sourceTree = ""; }; - E1E55B54242C118B00FFAA8A /* TrackIT.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TrackIT.app; sourceTree = BUILT_PRODUCTS_DIR; }; - E1E55B57242C118B00FFAA8A /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; - E1E55B59242C118B00FFAA8A /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; - E1E55B5B242C118B00FFAA8A /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; - E1E55B5E242C118B00FFAA8A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; - E1E55B60242C119500FFAA8A /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; - E1E55B63242C119500FFAA8A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; - E1E55B65242C119500FFAA8A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - E1E55B87242C121D00FFAA8A /* lf30_editor_SKZ870.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = lf30_editor_SKZ870.json; sourceTree = ""; }; - E1E55B8E242C2C5A00FFAA8A /* TrackIT.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = TrackIT.entitlements; sourceTree = ""; }; - E1EA60132431FF7C00187889 /* ob1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ob1.swift; sourceTree = ""; }; - E1EA601D2432335F00187889 /* ob2.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ob2.swift; sourceTree = ""; }; - E1EA601F2432336A00187889 /* ob3.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ob3.swift; sourceTree = ""; }; - E1EA60212432337700187889 /* ob4.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ob4.swift; sourceTree = ""; }; - E1EA60232432381100187889 /* tabBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = tabBar.swift; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - E1E55B51242C118B00FFAA8A /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 84007A46242E7A64007C3FB9 /* RealmSwift in Frameworks */, - 84007A44242E7A64007C3FB9 /* Realm in Frameworks */, - 84D7D868242D57D000B2710E /* Lottie in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 84007A49242E89B0007C3FB9 /* db */ = { - isa = PBXGroup; - children = ( - 84007A4A242E89C2007C3FB9 /* realm */, - ); - path = db; - sourceTree = ""; - }; - 84007A4A242E89C2007C3FB9 /* realm */ = { - isa = PBXGroup; - children = ( - 84007A4B242E89F3007C3FB9 /* UserPeripheralService.swift */, - 84007A50242E9593007C3FB9 /* ScannedPeripherals.swift */, - ); - path = realm; - sourceTree = ""; - }; - 84007A52242F6830007C3FB9 /* tableview */ = { - isa = PBXGroup; - children = ( - 84007A53242F6849007C3FB9 /* ScannedItemsTableViewCell.swift */, - 84007A55242F7198007C3FB9 /* MyPeripheralsTableViewCell.swift */, - ); - path = tableview; - sourceTree = ""; - }; - 842FB29F242E48B500A22311 /* core */ = { - isa = PBXGroup; - children = ( - 842FB2A0242E48D500A22311 /* CreatingPeripheralService.swift */, - 84007A40242E6054007C3FB9 /* ScanningForPeripheral.swift */, - ); - path = core; - sourceTree = ""; - }; - 84D7D869242D59A400B2710E /* helpers */ = { - isa = PBXGroup; - children = ( - 84007A52242F6830007C3FB9 /* tableview */, - 84D7D86A242D59AE00B2710E /* view */, - 84007A3C242E58F3007C3FB9 /* RandomAlpahNumericString.swift */, - 84007A47242E7BD3007C3FB9 /* RealmTest.swift */, - 84007A4E242E8AD2007C3FB9 /* RealmWriteToDatabase.swift */, - ); - path = helpers; - sourceTree = ""; - }; - 84D7D86A242D59AE00B2710E /* view */ = { - isa = PBXGroup; - children = ( - 84D7D86B242D59CF00B2710E /* HexToString.swift */, - 84007A3E242E5C79007C3FB9 /* ShowAlertDialog.swift */, - ); - path = view; - sourceTree = ""; - }; - 84D7D86D242D59F500B2710E /* services */ = { - isa = PBXGroup; - children = ( - E1E55B59242C118B00FFAA8A /* SceneDelegate.swift */, - E1E55B57242C118B00FFAA8A /* AppDelegate.swift */, - ); - path = services; - sourceTree = ""; - }; - 84D7D86E242D5A3600B2710E /* controllers */ = { - isa = PBXGroup; - children = ( - E16EA158242D36C100B0BE1F /* DevicesViewController.swift */, - E1E55B5B242C118B00FFAA8A /* ViewController.swift */, - E1EA60232432381100187889 /* tabBar.swift */, - E1EA60132431FF7C00187889 /* ob1.swift */, - E1EA601D2432335F00187889 /* ob2.swift */, - E1EA601F2432336A00187889 /* ob3.swift */, - E1EA60212432337700187889 /* ob4.swift */, - ); - path = controllers; - sourceTree = ""; - }; - 84D7D870242D5A8800B2710E /* view */ = { - isa = PBXGroup; - children = ( - E1E55B62242C119500FFAA8A /* LaunchScreen.storyboard */, - E1E55B5D242C118B00FFAA8A /* Main.storyboard */, - ); - path = view; - sourceTree = ""; - }; - E1E55B4B242C118A00FFAA8A = { - isa = PBXGroup; - children = ( - E1E55B56242C118B00FFAA8A /* TrackIT */, - 84007A49242E89B0007C3FB9 /* db */, - E1E55B55242C118B00FFAA8A /* Products */, - ); - sourceTree = ""; - }; - E1E55B55242C118B00FFAA8A /* Products */ = { - isa = PBXGroup; - children = ( - E1E55B54242C118B00FFAA8A /* TrackIT.app */, - ); - name = Products; - sourceTree = ""; - }; - E1E55B56242C118B00FFAA8A /* TrackIT */ = { - isa = PBXGroup; - children = ( - E1E55B87242C121D00FFAA8A /* lf30_editor_SKZ870.json */, - E1E55B8E242C2C5A00FFAA8A /* TrackIT.entitlements */, - 84D7D869242D59A400B2710E /* helpers */, - 84D7D86D242D59F500B2710E /* services */, - 84D7D86E242D5A3600B2710E /* controllers */, - 84D7D870242D5A8800B2710E /* view */, - 842FB29F242E48B500A22311 /* core */, - E1E55B60242C119500FFAA8A /* Assets.xcassets */, - E1E55B65242C119500FFAA8A /* Info.plist */, - ); - path = TrackIT; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - E1E55B53242C118B00FFAA8A /* TrackIT */ = { - isa = PBXNativeTarget; - buildConfigurationList = E1E55B7E242C119500FFAA8A /* Build configuration list for PBXNativeTarget "TrackIT" */; - buildPhases = ( - E1E55B50242C118B00FFAA8A /* Sources */, - E1E55B51242C118B00FFAA8A /* Frameworks */, - E1E55B52242C118B00FFAA8A /* Resources */, - 84D7D862242D56B000B2710E /* Embed Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = TrackIT; - packageProductDependencies = ( - 84D7D867242D57D000B2710E /* Lottie */, - 84007A43242E7A64007C3FB9 /* Realm */, - 84007A45242E7A64007C3FB9 /* RealmSwift */, - ); - productName = TrackIT; - productReference = E1E55B54242C118B00FFAA8A /* TrackIT.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - E1E55B4C242C118A00FFAA8A /* Project object */ = { - isa = PBXProject; - attributes = { - LastSwiftUpdateCheck = 1130; - LastUpgradeCheck = 1130; - ORGANIZATIONNAME = "Steve Ink"; - TargetAttributes = { - E1E55B53242C118B00FFAA8A = { - CreatedOnToolsVersion = 11.3; - }; - }; - }; - buildConfigurationList = E1E55B4F242C118A00FFAA8A /* Build configuration list for PBXProject "TrackIT" */; - compatibilityVersion = "Xcode 9.3"; - developmentRegion = en; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = E1E55B4B242C118A00FFAA8A; - packageReferences = ( - 84D7D866242D57D000B2710E /* XCRemoteSwiftPackageReference "lottie-ios" */, - 84007A42242E7A64007C3FB9 /* XCRemoteSwiftPackageReference "realm-cocoa" */, - ); - productRefGroup = E1E55B55242C118B00FFAA8A /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - E1E55B53242C118B00FFAA8A /* TrackIT */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - E1E55B52242C118B00FFAA8A /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - E1E55B88242C121D00FFAA8A /* lf30_editor_SKZ870.json in Resources */, - E1E55B64242C119500FFAA8A /* LaunchScreen.storyboard in Resources */, - E1E55B61242C119500FFAA8A /* Assets.xcassets in Resources */, - E1E55B5F242C118B00FFAA8A /* Main.storyboard in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - E1E55B50242C118B00FFAA8A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 842FB2A1242E48D500A22311 /* CreatingPeripheralService.swift in Sources */, - 84007A3F242E5C79007C3FB9 /* ShowAlertDialog.swift in Sources */, - 84007A56242F7198007C3FB9 /* MyPeripheralsTableViewCell.swift in Sources */, - 84007A3D242E58F3007C3FB9 /* RandomAlpahNumericString.swift in Sources */, - E1E55B5C242C118B00FFAA8A /* ViewController.swift in Sources */, - E16EA159242D36C200B0BE1F /* DevicesViewController.swift in Sources */, - E1EA60142431FF7C00187889 /* ob1.swift in Sources */, - 84007A54242F6849007C3FB9 /* ScannedItemsTableViewCell.swift in Sources */, - 84007A41242E6054007C3FB9 /* ScanningForPeripheral.swift in Sources */, - E1EA601E2432335F00187889 /* ob2.swift in Sources */, - E1E55B58242C118B00FFAA8A /* AppDelegate.swift in Sources */, - 84D7D86C242D59CF00B2710E /* HexToString.swift in Sources */, - E1E55B5A242C118B00FFAA8A /* SceneDelegate.swift in Sources */, - 84007A51242E9593007C3FB9 /* ScannedPeripherals.swift in Sources */, - 84007A4F242E8AD2007C3FB9 /* RealmWriteToDatabase.swift in Sources */, - 84007A48242E7BD3007C3FB9 /* RealmTest.swift in Sources */, - E1EA60222432337700187889 /* ob4.swift in Sources */, - E1EA60202432336A00187889 /* ob3.swift in Sources */, - 84007A4C242E89F3007C3FB9 /* UserPeripheralService.swift in Sources */, - E1EA60242432381100187889 /* tabBar.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXVariantGroup section */ - E1E55B5D242C118B00FFAA8A /* Main.storyboard */ = { - isa = PBXVariantGroup; - children = ( - E1E55B5E242C118B00FFAA8A /* Base */, - ); - name = Main.storyboard; - sourceTree = ""; - }; - E1E55B62242C119500FFAA8A /* LaunchScreen.storyboard */ = { - isa = PBXVariantGroup; - children = ( - E1E55B63242C119500FFAA8A /* Base */, - ); - name = LaunchScreen.storyboard; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - E1E55B7C242C119500FFAA8A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.2; - MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; - MTL_FAST_MATH = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - }; - name = Debug; - }; - E1E55B7D242C119500FFAA8A /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.2; - MTL_ENABLE_DEBUG_INFO = NO; - MTL_FAST_MATH = YES; - SDKROOT = iphoneos; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - E1E55B7F242C119500FFAA8A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_ENTITLEMENTS = TrackIT/TrackIT.entitlements; - CODE_SIGN_STYLE = Automatic; - DEVELOPMENT_TEAM = MC27HKM86M; - INFOPLIST_FILE = TrackIT/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.nedim2; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - E1E55B80242C119500FFAA8A /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_ENTITLEMENTS = TrackIT/TrackIT.entitlements; - CODE_SIGN_STYLE = Automatic; - DEVELOPMENT_TEAM = MC27HKM86M; - INFOPLIST_FILE = TrackIT/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.nedim2; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - E1E55B4F242C118A00FFAA8A /* Build configuration list for PBXProject "TrackIT" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - E1E55B7C242C119500FFAA8A /* Debug */, - E1E55B7D242C119500FFAA8A /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - E1E55B7E242C119500FFAA8A /* Build configuration list for PBXNativeTarget "TrackIT" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - E1E55B7F242C119500FFAA8A /* Debug */, - E1E55B80242C119500FFAA8A /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - -/* Begin XCRemoteSwiftPackageReference section */ - 84007A42242E7A64007C3FB9 /* XCRemoteSwiftPackageReference "realm-cocoa" */ = { - isa = XCRemoteSwiftPackageReference; - repositoryURL = "https://github.com/realm/realm-cocoa.git"; - requirement = { - kind = upToNextMajorVersion; - minimumVersion = 4.4.0; - }; - }; - 84D7D866242D57D000B2710E /* XCRemoteSwiftPackageReference "lottie-ios" */ = { - isa = XCRemoteSwiftPackageReference; - repositoryURL = "https://github.com/airbnb/lottie-ios.git"; - requirement = { - kind = upToNextMajorVersion; - minimumVersion = 3.1.6; - }; - }; -/* End XCRemoteSwiftPackageReference section */ - -/* Begin XCSwiftPackageProductDependency section */ - 84007A43242E7A64007C3FB9 /* Realm */ = { - isa = XCSwiftPackageProductDependency; - package = 84007A42242E7A64007C3FB9 /* XCRemoteSwiftPackageReference "realm-cocoa" */; - productName = Realm; - }; - 84007A45242E7A64007C3FB9 /* RealmSwift */ = { - isa = XCSwiftPackageProductDependency; - package = 84007A42242E7A64007C3FB9 /* XCRemoteSwiftPackageReference "realm-cocoa" */; - productName = RealmSwift; - }; - 84D7D867242D57D000B2710E /* Lottie */ = { - isa = XCSwiftPackageProductDependency; - package = 84D7D866242D57D000B2710E /* XCRemoteSwiftPackageReference "lottie-ios" */; - productName = Lottie; - }; -/* End XCSwiftPackageProductDependency section */ - }; - rootObject = E1E55B4C242C118A00FFAA8A /* Project object */; -} diff --git a/TrackIT-iOS-master-3/TrackIT.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/TrackIT-iOS-master-3/TrackIT.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a..0000000 --- a/TrackIT-iOS-master-3/TrackIT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/TrackIT-iOS-master-3/TrackIT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/TrackIT-iOS-master-3/TrackIT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d9810..0000000 --- a/TrackIT-iOS-master-3/TrackIT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/TrackIT-iOS-master-3/TrackIT.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/TrackIT-iOS-master-3/TrackIT.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved deleted file mode 100644 index b59508a..0000000 --- a/TrackIT-iOS-master-3/TrackIT.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ /dev/null @@ -1,34 +0,0 @@ -{ - "object": { - "pins": [ - { - "package": "Lottie", - "repositoryURL": "https://github.com/airbnb/lottie-ios.git", - "state": { - "branch": null, - "revision": "8f81de8d81da8631fd95ff81a9db133b76e13ea4", - "version": "3.1.6" - } - }, - { - "package": "Realm", - "repositoryURL": "https://github.com/realm/realm-cocoa.git", - "state": { - "branch": null, - "revision": "07734d6ee4b49b5656c51dab51c20a2d59b9de45", - "version": "4.4.0" - } - }, - { - "package": "RealmCore", - "repositoryURL": "https://github.com/realm/realm-core", - "state": { - "branch": null, - "revision": "35662ff940e340bf630ad1d1d88acfc7af18bee6", - "version": "5.23.8" - } - } - ] - }, - "version": 1 -} diff --git a/TrackIT-iOS-master-3/TrackIT.xcodeproj/project.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate b/TrackIT-iOS-master-3/TrackIT.xcodeproj/project.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index 3bb2ed9..0000000 Binary files a/TrackIT-iOS-master-3/TrackIT.xcodeproj/project.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/TrackIT-iOS-master-3/TrackIT.xcodeproj/project.xcworkspace/xcuserdata/andreas.xcuserdatad/UserInterfaceState.xcuserstate b/TrackIT-iOS-master-3/TrackIT.xcodeproj/project.xcworkspace/xcuserdata/andreas.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index ff01ecd..0000000 Binary files a/TrackIT-iOS-master-3/TrackIT.xcodeproj/project.xcworkspace/xcuserdata/andreas.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/TrackIT-iOS-master-3/TrackIT.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/xcschememanagement.plist b/TrackIT-iOS-master-3/TrackIT.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/xcschememanagement.plist deleted file mode 100644 index fa5e3b2..0000000 --- a/TrackIT-iOS-master-3/TrackIT.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/xcschememanagement.plist +++ /dev/null @@ -1,14 +0,0 @@ - - - - - SchemeUserState - - TrackIT.xcscheme_^#shared#^_ - - orderHint - 0 - - - - diff --git a/TrackIT-iOS-master-3/TrackIT.xcodeproj/xcuserdata/andreas.xcuserdatad/xcschemes/xcschememanagement.plist b/TrackIT-iOS-master-3/TrackIT.xcodeproj/xcuserdata/andreas.xcuserdatad/xcschemes/xcschememanagement.plist deleted file mode 100644 index fa5e3b2..0000000 --- a/TrackIT-iOS-master-3/TrackIT.xcodeproj/xcuserdata/andreas.xcuserdatad/xcschemes/xcschememanagement.plist +++ /dev/null @@ -1,14 +0,0 @@ - - - - - SchemeUserState - - TrackIT.xcscheme_^#shared#^_ - - orderHint - 0 - - - - diff --git a/TrackIT-iOS-master-3/TrackIT.xcworkspace/contents.xcworkspacedata b/TrackIT-iOS-master-3/TrackIT.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 2ead5e4..0000000 --- a/TrackIT-iOS-master-3/TrackIT.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/TrackIT-iOS-master-3/TrackIT.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/TrackIT-iOS-master-3/TrackIT.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d9810..0000000 --- a/TrackIT-iOS-master-3/TrackIT.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/TrackIT-iOS-master-3/TrackIT.xcworkspace/xcshareddata/swiftpm/Package.resolved b/TrackIT-iOS-master-3/TrackIT.xcworkspace/xcshareddata/swiftpm/Package.resolved deleted file mode 100644 index b59508a..0000000 --- a/TrackIT-iOS-master-3/TrackIT.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ /dev/null @@ -1,34 +0,0 @@ -{ - "object": { - "pins": [ - { - "package": "Lottie", - "repositoryURL": "https://github.com/airbnb/lottie-ios.git", - "state": { - "branch": null, - "revision": "8f81de8d81da8631fd95ff81a9db133b76e13ea4", - "version": "3.1.6" - } - }, - { - "package": "Realm", - "repositoryURL": "https://github.com/realm/realm-cocoa.git", - "state": { - "branch": null, - "revision": "07734d6ee4b49b5656c51dab51c20a2d59b9de45", - "version": "4.4.0" - } - }, - { - "package": "RealmCore", - "repositoryURL": "https://github.com/realm/realm-core", - "state": { - "branch": null, - "revision": "35662ff940e340bf630ad1d1d88acfc7af18bee6", - "version": "5.23.8" - } - } - ] - }, - "version": 1 -} diff --git a/TrackIT-iOS-master-3/TrackIT.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate b/TrackIT-iOS-master-3/TrackIT.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index 5b2f6fb..0000000 Binary files a/TrackIT-iOS-master-3/TrackIT.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/TrackIT-iOS-master-3/TrackIT.xcworkspace/xcuserdata/andreas.xcuserdatad/UserInterfaceState.xcuserstate b/TrackIT-iOS-master-3/TrackIT.xcworkspace/xcuserdata/andreas.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index d37804a..0000000 Binary files a/TrackIT-iOS-master-3/TrackIT.xcworkspace/xcuserdata/andreas.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/TrackIT-iOS-master-3/TrackIT.xcworkspace/xcuserdata/andreas.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/TrackIT-iOS-master-3/TrackIT.xcworkspace/xcuserdata/andreas.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist deleted file mode 100644 index 9eab65f..0000000 --- a/TrackIT-iOS-master-3/TrackIT.xcworkspace/xcuserdata/andreas.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +++ /dev/null @@ -1,6 +0,0 @@ - - - diff --git a/TrackIT-iOS-master-3/db/realm/ScannedPeripherals.swift b/TrackIT-iOS-master-3/db/realm/ScannedPeripherals.swift deleted file mode 100644 index 27dc598..0000000 --- a/TrackIT-iOS-master-3/db/realm/ScannedPeripherals.swift +++ /dev/null @@ -1,21 +0,0 @@ -// -// ScanedPeripherals -// TrackIT -// -// Created by: Nedim on 27/03/2020 -// Copyright © 2019 bicom. All rights reserved. -// - -import Foundation -import RealmSwift - -class ScannedPeripheral: Object { - - - @objc dynamic var uuid:String? - @objc dynamic var name:String? - @objc dynamic var rssi:String? - @objc dynamic var timestamp:String? -} - - diff --git a/TrackIT-iOS-master-3/db/realm/UserPeripheralService.swift b/TrackIT-iOS-master-3/db/realm/UserPeripheralService.swift deleted file mode 100644 index 4d0f6d0..0000000 --- a/TrackIT-iOS-master-3/db/realm/UserPeripheralService.swift +++ /dev/null @@ -1,16 +0,0 @@ -// -// UserPeripheralService -// TrackIT -// -// Created by: Nedim on 27/03/2020 -// Copyright © 2019 bicom. All rights reserved. -// - -import Foundation -import RealmSwift - -class UserPeripheralService: Object { - - @objc dynamic var generatedUUID:String? - -} diff --git a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/Caches/com.nedim/Cache.db-shm b/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/Caches/com.nedim/Cache.db-shm deleted file mode 100644 index fe9ac28..0000000 Binary files a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/Caches/com.nedim/Cache.db-shm and /dev/null differ diff --git a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/Preferences/com.nedim.plist b/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/Preferences/com.nedim.plist deleted file mode 100644 index a18584f..0000000 Binary files a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/Preferences/com.nedim.plist and /dev/null differ diff --git a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/Saved Application State/com.nedim.savedState/KnownSceneSessions/data.data b/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/Saved Application State/com.nedim.savedState/KnownSceneSessions/data.data deleted file mode 100644 index 50adb1e..0000000 Binary files a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/Saved Application State/com.nedim.savedState/KnownSceneSessions/data.data and /dev/null differ diff --git a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/com.nedim - {DEFAULT GROUP}/5135F657-A5D5-48CA-8F0B-1FD5E92689DA@2x.ktx b/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/com.nedim - {DEFAULT GROUP}/5135F657-A5D5-48CA-8F0B-1FD5E92689DA@2x.ktx deleted file mode 100644 index c7b4b8f..0000000 Binary files a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/com.nedim - {DEFAULT GROUP}/5135F657-A5D5-48CA-8F0B-1FD5E92689DA@2x.ktx and /dev/null differ diff --git a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/com.nedim - {DEFAULT GROUP}/788C023C-0124-42F2-9A55-6524223694AA@2x.ktx b/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/com.nedim - {DEFAULT GROUP}/788C023C-0124-42F2-9A55-6524223694AA@2x.ktx deleted file mode 100644 index 2e70ab3..0000000 Binary files a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/com.nedim - {DEFAULT GROUP}/788C023C-0124-42F2-9A55-6524223694AA@2x.ktx and /dev/null differ diff --git a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/com.nedim - {DEFAULT GROUP}/8A4C7C84-EAB9-40AF-8105-D6EFFCCBB816@2x.ktx b/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/com.nedim - {DEFAULT GROUP}/8A4C7C84-EAB9-40AF-8105-D6EFFCCBB816@2x.ktx deleted file mode 100644 index c7b4b8f..0000000 Binary files a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/com.nedim - {DEFAULT GROUP}/8A4C7C84-EAB9-40AF-8105-D6EFFCCBB816@2x.ktx and /dev/null differ diff --git a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/sceneID:com.nedim-default/443ED3AD-776D-4171-8A45-64B0F294B34A@2x.ktx b/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/sceneID:com.nedim-default/443ED3AD-776D-4171-8A45-64B0F294B34A@2x.ktx deleted file mode 100644 index 511e3e2..0000000 Binary files a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/sceneID:com.nedim-default/443ED3AD-776D-4171-8A45-64B0F294B34A@2x.ktx and /dev/null differ diff --git a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/sceneID:com.nedim-default/96554F16-9445-4E91-90FE-0F24E214B263@2x.ktx b/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/sceneID:com.nedim-default/96554F16-9445-4E91-90FE-0F24E214B263@2x.ktx deleted file mode 100644 index 80bb4c3..0000000 Binary files a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/sceneID:com.nedim-default/96554F16-9445-4E91-90FE-0F24E214B263@2x.ktx and /dev/null differ diff --git a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/sceneID:com.nedim-default/downscaled/A4DE5909-F472-4195-A1D4-A734CC9E0754@2x.ktx b/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/sceneID:com.nedim-default/downscaled/A4DE5909-F472-4195-A1D4-A734CC9E0754@2x.ktx deleted file mode 100644 index f4855cc..0000000 Binary files a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/sceneID:com.nedim-default/downscaled/A4DE5909-F472-4195-A1D4-A734CC9E0754@2x.ktx and /dev/null differ diff --git a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/sceneID:com.nedim-default/downscaled/FDB844F4-35E2-4F71-A8B5-781A0850C8AE@2x.ktx b/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/sceneID:com.nedim-default/downscaled/FDB844F4-35E2-4F71-A8B5-781A0850C8AE@2x.ktx deleted file mode 100644 index 1368e07..0000000 Binary files a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppData/Library/SplashBoard/Snapshots/sceneID:com.nedim-default/downscaled/FDB844F4-35E2-4F71-A8B5-781A0850C8AE@2x.ktx and /dev/null differ diff --git a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppDataInfo.plist b/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppDataInfo.plist deleted file mode 100644 index 02b3235..0000000 Binary files a/TrackIT-iOS-master-3/db/realm/com.nedim 2020-03-27 22:45.06.707.xcappdata/AppDataInfo.plist and /dev/null differ