├── .github ├── CODEOWNERS └── workflows │ ├── pr-tests.yml │ └── stale.yml ├── .gitignore ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ └── Diagnostics.xcscheme ├── Assets ├── banner.jpg ├── example_composed_email.jpeg ├── example_report.png └── smart-insights.png ├── CONTRIBUTING.md ├── Changelog.md ├── Diagnostics ├── Diagnostics.h └── Info.plist ├── DiagnosticsTests ├── DiagnosticsReporterTests.swift ├── Extensions │ └── MFMailComposeViewControllerTests.swift ├── HTMLEncodingTests.swift ├── HTMLGeneratingTests.swift ├── Logging │ └── LogsWriterTests.swift ├── Mocks.swift └── Reporters │ ├── AppSystemMetadataReporterTests.swift │ ├── DirectoryTree │ └── DirectoryTreeFactoryTests.swift │ ├── GeneralInfoReporterTests.swift │ ├── LogsReporterTests.swift │ ├── LogsTrimmerTests.swift │ ├── SmartInsights │ ├── DeviceStorageInsightTests.swift │ ├── SmartInsightsReporterTests.swift │ └── UpdateAvailableInsightTests.swift │ └── UserDefaultsReporterTests.swift ├── Example ├── Diagnostics-Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── swiftpm │ │ └── Package.resolved └── Diagnostics-Example │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ContentView+iOS.swift │ ├── ContentView+macOS.swift │ ├── Diagnostics │ ├── CustomFilters.swift │ ├── CustomReporter.swift │ ├── CustomSmartInsights.swift │ └── DiagnosticsReportFactory.swift │ └── Diagnostics_ExampleApp.swift ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Package.resolved ├── Package.swift ├── Package@swift-5.5.swift ├── Package@swift-5.6.swift ├── Package@swift-5.7.swift ├── Package@swift-5.8.swift ├── README.md ├── Sources ├── Device.swift ├── Diagnostics.swift ├── DiagnosticsChapter.swift ├── DiagnosticsReport.swift ├── DiagnosticsReportFilter.swift ├── DiagnosticsReporter.swift ├── Extensions │ ├── BundleExtensions.swift │ ├── ByteCountFormatter.swift │ └── DateFormatterExtensions.swift ├── HTMLEncoding.swift ├── HTMLGenerating.swift ├── Logging │ ├── DiagnosticsLogger.swift │ ├── HTML+LoggableCSSClass.swift │ ├── Loggable.swift │ ├── LogsTrimmer.swift │ └── LogsWriter.swift ├── MFMailExtensions │ └── MFMailComposeVCExtensions.swift ├── MetricKit │ └── MetricsMonitor.swift ├── PrivacyInfo.xcprivacy ├── Reporters │ ├── AppSystemMetadataReporter.swift │ ├── DirectoryTree │ │ ├── DirectoryTreeFactory.swift │ │ ├── DirectoryTreeNode.swift │ │ ├── DirectoryTreeReporter.swift │ │ └── DirectoryTreeStringFactory.swift │ ├── GeneralInfoReporter.swift │ ├── LogsReporter.swift │ ├── SmartInsightsReporter.swift │ └── UserDefaultsReporter.swift ├── SmartInsights │ ├── CellularAllowedInsight.swift │ ├── DeviceStorageInsight.swift │ ├── SmartInsight.swift │ ├── SmartInsightsProviding.swift │ └── UpdateAvailableInsight.swift ├── functions.js └── style.css └── fastlane ├── Fastfile └── README.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/pr-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/.github/workflows/pr-tests.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/Diagnostics.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/Diagnostics.xcscheme -------------------------------------------------------------------------------- /Assets/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Assets/banner.jpg -------------------------------------------------------------------------------- /Assets/example_composed_email.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Assets/example_composed_email.jpeg -------------------------------------------------------------------------------- /Assets/example_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Assets/example_report.png -------------------------------------------------------------------------------- /Assets/smart-insights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Assets/smart-insights.png -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Changelog.md -------------------------------------------------------------------------------- /Diagnostics/Diagnostics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Diagnostics/Diagnostics.h -------------------------------------------------------------------------------- /Diagnostics/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Diagnostics/Info.plist -------------------------------------------------------------------------------- /DiagnosticsTests/DiagnosticsReporterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/DiagnosticsTests/DiagnosticsReporterTests.swift -------------------------------------------------------------------------------- /DiagnosticsTests/Extensions/MFMailComposeViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/DiagnosticsTests/Extensions/MFMailComposeViewControllerTests.swift -------------------------------------------------------------------------------- /DiagnosticsTests/HTMLEncodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/DiagnosticsTests/HTMLEncodingTests.swift -------------------------------------------------------------------------------- /DiagnosticsTests/HTMLGeneratingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/DiagnosticsTests/HTMLGeneratingTests.swift -------------------------------------------------------------------------------- /DiagnosticsTests/Logging/LogsWriterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/DiagnosticsTests/Logging/LogsWriterTests.swift -------------------------------------------------------------------------------- /DiagnosticsTests/Mocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/DiagnosticsTests/Mocks.swift -------------------------------------------------------------------------------- /DiagnosticsTests/Reporters/AppSystemMetadataReporterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/DiagnosticsTests/Reporters/AppSystemMetadataReporterTests.swift -------------------------------------------------------------------------------- /DiagnosticsTests/Reporters/DirectoryTree/DirectoryTreeFactoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/DiagnosticsTests/Reporters/DirectoryTree/DirectoryTreeFactoryTests.swift -------------------------------------------------------------------------------- /DiagnosticsTests/Reporters/GeneralInfoReporterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/DiagnosticsTests/Reporters/GeneralInfoReporterTests.swift -------------------------------------------------------------------------------- /DiagnosticsTests/Reporters/LogsReporterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/DiagnosticsTests/Reporters/LogsReporterTests.swift -------------------------------------------------------------------------------- /DiagnosticsTests/Reporters/LogsTrimmerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/DiagnosticsTests/Reporters/LogsTrimmerTests.swift -------------------------------------------------------------------------------- /DiagnosticsTests/Reporters/SmartInsights/DeviceStorageInsightTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/DiagnosticsTests/Reporters/SmartInsights/DeviceStorageInsightTests.swift -------------------------------------------------------------------------------- /DiagnosticsTests/Reporters/SmartInsights/SmartInsightsReporterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/DiagnosticsTests/Reporters/SmartInsights/SmartInsightsReporterTests.swift -------------------------------------------------------------------------------- /DiagnosticsTests/Reporters/SmartInsights/UpdateAvailableInsightTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/DiagnosticsTests/Reporters/SmartInsights/UpdateAvailableInsightTests.swift -------------------------------------------------------------------------------- /DiagnosticsTests/Reporters/UserDefaultsReporterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/DiagnosticsTests/Reporters/UserDefaultsReporterTests.swift -------------------------------------------------------------------------------- /Example/Diagnostics-Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Example/Diagnostics-Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Diagnostics-Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Example/Diagnostics-Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Diagnostics-Example.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Example/Diagnostics-Example.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Example/Diagnostics-Example/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Example/Diagnostics-Example/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/Diagnostics-Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Example/Diagnostics-Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Diagnostics-Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Example/Diagnostics-Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Diagnostics-Example/ContentView+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Example/Diagnostics-Example/ContentView+iOS.swift -------------------------------------------------------------------------------- /Example/Diagnostics-Example/ContentView+macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Example/Diagnostics-Example/ContentView+macOS.swift -------------------------------------------------------------------------------- /Example/Diagnostics-Example/Diagnostics/CustomFilters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Example/Diagnostics-Example/Diagnostics/CustomFilters.swift -------------------------------------------------------------------------------- /Example/Diagnostics-Example/Diagnostics/CustomReporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Example/Diagnostics-Example/Diagnostics/CustomReporter.swift -------------------------------------------------------------------------------- /Example/Diagnostics-Example/Diagnostics/CustomSmartInsights.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Example/Diagnostics-Example/Diagnostics/CustomSmartInsights.swift -------------------------------------------------------------------------------- /Example/Diagnostics-Example/Diagnostics/DiagnosticsReportFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Example/Diagnostics-Example/Diagnostics/DiagnosticsReportFactory.swift -------------------------------------------------------------------------------- /Example/Diagnostics-Example/Diagnostics_ExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Example/Diagnostics-Example/Diagnostics_ExampleApp.swift -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Package.swift -------------------------------------------------------------------------------- /Package@swift-5.5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Package@swift-5.5.swift -------------------------------------------------------------------------------- /Package@swift-5.6.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Package@swift-5.6.swift -------------------------------------------------------------------------------- /Package@swift-5.7.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Package@swift-5.7.swift -------------------------------------------------------------------------------- /Package@swift-5.8.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Package@swift-5.8.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Device.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Device.swift -------------------------------------------------------------------------------- /Sources/Diagnostics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Diagnostics.swift -------------------------------------------------------------------------------- /Sources/DiagnosticsChapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/DiagnosticsChapter.swift -------------------------------------------------------------------------------- /Sources/DiagnosticsReport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/DiagnosticsReport.swift -------------------------------------------------------------------------------- /Sources/DiagnosticsReportFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/DiagnosticsReportFilter.swift -------------------------------------------------------------------------------- /Sources/DiagnosticsReporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/DiagnosticsReporter.swift -------------------------------------------------------------------------------- /Sources/Extensions/BundleExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Extensions/BundleExtensions.swift -------------------------------------------------------------------------------- /Sources/Extensions/ByteCountFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Extensions/ByteCountFormatter.swift -------------------------------------------------------------------------------- /Sources/Extensions/DateFormatterExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Extensions/DateFormatterExtensions.swift -------------------------------------------------------------------------------- /Sources/HTMLEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/HTMLEncoding.swift -------------------------------------------------------------------------------- /Sources/HTMLGenerating.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/HTMLGenerating.swift -------------------------------------------------------------------------------- /Sources/Logging/DiagnosticsLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Logging/DiagnosticsLogger.swift -------------------------------------------------------------------------------- /Sources/Logging/HTML+LoggableCSSClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Logging/HTML+LoggableCSSClass.swift -------------------------------------------------------------------------------- /Sources/Logging/Loggable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Logging/Loggable.swift -------------------------------------------------------------------------------- /Sources/Logging/LogsTrimmer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Logging/LogsTrimmer.swift -------------------------------------------------------------------------------- /Sources/Logging/LogsWriter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Logging/LogsWriter.swift -------------------------------------------------------------------------------- /Sources/MFMailExtensions/MFMailComposeVCExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/MFMailExtensions/MFMailComposeVCExtensions.swift -------------------------------------------------------------------------------- /Sources/MetricKit/MetricsMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/MetricKit/MetricsMonitor.swift -------------------------------------------------------------------------------- /Sources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Sources/Reporters/AppSystemMetadataReporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Reporters/AppSystemMetadataReporter.swift -------------------------------------------------------------------------------- /Sources/Reporters/DirectoryTree/DirectoryTreeFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Reporters/DirectoryTree/DirectoryTreeFactory.swift -------------------------------------------------------------------------------- /Sources/Reporters/DirectoryTree/DirectoryTreeNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Reporters/DirectoryTree/DirectoryTreeNode.swift -------------------------------------------------------------------------------- /Sources/Reporters/DirectoryTree/DirectoryTreeReporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Reporters/DirectoryTree/DirectoryTreeReporter.swift -------------------------------------------------------------------------------- /Sources/Reporters/DirectoryTree/DirectoryTreeStringFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Reporters/DirectoryTree/DirectoryTreeStringFactory.swift -------------------------------------------------------------------------------- /Sources/Reporters/GeneralInfoReporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Reporters/GeneralInfoReporter.swift -------------------------------------------------------------------------------- /Sources/Reporters/LogsReporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Reporters/LogsReporter.swift -------------------------------------------------------------------------------- /Sources/Reporters/SmartInsightsReporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Reporters/SmartInsightsReporter.swift -------------------------------------------------------------------------------- /Sources/Reporters/UserDefaultsReporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/Reporters/UserDefaultsReporter.swift -------------------------------------------------------------------------------- /Sources/SmartInsights/CellularAllowedInsight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/SmartInsights/CellularAllowedInsight.swift -------------------------------------------------------------------------------- /Sources/SmartInsights/DeviceStorageInsight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/SmartInsights/DeviceStorageInsight.swift -------------------------------------------------------------------------------- /Sources/SmartInsights/SmartInsight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/SmartInsights/SmartInsight.swift -------------------------------------------------------------------------------- /Sources/SmartInsights/SmartInsightsProviding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/SmartInsights/SmartInsightsProviding.swift -------------------------------------------------------------------------------- /Sources/SmartInsights/UpdateAvailableInsight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/SmartInsights/UpdateAvailableInsight.swift -------------------------------------------------------------------------------- /Sources/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/functions.js -------------------------------------------------------------------------------- /Sources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/Sources/style.css -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvdLee/Diagnostics/HEAD/fastlane/README.md --------------------------------------------------------------------------------