The "Remember the Date" demo app demonstrates how to use the Zendesk Mobile SDK to build native support into your mobile application.
- Create/Submit a Zendesk ticket request
- View an existing Zendesk ticket request
- Access and search your Zendesk Help Center Self Service content
- Accessing the Zendesk "Rate my app" feature
Please submit bug reports to Zendesk. Pull requests are welcome.
By downloading or using the Zendesk Mobile SDK, You agree to the Zendesk Master Subscription Agreement https://www.zendesk.com/company/customers-partners/#master-subscription-agreement and Application Developer and API License Agreement https://www.zendesk.com/company/customers-partners/#application-developer-api-license-agreement and acknowledge that such terms govern Your use of and access to the Mobile SDK.
When you tag a build it will be released automatically. When you are happy with the codebase you can make a tag and push it to GitHub. You will need to know the commit sha that you want to tag and the version number you want to tag it as.
The commit sha will usually be the latest state of master. You can go to the master branch and copy the commit sha as shown here.
In this example we will be releasing version 1.2.1. Please update the 1.2.1 below with the actual version that you are releasing.
git fetch
git tag -a "v1.2.1" <commit sha> -m "Release v1.2.1"
git push origin --tags
After you push the tag a build will be started on the continuous integration server. You can check the status of the build, which should take less than 10 minutes.
When the build is finished the debug and release builds of the app will be published to the releases section of the repository. app-debug.apk
is a debug build that can be used for testing. app-release.apk
is a signed release build that should be preferred.