├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── AppFeedback.podspec ├── AppFeedback.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── AppFeedback.xcscheme ├── AppFeedback.xcworkspace └── contents.xcworkspacedata ├── AppFeedback ├── AnimationUtil.h ├── AnimationUtil.m ├── AppFeedback.h ├── AppFeedbackInternal.h ├── AppFeedbackInternal.m ├── AutoResizeTextView.h ├── AutoResizeTextView.m ├── Base.lproj │ └── Main.storyboard ├── CaptureOverlayWindow.h ├── CaptureOverlayWindow.m ├── Color.h ├── Color.m ├── Config.h ├── Config.m ├── DeviceUtil.h ├── DeviceUtil.m ├── DrawView.h ├── DrawView.m ├── DrawViewController.h ├── DrawViewController.m ├── ExpansionButton.h ├── ExpansionButton.m ├── FloatingButton.xib ├── FloatingButtonController.h ├── FloatingButtonController.m ├── FloatingButtonControllerIOS9.h ├── FloatingButtonControllerIOS9.m ├── FloatingButtonDelegate.h ├── FloatingButtonOuterView.h ├── FloatingButtonOuterView.m ├── FloatingButtonView.h ├── FloatingButtonView.m ├── FloatingButtonWindow.h ├── FloatingButtonWindow.m ├── FloatingProgressView.h ├── FloatingProgressView.m ├── Images.xcassets │ ├── CategoryPulldown.imageset │ │ ├── CategoryPulldown.pdf │ │ └── Contents.json │ ├── Contents.json │ ├── Drawing.imageset │ │ ├── Contents.json │ │ └── Drawing.pdf │ ├── FloatingButtonIcon.imageset │ │ ├── AppFeedback.pdf │ │ └── Contents.json │ ├── Play.imageset │ │ ├── Contents.json │ │ └── Play.pdf │ ├── Stop.imageset │ │ ├── Contents.json │ │ └── Stop.pdf │ └── VideoCapture.imageset │ │ ├── Contents.json │ │ └── Video.pdf ├── Info.plist ├── Logger.h ├── NSURL+Sizse.h ├── NSURL+Sizse.m ├── OverlayWindow.h ├── OverlayWindow.m ├── PopUpTransitionAnimater.h ├── PopUpTransitionAnimater.m ├── ReportViewController.h ├── ReportViewController.m ├── ScreenCapture.h ├── ScreenCapture.m ├── ScreenVideoCaptureSession.h ├── ScreenVideoCaptureSession.m ├── SlackAPI.h ├── SlackAPI.m ├── UIPlaceHolderTextView.h ├── UIPlaceHolderTextView.m ├── en.lproj │ ├── Localizable.strings │ └── Main.strings ├── include │ └── AppFeedback.h └── ja.lproj │ ├── Localizable.strings │ └── Main.strings ├── AppFeedbackTests ├── AppFeedbackTests.m ├── ConfigTests.m ├── Info.plist └── StringUtilTests.m ├── Dangerfile.hosted.rb ├── LICENSE ├── Package.swift ├── README.md ├── SampleApp ├── SampleApp.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── SampleApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── first.imageset │ │ │ ├── Contents.json │ │ │ └── first.pdf │ │ └── second.imageset │ │ │ ├── Contents.json │ │ │ └── second.pdf │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Bridging-Header.h │ ├── FirstViewController.swift │ ├── Info.plist │ ├── SecondViewController.swift │ └── ja.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings ├── SampleAppTests │ ├── Info.plist │ └── iOSSDKSampleTests.swift └── SampleAppUITests │ ├── Info.plist │ └── iOSSDKSampleUITests.swift ├── assets ├── AppFeedback_sticker.ai ├── CompilationFlags.png ├── CopyFrameworks.png ├── Logo.png └── demo.gif ├── fastlane ├── .gitignore ├── Fastfile └── Pluginfile └── scripts └── update-license.rb /.gitattributes: -------------------------------------------------------------------------------- 1 | CHANGELOG.md merge=union 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /AppFeedback.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback.podspec -------------------------------------------------------------------------------- /AppFeedback.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AppFeedback.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AppFeedback.xcodeproj/xcshareddata/xcschemes/AppFeedback.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback.xcodeproj/xcshareddata/xcschemes/AppFeedback.xcscheme -------------------------------------------------------------------------------- /AppFeedback.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AppFeedback/AnimationUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/AnimationUtil.h -------------------------------------------------------------------------------- /AppFeedback/AnimationUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/AnimationUtil.m -------------------------------------------------------------------------------- /AppFeedback/AppFeedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/AppFeedback.h -------------------------------------------------------------------------------- /AppFeedback/AppFeedbackInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/AppFeedbackInternal.h -------------------------------------------------------------------------------- /AppFeedback/AppFeedbackInternal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/AppFeedbackInternal.m -------------------------------------------------------------------------------- /AppFeedback/AutoResizeTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/AutoResizeTextView.h -------------------------------------------------------------------------------- /AppFeedback/AutoResizeTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/AutoResizeTextView.m -------------------------------------------------------------------------------- /AppFeedback/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AppFeedback/CaptureOverlayWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/CaptureOverlayWindow.h -------------------------------------------------------------------------------- /AppFeedback/CaptureOverlayWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/CaptureOverlayWindow.m -------------------------------------------------------------------------------- /AppFeedback/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Color.h -------------------------------------------------------------------------------- /AppFeedback/Color.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Color.m -------------------------------------------------------------------------------- /AppFeedback/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Config.h -------------------------------------------------------------------------------- /AppFeedback/Config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Config.m -------------------------------------------------------------------------------- /AppFeedback/DeviceUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/DeviceUtil.h -------------------------------------------------------------------------------- /AppFeedback/DeviceUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/DeviceUtil.m -------------------------------------------------------------------------------- /AppFeedback/DrawView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/DrawView.h -------------------------------------------------------------------------------- /AppFeedback/DrawView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/DrawView.m -------------------------------------------------------------------------------- /AppFeedback/DrawViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/DrawViewController.h -------------------------------------------------------------------------------- /AppFeedback/DrawViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/DrawViewController.m -------------------------------------------------------------------------------- /AppFeedback/ExpansionButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/ExpansionButton.h -------------------------------------------------------------------------------- /AppFeedback/ExpansionButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/ExpansionButton.m -------------------------------------------------------------------------------- /AppFeedback/FloatingButton.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/FloatingButton.xib -------------------------------------------------------------------------------- /AppFeedback/FloatingButtonController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/FloatingButtonController.h -------------------------------------------------------------------------------- /AppFeedback/FloatingButtonController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/FloatingButtonController.m -------------------------------------------------------------------------------- /AppFeedback/FloatingButtonControllerIOS9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/FloatingButtonControllerIOS9.h -------------------------------------------------------------------------------- /AppFeedback/FloatingButtonControllerIOS9.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/FloatingButtonControllerIOS9.m -------------------------------------------------------------------------------- /AppFeedback/FloatingButtonDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/FloatingButtonDelegate.h -------------------------------------------------------------------------------- /AppFeedback/FloatingButtonOuterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/FloatingButtonOuterView.h -------------------------------------------------------------------------------- /AppFeedback/FloatingButtonOuterView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/FloatingButtonOuterView.m -------------------------------------------------------------------------------- /AppFeedback/FloatingButtonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/FloatingButtonView.h -------------------------------------------------------------------------------- /AppFeedback/FloatingButtonView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/FloatingButtonView.m -------------------------------------------------------------------------------- /AppFeedback/FloatingButtonWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/FloatingButtonWindow.h -------------------------------------------------------------------------------- /AppFeedback/FloatingButtonWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/FloatingButtonWindow.m -------------------------------------------------------------------------------- /AppFeedback/FloatingProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/FloatingProgressView.h -------------------------------------------------------------------------------- /AppFeedback/FloatingProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/FloatingProgressView.m -------------------------------------------------------------------------------- /AppFeedback/Images.xcassets/CategoryPulldown.imageset/CategoryPulldown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Images.xcassets/CategoryPulldown.imageset/CategoryPulldown.pdf -------------------------------------------------------------------------------- /AppFeedback/Images.xcassets/CategoryPulldown.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Images.xcassets/CategoryPulldown.imageset/Contents.json -------------------------------------------------------------------------------- /AppFeedback/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /AppFeedback/Images.xcassets/Drawing.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Images.xcassets/Drawing.imageset/Contents.json -------------------------------------------------------------------------------- /AppFeedback/Images.xcassets/Drawing.imageset/Drawing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Images.xcassets/Drawing.imageset/Drawing.pdf -------------------------------------------------------------------------------- /AppFeedback/Images.xcassets/FloatingButtonIcon.imageset/AppFeedback.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Images.xcassets/FloatingButtonIcon.imageset/AppFeedback.pdf -------------------------------------------------------------------------------- /AppFeedback/Images.xcassets/FloatingButtonIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Images.xcassets/FloatingButtonIcon.imageset/Contents.json -------------------------------------------------------------------------------- /AppFeedback/Images.xcassets/Play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Images.xcassets/Play.imageset/Contents.json -------------------------------------------------------------------------------- /AppFeedback/Images.xcassets/Play.imageset/Play.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Images.xcassets/Play.imageset/Play.pdf -------------------------------------------------------------------------------- /AppFeedback/Images.xcassets/Stop.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Images.xcassets/Stop.imageset/Contents.json -------------------------------------------------------------------------------- /AppFeedback/Images.xcassets/Stop.imageset/Stop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Images.xcassets/Stop.imageset/Stop.pdf -------------------------------------------------------------------------------- /AppFeedback/Images.xcassets/VideoCapture.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Images.xcassets/VideoCapture.imageset/Contents.json -------------------------------------------------------------------------------- /AppFeedback/Images.xcassets/VideoCapture.imageset/Video.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Images.xcassets/VideoCapture.imageset/Video.pdf -------------------------------------------------------------------------------- /AppFeedback/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Info.plist -------------------------------------------------------------------------------- /AppFeedback/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/Logger.h -------------------------------------------------------------------------------- /AppFeedback/NSURL+Sizse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/NSURL+Sizse.h -------------------------------------------------------------------------------- /AppFeedback/NSURL+Sizse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/NSURL+Sizse.m -------------------------------------------------------------------------------- /AppFeedback/OverlayWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/OverlayWindow.h -------------------------------------------------------------------------------- /AppFeedback/OverlayWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/OverlayWindow.m -------------------------------------------------------------------------------- /AppFeedback/PopUpTransitionAnimater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/PopUpTransitionAnimater.h -------------------------------------------------------------------------------- /AppFeedback/PopUpTransitionAnimater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/PopUpTransitionAnimater.m -------------------------------------------------------------------------------- /AppFeedback/ReportViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/ReportViewController.h -------------------------------------------------------------------------------- /AppFeedback/ReportViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/ReportViewController.m -------------------------------------------------------------------------------- /AppFeedback/ScreenCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/ScreenCapture.h -------------------------------------------------------------------------------- /AppFeedback/ScreenCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/ScreenCapture.m -------------------------------------------------------------------------------- /AppFeedback/ScreenVideoCaptureSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/ScreenVideoCaptureSession.h -------------------------------------------------------------------------------- /AppFeedback/ScreenVideoCaptureSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/ScreenVideoCaptureSession.m -------------------------------------------------------------------------------- /AppFeedback/SlackAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/SlackAPI.h -------------------------------------------------------------------------------- /AppFeedback/SlackAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/SlackAPI.m -------------------------------------------------------------------------------- /AppFeedback/UIPlaceHolderTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/UIPlaceHolderTextView.h -------------------------------------------------------------------------------- /AppFeedback/UIPlaceHolderTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/UIPlaceHolderTextView.m -------------------------------------------------------------------------------- /AppFeedback/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /AppFeedback/en.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/en.lproj/Main.strings -------------------------------------------------------------------------------- /AppFeedback/include/AppFeedback.h: -------------------------------------------------------------------------------- 1 | ../AppFeedback.h -------------------------------------------------------------------------------- /AppFeedback/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /AppFeedback/ja.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedback/ja.lproj/Main.strings -------------------------------------------------------------------------------- /AppFeedbackTests/AppFeedbackTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedbackTests/AppFeedbackTests.m -------------------------------------------------------------------------------- /AppFeedbackTests/ConfigTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedbackTests/ConfigTests.m -------------------------------------------------------------------------------- /AppFeedbackTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedbackTests/Info.plist -------------------------------------------------------------------------------- /AppFeedbackTests/StringUtilTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/AppFeedbackTests/StringUtilTests.m -------------------------------------------------------------------------------- /Dangerfile.hosted.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/Dangerfile.hosted.rb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/README.md -------------------------------------------------------------------------------- /SampleApp/SampleApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SampleApp/SampleApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SampleApp/SampleApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleApp/AppDelegate.swift -------------------------------------------------------------------------------- /SampleApp/SampleApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SampleApp/SampleApp/Assets.xcassets/first.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleApp/Assets.xcassets/first.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/SampleApp/Assets.xcassets/first.imageset/first.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleApp/Assets.xcassets/first.imageset/first.pdf -------------------------------------------------------------------------------- /SampleApp/SampleApp/Assets.xcassets/second.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleApp/Assets.xcassets/second.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/SampleApp/Assets.xcassets/second.imageset/second.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleApp/Assets.xcassets/second.imageset/second.pdf -------------------------------------------------------------------------------- /SampleApp/SampleApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SampleApp/SampleApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SampleApp/SampleApp/Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleApp/Bridging-Header.h -------------------------------------------------------------------------------- /SampleApp/SampleApp/FirstViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleApp/FirstViewController.swift -------------------------------------------------------------------------------- /SampleApp/SampleApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleApp/Info.plist -------------------------------------------------------------------------------- /SampleApp/SampleApp/SecondViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleApp/SecondViewController.swift -------------------------------------------------------------------------------- /SampleApp/SampleApp/ja.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SampleApp/SampleApp/ja.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleApp/ja.lproj/Main.strings -------------------------------------------------------------------------------- /SampleApp/SampleAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleAppTests/Info.plist -------------------------------------------------------------------------------- /SampleApp/SampleAppTests/iOSSDKSampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleAppTests/iOSSDKSampleTests.swift -------------------------------------------------------------------------------- /SampleApp/SampleAppUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleAppUITests/Info.plist -------------------------------------------------------------------------------- /SampleApp/SampleAppUITests/iOSSDKSampleUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/SampleApp/SampleAppUITests/iOSSDKSampleUITests.swift -------------------------------------------------------------------------------- /assets/AppFeedback_sticker.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/assets/AppFeedback_sticker.ai -------------------------------------------------------------------------------- /assets/CompilationFlags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/assets/CompilationFlags.png -------------------------------------------------------------------------------- /assets/CopyFrameworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/assets/CopyFrameworks.png -------------------------------------------------------------------------------- /assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/assets/Logo.png -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /fastlane/.gitignore: -------------------------------------------------------------------------------- 1 | /README.md 2 | /report.xml 3 | -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/fastlane/Pluginfile -------------------------------------------------------------------------------- /scripts/update-license.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoojapan/AppFeedback-ios/HEAD/scripts/update-license.rb --------------------------------------------------------------------------------