通过 ZIP 文件安装 SDK
Installing SDK via ZIP file
请注意:虽然这个问题涉及新的和高度实验性的 ARCore SDK,但它真的只是一个基本的Android Studio 使用问题,任何厌倦战斗的 Android 开发者都应该能够回答!
Android Studio 2.3.3 在 Mac 此处。我是 Android 开发的新手,但我 fiending 想尝试新的 ARCore SDK。
在他们的 Getting Started 页面上,他们建议安装 Android Studio 2.3+(我 刚刚 做了)然后下载 ARCore SDK zip 和 "extracting it"。我这样做了,现在我的机器上有一个名为 arcore-android-sdk-master
的文件夹。但现在我想知道如何 import/hook-it-up 我的 Android Studio 安装。
打开 Android Studio 我看到一个 配置 >> SDK 管理器 选项,当我单击它时,我看到以下屏幕:
但是我在该屏幕上的任何地方都看不到导入 SDK ZIP 文件或从本地文件系统安装某些东西的选项。 有什么想法吗?
您只需在Android Studio中打开示例工程,无需将其导入为SDK。
示例项目正确链接到。库文件夹中的war(cf. build.gradle
)
当您克隆 ARCore SDK, the root directory comes with a sample project and a library folder that contains an arcore_client.aar
file, this is an Android Archive (AAR) containing the SDK. If you wish, you can extract this AAR file with 7zip to get access to the arcore_client.jar
file to import into Android Studio following this method。
但是,仅 link 到带有 gradle 项目设置的 AAR 文件会更容易。为了使用 SDK 并调用 ARCore API,您需要做的就是确保您的项目 links 到 AAR 文件。 You can set up Android Studio to run the sample by following this guide.
为 Android Studio 提供的示例项目中 build.gradle 文件的相关部分提供了对库的访问权限,如下所示:
repositories {
flatDir {
dirs './libs', '../../../libraries'
}
}
dependencies {
compile (name: 'arcore_client', ext: 'aar')
...
}
最简单快捷的入门方法是使用提供的最小示例应用程序并在其基础上构建。
请注意:虽然这个问题涉及新的和高度实验性的 ARCore SDK,但它真的只是一个基本的Android Studio 使用问题,任何厌倦战斗的 Android 开发者都应该能够回答!
Android Studio 2.3.3 在 Mac 此处。我是 Android 开发的新手,但我 fiending 想尝试新的 ARCore SDK。
在他们的 Getting Started 页面上,他们建议安装 Android Studio 2.3+(我 刚刚 做了)然后下载 ARCore SDK zip 和 "extracting it"。我这样做了,现在我的机器上有一个名为 arcore-android-sdk-master
的文件夹。但现在我想知道如何 import/hook-it-up 我的 Android Studio 安装。
打开 Android Studio 我看到一个 配置 >> SDK 管理器 选项,当我单击它时,我看到以下屏幕:
但是我在该屏幕上的任何地方都看不到导入 SDK ZIP 文件或从本地文件系统安装某些东西的选项。 有什么想法吗?
您只需在Android Studio中打开示例工程,无需将其导入为SDK。
示例项目正确链接到。库文件夹中的war(cf. build.gradle
)
当您克隆 ARCore SDK, the root directory comes with a sample project and a library folder that contains an arcore_client.aar
file, this is an Android Archive (AAR) containing the SDK. If you wish, you can extract this AAR file with 7zip to get access to the arcore_client.jar
file to import into Android Studio following this method。
但是,仅 link 到带有 gradle 项目设置的 AAR 文件会更容易。为了使用 SDK 并调用 ARCore API,您需要做的就是确保您的项目 links 到 AAR 文件。 You can set up Android Studio to run the sample by following this guide.
为 Android Studio 提供的示例项目中 build.gradle 文件的相关部分提供了对库的访问权限,如下所示:
repositories {
flatDir {
dirs './libs', '../../../libraries'
}
}
dependencies {
compile (name: 'arcore_client', ext: 'aar')
...
}
最简单快捷的入门方法是使用提供的最小示例应用程序并在其基础上构建。