├── .azure-pipelines.yml ├── .eslintignore ├── .eslintrc ├── .github └── dependabot.yml ├── .gitignore ├── .npmrc ├── Default-568h@2x.png ├── LICENSE ├── README.md ├── Test App 2 ├── GestureTestViewController.h ├── GestureTestViewController.m ├── GestureTestViewController.xib ├── MyViewControllerViewController.h ├── MyViewControllerViewController.m ├── TA2AppDelegate.h ├── TA2AppDelegate.m ├── TestApp-Info.plist ├── TestApp-Prefix.pch ├── en.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ └── MyViewControllerViewController.xib └── main.m ├── TestApp.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── gulpfile.js ├── index.js └── package.json /.azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/.azure-pipelines.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build-js 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/Default-568h@2x.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/README.md -------------------------------------------------------------------------------- /Test App 2/GestureTestViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/Test App 2/GestureTestViewController.h -------------------------------------------------------------------------------- /Test App 2/GestureTestViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/Test App 2/GestureTestViewController.m -------------------------------------------------------------------------------- /Test App 2/GestureTestViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/Test App 2/GestureTestViewController.xib -------------------------------------------------------------------------------- /Test App 2/MyViewControllerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/Test App 2/MyViewControllerViewController.h -------------------------------------------------------------------------------- /Test App 2/MyViewControllerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/Test App 2/MyViewControllerViewController.m -------------------------------------------------------------------------------- /Test App 2/TA2AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/Test App 2/TA2AppDelegate.h -------------------------------------------------------------------------------- /Test App 2/TA2AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/Test App 2/TA2AppDelegate.m -------------------------------------------------------------------------------- /Test App 2/TestApp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/Test App 2/TestApp-Info.plist -------------------------------------------------------------------------------- /Test App 2/TestApp-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/Test App 2/TestApp-Prefix.pch -------------------------------------------------------------------------------- /Test App 2/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/Test App 2/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Test App 2/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/Test App 2/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Test App 2/en.lproj/MyViewControllerViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/Test App 2/en.lproj/MyViewControllerViewController.xib -------------------------------------------------------------------------------- /Test App 2/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/Test App 2/main.m -------------------------------------------------------------------------------- /TestApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/TestApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TestApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/TestApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appium/ios-test-app/HEAD/package.json --------------------------------------------------------------------------------