├── .gitignore ├── .xcode-version ├── Dangerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Crashlytics │ ├── Crashlytics.framework │ │ ├── README │ │ └── submit │ ├── iOS │ │ └── Crashlytics.framework │ │ │ ├── Crashlytics │ │ │ ├── Headers │ │ │ ├── ANSCompatibility.h │ │ │ ├── Answers.h │ │ │ ├── CLSAttributes.h │ │ │ ├── CLSLogging.h │ │ │ ├── CLSReport.h │ │ │ ├── CLSStackFrame.h │ │ │ └── Crashlytics.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── run │ │ │ ├── submit │ │ │ └── uploadDSYM │ └── submit ├── EmojiKit │ ├── AllEmoji.json │ ├── EmojiKit │ │ ├── DictionarySerialization.swift │ │ ├── Emoji.swift │ │ └── EmojiFetcher.swift │ ├── LICENSE │ └── README.md ├── Fabric │ ├── Fabric.framework │ │ ├── README │ │ └── run │ ├── README.md │ ├── iOS │ │ └── Fabric.framework │ │ │ ├── Fabric │ │ │ ├── Headers │ │ │ ├── FABAttributes.h │ │ │ └── Fabric.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── run │ │ │ └── uploadDSYM │ ├── run │ └── uploadDSYM ├── Manifest.lock ├── PKHUD │ ├── LICENSE │ ├── PKHUD │ │ ├── FrameView.swift │ │ ├── Images.xcassets │ │ │ ├── checkmark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── checkmark.pdf │ │ │ ├── cross.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cross.pdf │ │ │ └── progress.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── progress.pdf │ │ ├── PKHUD.h │ │ ├── PKHUD.swift │ │ ├── PKHUDAnimating.swift │ │ ├── PKHUDAssets.swift │ │ ├── PKHUDErrorView.swift │ │ ├── PKHUDImageView.swift │ │ ├── PKHUDProgressView.swift │ │ ├── PKHUDSquareBaseView.swift │ │ ├── PKHUDStatusView.swift │ │ ├── PKHUDSubtitleView.swift │ │ ├── PKHUDSuccessView.swift │ │ ├── PKHUDSystemActivityIndicatorView.swift │ │ ├── PKHUDTextView.swift │ │ ├── PKHUDTitleView.swift │ │ ├── PKHUDWideBaseView.swift │ │ ├── Window.swift │ │ └── WindowRootViewController.swift │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj └── Target Support Files │ ├── EmojiKit │ ├── EmojiKit-dummy.m │ ├── EmojiKit-prefix.pch │ ├── EmojiKit-umbrella.h │ ├── EmojiKit.modulemap │ ├── EmojiKit.xcconfig │ └── Info.plist │ ├── PKHUD │ ├── Info.plist │ ├── PKHUD-dummy.m │ ├── PKHUD-prefix.pch │ ├── PKHUD-umbrella.h │ ├── PKHUD.modulemap │ └── PKHUD.xcconfig │ └── Pods-Themoji │ ├── Info.plist │ ├── Pods-Themoji-acknowledgements.markdown │ ├── Pods-Themoji-acknowledgements.plist │ ├── Pods-Themoji-dummy.m │ ├── Pods-Themoji-frameworks.sh │ ├── Pods-Themoji-resources.sh │ ├── Pods-Themoji-umbrella.h │ ├── Pods-Themoji.debug.xcconfig │ ├── Pods-Themoji.modulemap │ └── Pods-Themoji.release.xcconfig ├── README.md ├── Rakefile ├── Themoji.png ├── Themoji.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Themoji.xcscheme │ └── ThemojiUITests.xcscheme ├── Themoji.xcworkspace └── contents.xcworkspacedata ├── Themoji ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── AppIcon24x24@2x.png │ │ ├── AppIcon27.5x27.5@2x.png │ │ ├── AppIcon40x40@2x.png │ │ ├── AppIcon44x44@2x.png │ │ ├── AppIcon86x86@2x.png │ │ ├── AppIcon98x98@2x.png │ │ ├── Contents.json │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-72.png │ │ ├── Icon-72@2x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-50.png │ │ ├── Icon-Small-50@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── IconIpad.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Category.swift ├── CategoryButton.swift ├── CategoryButton.xib ├── FontRendering.h ├── FontRendering.m ├── Info.plist ├── Themoji-Bridging-Header.h └── ViewController.swift ├── ThemojiUITests ├── Info.plist ├── SnapshotHelper.swift └── ThemojiUITests.swift ├── circle.yml ├── fastlane-plugin-emoji_fetcher ├── .gitignore ├── .rspec ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── fastlane-plugin-emoji_fetcher.gemspec └── lib │ └── fastlane │ └── plugin │ ├── emoji_fetcher.rb │ └── emoji_fetcher │ ├── actions │ └── emoji_fetcher_action.rb │ └── version.rb └── fastlane ├── Appfile ├── Deliverfile ├── Fastfile ├── Matchfile ├── Pluginfile ├── README.md ├── Snapfile └── metadata ├── Themoji.png ├── copyright.txt ├── en-US ├── description.txt ├── keywords.txt ├── marketing_url.txt ├── name.txt ├── privacy_url.txt ├── release_notes.txt └── support_url.txt ├── primary_category.txt ├── primary_first_sub_category.txt ├── primary_second_sub_category.txt ├── secondary_category.txt ├── secondary_first_sub_category.txt └── secondary_second_sub_category.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.xcode-version: -------------------------------------------------------------------------------- 1 | 9.2 2 | -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Dangerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Crashlytics/Crashlytics.framework/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Crashlytics/Crashlytics.framework/README -------------------------------------------------------------------------------- /Pods/Crashlytics/Crashlytics.framework/submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Crashlytics/Crashlytics.framework/submit -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/Crashlytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Crashlytics/iOS/Crashlytics.framework/Crashlytics -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/Headers/ANSCompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/ANSCompatibility.h -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/Headers/Answers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/Answers.h -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSAttributes.h -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSLogging.h -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSReport.h -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSStackFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSStackFrame.h -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/Headers/Crashlytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/Crashlytics.h -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Crashlytics/iOS/Crashlytics.framework/Info.plist -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Crashlytics/iOS/Crashlytics.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Crashlytics/iOS/Crashlytics.framework/run -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Crashlytics/iOS/Crashlytics.framework/submit -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/uploadDSYM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Crashlytics/iOS/Crashlytics.framework/uploadDSYM -------------------------------------------------------------------------------- /Pods/Crashlytics/submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Crashlytics/submit -------------------------------------------------------------------------------- /Pods/EmojiKit/AllEmoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/EmojiKit/AllEmoji.json -------------------------------------------------------------------------------- /Pods/EmojiKit/EmojiKit/DictionarySerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/EmojiKit/EmojiKit/DictionarySerialization.swift -------------------------------------------------------------------------------- /Pods/EmojiKit/EmojiKit/Emoji.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/EmojiKit/EmojiKit/Emoji.swift -------------------------------------------------------------------------------- /Pods/EmojiKit/EmojiKit/EmojiFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/EmojiKit/EmojiKit/EmojiFetcher.swift -------------------------------------------------------------------------------- /Pods/EmojiKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/EmojiKit/LICENSE -------------------------------------------------------------------------------- /Pods/EmojiKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/EmojiKit/README.md -------------------------------------------------------------------------------- /Pods/Fabric/Fabric.framework/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Fabric/Fabric.framework/README -------------------------------------------------------------------------------- /Pods/Fabric/Fabric.framework/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Fabric/Fabric.framework/run -------------------------------------------------------------------------------- /Pods/Fabric/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Fabric/README.md -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/Fabric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Fabric/iOS/Fabric.framework/Fabric -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/Headers/FABAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Fabric/iOS/Fabric.framework/Headers/FABAttributes.h -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/Headers/Fabric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Fabric/iOS/Fabric.framework/Headers/Fabric.h -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Fabric/iOS/Fabric.framework/Info.plist -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Fabric/iOS/Fabric.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Fabric/iOS/Fabric.framework/run -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/uploadDSYM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Fabric/iOS/Fabric.framework/uploadDSYM -------------------------------------------------------------------------------- /Pods/Fabric/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Fabric/run -------------------------------------------------------------------------------- /Pods/Fabric/uploadDSYM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Fabric/uploadDSYM -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/PKHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/LICENSE -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/FrameView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/FrameView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/Images.xcassets/checkmark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/Images.xcassets/checkmark.imageset/Contents.json -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/Images.xcassets/checkmark.imageset/checkmark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/Images.xcassets/checkmark.imageset/checkmark.pdf -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/Images.xcassets/cross.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/Images.xcassets/cross.imageset/Contents.json -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/Images.xcassets/cross.imageset/cross.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/Images.xcassets/cross.imageset/cross.pdf -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/Images.xcassets/progress.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/Images.xcassets/progress.imageset/Contents.json -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/Images.xcassets/progress.imageset/progress.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/Images.xcassets/progress.imageset/progress.pdf -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/PKHUD.h -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/PKHUD.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDAnimating.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/PKHUDAnimating.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDAssets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/PKHUDAssets.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDErrorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/PKHUDErrorView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/PKHUDImageView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/PKHUDProgressView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDSquareBaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/PKHUDSquareBaseView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDStatusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/PKHUDStatusView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDSubtitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/PKHUDSubtitleView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDSuccessView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/PKHUDSuccessView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDSystemActivityIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/PKHUDSystemActivityIndicatorView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/PKHUDTextView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/PKHUDTitleView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/PKHUDWideBaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/PKHUDWideBaseView.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/Window.swift -------------------------------------------------------------------------------- /Pods/PKHUD/PKHUD/WindowRootViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/PKHUD/WindowRootViewController.swift -------------------------------------------------------------------------------- /Pods/PKHUD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/PKHUD/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Target Support Files/EmojiKit/EmojiKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/EmojiKit/EmojiKit-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/EmojiKit/EmojiKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/EmojiKit/EmojiKit-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/EmojiKit/EmojiKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/EmojiKit/EmojiKit-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/EmojiKit/EmojiKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/EmojiKit/EmojiKit.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/EmojiKit/EmojiKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/EmojiKit/EmojiKit.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/EmojiKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/EmojiKit/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/PKHUD/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/PKHUD/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/PKHUD/PKHUD-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/PKHUD/PKHUD-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/PKHUD/PKHUD-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/PKHUD/PKHUD-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/PKHUD/PKHUD-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/PKHUD/PKHUD-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/PKHUD/PKHUD.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/PKHUD/PKHUD.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/PKHUD/PKHUD.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/PKHUD/PKHUD.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Themoji/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/Pods-Themoji/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Themoji/Pods-Themoji-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/Pods-Themoji/Pods-Themoji-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Themoji/Pods-Themoji-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/Pods-Themoji/Pods-Themoji-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Themoji/Pods-Themoji-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/Pods-Themoji/Pods-Themoji-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Themoji/Pods-Themoji-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/Pods-Themoji/Pods-Themoji-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Themoji/Pods-Themoji-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/Pods-Themoji/Pods-Themoji-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Themoji/Pods-Themoji-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/Pods-Themoji/Pods-Themoji-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Themoji/Pods-Themoji.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/Pods-Themoji/Pods-Themoji.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Themoji/Pods-Themoji.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/Pods-Themoji/Pods-Themoji.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Themoji/Pods-Themoji.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Pods/Target Support Files/Pods-Themoji/Pods-Themoji.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Rakefile -------------------------------------------------------------------------------- /Themoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji.png -------------------------------------------------------------------------------- /Themoji.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Themoji.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Themoji.xcodeproj/xcshareddata/xcschemes/Themoji.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji.xcodeproj/xcshareddata/xcschemes/Themoji.xcscheme -------------------------------------------------------------------------------- /Themoji.xcodeproj/xcshareddata/xcschemes/ThemojiUITests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji.xcodeproj/xcshareddata/xcschemes/ThemojiUITests.xcscheme -------------------------------------------------------------------------------- /Themoji.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Themoji/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/AppDelegate.swift -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/AppIcon24x24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/AppIcon24x24@2x.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/AppIcon27.5x27.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/AppIcon27.5x27.5@2x.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/AppIcon44x44@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/AppIcon44x44@2x.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/AppIcon86x86@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/AppIcon86x86@2x.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/AppIcon98x98@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/AppIcon98x98@2x.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/Icon-72.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/Icon-72@2x.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/Icon-Small-40.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/Icon-Small-50.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/Icon@2x.png -------------------------------------------------------------------------------- /Themoji/Assets.xcassets/AppIcon.appiconset/IconIpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Assets.xcassets/AppIcon.appiconset/IconIpad.png -------------------------------------------------------------------------------- /Themoji/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Themoji/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Themoji/Category.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Category.swift -------------------------------------------------------------------------------- /Themoji/CategoryButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/CategoryButton.swift -------------------------------------------------------------------------------- /Themoji/CategoryButton.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/CategoryButton.xib -------------------------------------------------------------------------------- /Themoji/FontRendering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/FontRendering.h -------------------------------------------------------------------------------- /Themoji/FontRendering.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/FontRendering.m -------------------------------------------------------------------------------- /Themoji/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Info.plist -------------------------------------------------------------------------------- /Themoji/Themoji-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/Themoji-Bridging-Header.h -------------------------------------------------------------------------------- /Themoji/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/Themoji/ViewController.swift -------------------------------------------------------------------------------- /ThemojiUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/ThemojiUITests/Info.plist -------------------------------------------------------------------------------- /ThemojiUITests/SnapshotHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/ThemojiUITests/SnapshotHelper.swift -------------------------------------------------------------------------------- /ThemojiUITests/ThemojiUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/ThemojiUITests/ThemojiUITests.swift -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/circle.yml -------------------------------------------------------------------------------- /fastlane-plugin-emoji_fetcher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/fastlane-plugin-emoji_fetcher/.gitignore -------------------------------------------------------------------------------- /fastlane-plugin-emoji_fetcher/.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/fastlane-plugin-emoji_fetcher/.rspec -------------------------------------------------------------------------------- /fastlane-plugin-emoji_fetcher/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/fastlane-plugin-emoji_fetcher/Gemfile -------------------------------------------------------------------------------- /fastlane-plugin-emoji_fetcher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/fastlane-plugin-emoji_fetcher/LICENSE -------------------------------------------------------------------------------- /fastlane-plugin-emoji_fetcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/fastlane-plugin-emoji_fetcher/README.md -------------------------------------------------------------------------------- /fastlane-plugin-emoji_fetcher/Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler/gem_tasks' 2 | -------------------------------------------------------------------------------- /fastlane-plugin-emoji_fetcher/fastlane-plugin-emoji_fetcher.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/fastlane-plugin-emoji_fetcher/fastlane-plugin-emoji_fetcher.gemspec -------------------------------------------------------------------------------- /fastlane-plugin-emoji_fetcher/lib/fastlane/plugin/emoji_fetcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/fastlane-plugin-emoji_fetcher/lib/fastlane/plugin/emoji_fetcher.rb -------------------------------------------------------------------------------- /fastlane-plugin-emoji_fetcher/lib/fastlane/plugin/emoji_fetcher/actions/emoji_fetcher_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/fastlane-plugin-emoji_fetcher/lib/fastlane/plugin/emoji_fetcher/actions/emoji_fetcher_action.rb -------------------------------------------------------------------------------- /fastlane-plugin-emoji_fetcher/lib/fastlane/plugin/emoji_fetcher/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/fastlane-plugin-emoji_fetcher/lib/fastlane/plugin/emoji_fetcher/version.rb -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Deliverfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/fastlane/Deliverfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Matchfile: -------------------------------------------------------------------------------- 1 | git_url "https://github.com/krausefx/certs" 2 | -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/fastlane/Pluginfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/Snapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/fastlane/Snapfile -------------------------------------------------------------------------------- /fastlane/metadata/Themoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/fastlane/metadata/Themoji.png -------------------------------------------------------------------------------- /fastlane/metadata/copyright.txt: -------------------------------------------------------------------------------- 1 | 2016 Felix Krause -------------------------------------------------------------------------------- /fastlane/metadata/en-US/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/fastlane/metadata/en-US/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/en-US/keywords.txt: -------------------------------------------------------------------------------- 1 | emoji,fun,lol,real,life,graphic,choose -------------------------------------------------------------------------------- /fastlane/metadata/en-US/marketing_url.txt: -------------------------------------------------------------------------------- 1 | https://themoji.me/ -------------------------------------------------------------------------------- /fastlane/metadata/en-US/name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Themoji/ios/HEAD/fastlane/metadata/en-US/name.txt -------------------------------------------------------------------------------- /fastlane/metadata/en-US/privacy_url.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/release_notes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/support_url.txt: -------------------------------------------------------------------------------- 1 | https://themoji.me/ -------------------------------------------------------------------------------- /fastlane/metadata/primary_category.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/primary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/primary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/secondary_category.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/secondary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/secondary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------