You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dan O'Neill edited this page Mar 31, 2017
·
2 revisions
Releases and Versions
Releases are a way to package and provide software. They are based on Git tags which mark a specific point in the history of the samples.
Releases
We maintain a single release which is the latest release and based on the current ArcGIS Android SDK release. We do not release as we add new samples or update existing samples mid release so the master branch will always have the most up to date samples for the current release.
Tags
When a new release is made available the previous release returns to a tag, this is to ensure that previous versions of the SDK samples are archived and available for download or a specific point to create a branch off of.
Create a new branch from an existing Tag
Get a list of tags:
$ git tag -ln
Create branch from tag:
$ git checkout -b [branchname] [tag]
Where [branchname] = the name you want to use & [tag] represents the tag you want your branch to point to.