-
Notifications
You must be signed in to change notification settings - Fork 1.2k
dev instructions
The ArcGIS Android SDK Samples are Gradle based Android projects which can be directly cloned and imported into Android Studio.
If you haven't already, fork the this repo.
Once you have forked the repo, you need to create a local copy, or clone. You can do this directly in Android Studio, from a terminal prompt, or a GUI Client.
Clone the ArcGIS Android SDK Samples in Android Studio:
- Choose VCS > Checkout from Version Control > GitHub on the main menu.
- From the Repository drop-down list, select the source repository to clone the data from.
- In the Folder text box, specify the directory where the local repository for cloned sources will be set up.
- Click the Clone button to start cloning the sources from the specified remote repository.
Clone the ArcGIS Android SDK Samples
Open your terminal, navigate to your working directory, use git clone
to get a copy of the repo.
# Clones your fork of the repository into the current directory in terminal
$ git clone https://github.com/YOUR-USERNAME/arcgis-runtime-samples-android.git
To sync changes you make in a fork with this repository, you must configure a remote that points to the upstream repository in Git.
- Open a terminal or command prompt
- List the current configured remote repository for your fork
$ git remote -v
origin https://github.com/YOUR_USERNAME/arcgis-runtime-samples-android.git (fetch)
origin https://github.com/YOUR_USERNAME/arcgis-runtime-samples-android.git (push)
- Specify a new remote upstream repository
$ git remote add upstream https://github.com/Esri/arcgis-runtime-samples-android.git
- Verify the new upstream repository
$ git remote -v
origin https://github.com/YOUR_USERNAME/arcgis-runtime-samples-android.git (fetch)
origin https://github.com/YOUR_USERNAME/arcgis-runtime-samples-android.git (push)
upstream https://github.com/Esri/arcgis-runtime-samples-android.git (fetch)
upstream https://github.com/Esri/arcgis-runtime-samples-android.git (push)
Once you have set up a remote upstream you can keep your fork up to date with our samples repository by syncing your fork.
- Open a terminal or command prompt
- Change to the current working directory of your local repository
- Fetch the branches and commits from the upstream repository. Commits to
master
will be stored in a local branch,upstream/master
.
$ git fetch upstream
- Check out your forks local
master
branch
$ git checkout master
- Merge changes from
upstream/master
into your localmaster
branch which syncs your forksmaster
branch with our samples repository.
$ git merge upstream/master
Once the project is cloned to disk you can import into Android Studio:
- From the toolbar select File > Import Project, or Import Non-Android Studio project from the Welcome Quick Start.
- Navigate to arcgis-runtime-samples-android/java or arcgis-runtime-samples-android/kotlin project folder, directory and click OK
The latest ArcGIS Android SDK compile dependency is defined for all sample modules in the root project build.gradle. This is the only place where you need to define the dependency to the ArcGIS Android SDK.
subprojects{
afterEvaluate {project ->
if(project.hasProperty("dependencies")){
dependencies {
compile 'com.esri.arcgisruntime:arcgis-android:100.11.0'
}
}
}
}
Our SDK is hosted in our public maven repository hosted by JFrog. Our repository url is added to the projects root build.gradle file.
repositories {
mavenCentral()
maven {
url 'https://esri.jfrog.io/artifactory/arcgis'
}
}
You should now be able to run any of the included samples. We will use the display-map
sample as an example.
- Select
display-map
from the Select Run/Debug Configuration drop down - Click the Run button
- Q: Gradle complains about
SdkPlatformNotFoundException
?- A: Check if your Android SDK version is the same as in the prerequisites section.
- Q: Unable to find System Image in Emulator in Android Studio with Google APIs?
- A: Please download the simulator in AVD Manager.