https://github.com/testingbot/sample-app
Sample App for TestingBot Automated Mobile App Testing
https://github.com/testingbot/sample-app
appium react-native
Last synced: 5 months ago
JSON representation
Sample App for TestingBot Automated Mobile App Testing
- Host: GitHub
- URL: https://github.com/testingbot/sample-app
- Owner: testingbot
- Created: 2022-06-30T08:24:28.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-17T13:27:02.000Z (about 3 years ago)
- Last Synced: 2025-06-10T22:50:05.583Z (8 months ago)
- Topics: appium, react-native
- Language: Java
- Homepage: https://testingbot.com
- Size: 22.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TestingBot Sample App
This repository contains the source code of a mobile Sample App, in React Native.
It is a very basic calculator, taking the sum of two inputs.
This demo app is mainly used for example purposes, as seen on the [Appium Examples](https://testingbot.com/support/getting-started/appium.html)
## Build
To build an iOS simulator build, please use:
```
xcodebuild -sdk iphonesimulator -configuration Release -workspace SampleApp.xcworkspace -scheme SampleApp
```
To build an Android release:
```
./gradlew assembleRelease
```
If you want to build an IPA file, first create an archive:
```
xcodebuild -exportArchive -archivePath sampleapp.xcarchive -exportPath build -exportOptionsPlist export-options.plist
```