├── .github └── workflows │ └── swift.yml ├── .gitignore ├── .ruby-version ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── Demo ├── Demo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Demo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Demo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.swift │ ├── da.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── de.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── el.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── es.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── fr.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── he.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── hu.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── id.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── it.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── ja.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── pl.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── pt-BR.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── pt-PT.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── sv.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── tr.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── uk.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── vi.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ └── zh-Hans.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings ├── DemoTests │ ├── DemoTests.swift │ └── Info.plist └── Podfile ├── DemoObjc ├── DemoObjc.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── DemoObjc.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── DemoObjc │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── Podfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Package.swift ├── README.md ├── Resource ├── later1.gif ├── later2.gif ├── macos-later1.gif └── macos-later2.gif ├── SwiftRater.podspec ├── SwiftRater.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── SwiftRater.xcscheme ├── SwiftRater ├── Info.plist ├── PrivacyInfo.xcprivacy ├── SwiftRater.h ├── SwiftRater.swift ├── SwiftRaterBundleExtension.swift ├── SwiftRaterError.swift ├── SwiftRaterErrorCode.swift ├── UsageDataManager.swift ├── ar.lproj │ └── SwiftRaterLocalization.strings ├── ca.lproj │ └── SwiftRaterLocalization.strings ├── cs.lproj │ └── SwiftRaterLocalization.strings ├── da.lproj │ └── SwiftRaterLocalization.strings ├── de.lproj │ └── SwiftRaterLocalization.strings ├── el.lproj │ └── SwiftRaterLocalization.strings ├── en.lproj │ └── SwiftRaterLocalization.strings ├── es.lproj │ └── SwiftRaterLocalization.strings ├── fi.lproj │ └── SwiftRaterLocalization.strings ├── fr.lproj │ └── SwiftRaterLocalization.strings ├── he.lproj │ └── SwiftRaterLocalization.strings ├── hu.lproj │ └── SwiftRaterLocalization.strings ├── id.lproj │ └── SwiftRaterLocalization.strings ├── it.lproj │ └── SwiftRaterLocalization.strings ├── ja.lproj │ └── SwiftRaterLocalization.strings ├── ko.lproj │ └── SwiftRaterLocalization.strings ├── ms.lproj │ └── SwiftRaterLocalization.strings ├── nl.lproj │ └── SwiftRaterLocalization.strings ├── pl.lproj │ └── SwiftRaterLocalization.strings ├── pt-BR.lproj │ └── SwiftRaterLocalization.strings ├── pt-PT.lproj │ └── SwiftRaterLocalization.strings ├── ro.lproj │ └── SwiftRaterLocalization.strings ├── ru.lproj │ └── SwiftRaterLocalization.strings ├── sk.lproj │ └── SwiftRaterLocalization.strings ├── sv.lproj │ └── SwiftRaterLocalization.strings ├── th.lproj │ └── SwiftRaterLocalization.strings ├── tr.lproj │ └── SwiftRaterLocalization.strings ├── uk.lproj │ └── SwiftRaterLocalization.strings ├── vi.lproj │ └── SwiftRaterLocalization.strings ├── zh-Hans.lproj │ └── SwiftRaterLocalization.strings └── zh-Hant.lproj │ └── SwiftRaterLocalization.strings └── SwiftRaterTests ├── Info.plist └── SwiftRaterTests.swift /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.0.0 2 | -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Demo/Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Demo/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Demo/Demo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Demo/Demo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Demo/Demo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/Demo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Demo/Demo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Demo/Demo.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Demo/Demo.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Demo/Demo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Demo/Demo/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Demo/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Demo/Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Demo/Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Demo/Demo/Info.plist -------------------------------------------------------------------------------- /Demo/Demo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Demo/Demo/ViewController.swift -------------------------------------------------------------------------------- /Demo/Demo/da.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/da.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/de.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/de.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/el.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/el.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/es.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/es.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/fr.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/fr.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/he.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/he.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/hu.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/hu.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/id.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/id.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/it.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/it.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/ja.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/ja.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/pl.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/pl.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/pt-BR.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/pt-BR.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/pt-PT.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/pt-PT.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/sv.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/sv.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/tr.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/tr.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/uk.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/uk.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/vi.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/vi.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Demo/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/DemoTests/DemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Demo/DemoTests/DemoTests.swift -------------------------------------------------------------------------------- /Demo/DemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Demo/DemoTests/Info.plist -------------------------------------------------------------------------------- /Demo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Demo/Podfile -------------------------------------------------------------------------------- /DemoObjc/DemoObjc.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/DemoObjc/DemoObjc.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DemoObjc/DemoObjc.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/DemoObjc/DemoObjc.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DemoObjc/DemoObjc.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/DemoObjc/DemoObjc.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DemoObjc/DemoObjc.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/DemoObjc/DemoObjc.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DemoObjc/DemoObjc.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/DemoObjc/DemoObjc.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DemoObjc/DemoObjc/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/DemoObjc/DemoObjc/AppDelegate.h -------------------------------------------------------------------------------- /DemoObjc/DemoObjc/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/DemoObjc/DemoObjc/AppDelegate.m -------------------------------------------------------------------------------- /DemoObjc/DemoObjc/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/DemoObjc/DemoObjc/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DemoObjc/DemoObjc/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/DemoObjc/DemoObjc/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DemoObjc/DemoObjc/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/DemoObjc/DemoObjc/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DemoObjc/DemoObjc/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/DemoObjc/DemoObjc/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DemoObjc/DemoObjc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/DemoObjc/DemoObjc/Info.plist -------------------------------------------------------------------------------- /DemoObjc/DemoObjc/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/DemoObjc/DemoObjc/ViewController.h -------------------------------------------------------------------------------- /DemoObjc/DemoObjc/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/DemoObjc/DemoObjc/ViewController.m -------------------------------------------------------------------------------- /DemoObjc/DemoObjc/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/DemoObjc/DemoObjc/main.m -------------------------------------------------------------------------------- /DemoObjc/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/DemoObjc/Podfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/README.md -------------------------------------------------------------------------------- /Resource/later1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Resource/later1.gif -------------------------------------------------------------------------------- /Resource/later2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Resource/later2.gif -------------------------------------------------------------------------------- /Resource/macos-later1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Resource/macos-later1.gif -------------------------------------------------------------------------------- /Resource/macos-later2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/Resource/macos-later2.gif -------------------------------------------------------------------------------- /SwiftRater.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater.podspec -------------------------------------------------------------------------------- /SwiftRater.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftRater.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftRater.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SwiftRater.xcodeproj/xcshareddata/xcschemes/SwiftRater.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater.xcodeproj/xcshareddata/xcschemes/SwiftRater.xcscheme -------------------------------------------------------------------------------- /SwiftRater/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/Info.plist -------------------------------------------------------------------------------- /SwiftRater/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /SwiftRater/SwiftRater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/SwiftRater.h -------------------------------------------------------------------------------- /SwiftRater/SwiftRater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/SwiftRater.swift -------------------------------------------------------------------------------- /SwiftRater/SwiftRaterBundleExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/SwiftRaterBundleExtension.swift -------------------------------------------------------------------------------- /SwiftRater/SwiftRaterError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/SwiftRaterError.swift -------------------------------------------------------------------------------- /SwiftRater/SwiftRaterErrorCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/SwiftRaterErrorCode.swift -------------------------------------------------------------------------------- /SwiftRater/UsageDataManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/UsageDataManager.swift -------------------------------------------------------------------------------- /SwiftRater/ar.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/ar.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/ca.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/ca.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/cs.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/cs.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/da.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/da.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/de.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/de.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/el.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/el.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/en.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/en.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/es.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/es.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/fi.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/fi.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/fr.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/fr.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/he.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/he.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/hu.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/hu.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/id.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/id.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/it.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/it.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/ja.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/ja.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/ko.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/ko.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/ms.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/ms.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/nl.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/nl.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/pl.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/pl.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/pt-BR.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/pt-BR.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/pt-PT.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/pt-PT.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/ro.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/ro.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/ru.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/ru.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/sk.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/sk.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/sv.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/sv.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/th.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/th.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/tr.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/tr.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/uk.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/uk.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/vi.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/vi.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/zh-Hans.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/zh-Hans.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRater/zh-Hant.lproj/SwiftRaterLocalization.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRater/zh-Hant.lproj/SwiftRaterLocalization.strings -------------------------------------------------------------------------------- /SwiftRaterTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRaterTests/Info.plist -------------------------------------------------------------------------------- /SwiftRaterTests/SwiftRaterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takecian/SwiftRater/HEAD/SwiftRaterTests/SwiftRaterTests.swift --------------------------------------------------------------------------------