Android Studio中添加使用arcgis sdk



In Eclipse you have the concept of a workspace which can consist of multiple projects linked or unlinked.  In Android Studio, projects are replaced by App Modules and Libary Modules.  Modules are a discrete unit of functionality that can be run, tested, and debugged independently.  Modules are somewhat similar to an Eclipse project with a few key differences:

  • Each module has it’s own Gradle build file
  • Some modules can be Library Modules which are conceptually the same as Libary Projects in Eclipse.

Including Jar lib dependencies
Local jar files go in the libs folder at the root of your module directory.  In Android Studio you need to add the jars as a gradle dependency.  This should be added to your gradle build file as follows:

1
2
3
4
dependencies {
compile fileTree( dir : 'libs' , include: [ '*.jar' ])
 
}

The code above adds all the *.jar files from the modules libs directory as dependencies.

Including pre-built Native .so libs
Local pre-built native libs go in the jniLibs folder in your modules/src/main/ folder.  There is no need to add a gradle dependency when using this folder.  Native libs outside this folder would require a gradle dependency.

Manifest changes
Several common items and settings which in Eclipse are in the Android Manifest have either automatically added, e.g:allowBackup=true or have been moved to build.gradle such as version codes andminSdkVersion,targetSdkVersion, etc.  Feature and permission requirements are still declared in the manifest.

Integrate ArcGIS Android SDK

In this section we will step through the process of creating a new Android Studio project and integrate the ArcGIS Android SDK in the app module.

Create a new Android Studio Project

  • Open up Android Studio and choose New Project under Quick Start
  • Choose and Application name and Module name.  These can be the same in this example.  We will useHello World for both.
  • Choose a Package name, e.g. com.arcgis.android.sample.maps.helloworld.
  • Set the Minimum required SDK to API 15: Android 4.0.3 (IceCreamSandwich)
  • Keep the defaults for the rest and click Next.
  • Continue to accept the defaults in the remaining windows by clicking Next and complete the wizard.
  • Your project should open up.

Update the Projects Gradle build

As we stated earlier, each module has it’s own gradle build file.  This include the project as well.  In this step we want to ensure that your project is using the latest Gradle plugin. Gradle plugins are on a different release cycle then Android Studio so you may have to manually update until Android Studio directly supports the latest version of Gradle plugin.

  • Double click on your projects build.gradle file to open it in the editor. This will be the one at the project root directory, not in your app module directory.
  • Ensure that under dependencies you have the following classpath
7
8
9
dependencies {
         classpath 'com.android.tools.build:gradle:0.10.+'
     }
  • Click the Sync Project with Gradle Files button from the toolbar.

Gradle Plugin v0.10.0 is the latest version of the Gradle Plugin at the time of the writing so the version will change as more releases come out.

Update App Module Manifest

The Android.manifest file is now located in the /src/main/ directory of your app module.

  • Double click the manifest file to open it.
  • Add the following to your manifest above the <application> element:
5
6
7
8
9
10
11
< uses-permission android:name = "android.permission.INTERNET" />
< uses-permission android:name = "android.permission.WRITE_EXTERNAL_STORAGE" />
< uses-permission android:name = "android.permission.ACCESS_FINE_LOCATION" />
 
< uses-feature
     android:glEsVersion = "0x00020000"
     android:required = "true" />

Add ArcGIS Android dependent libraries

The ArcGIS Android dependent libraries are available in the ArcGIS Runtime SDK for Androidlibs folder.  You will be coping files from this directory into your app module directory in your project.

  • Copy all the jar files from your [sdk-install-dir]/libs folder into your projectsHelloWorld/HelloWorld/libs directory.
  • Create a HelloWorld/HelloWorld/src/main/jniLibs folder in your project.
  • Copy the native processor directory containing the libruntimecore_java.so pre-built native library to thejniLibs folder created in the previous step.

Below is a image representing an Android Studio project with module including android sdk jars and native libs.  Note we are only including on native processor directory into jniLibs.

Gradle project structure in Android Studio

Update the App Module Gradle Build

  • Double click on your applications build.gradle file to open it in the editor. This will be the file at the root of your app modules directory.
  • Add the following exclusions above buildTypes
14
15
16
17
18
packagingOptions{
     exclude 'META-INF/LGPL2.1'
     exclude 'META-INF/LICENSE'
     exclude 'META-INF/NOTICE'
}
  • Click the Sync Project with Gradle Files button from the toolbar.

过程比较简单,不翻译了

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值