0

我正在使用从http://android.dronekit.io/first_app.html与 Android Studio设置的第一个应用程序。当我将它加载到我的三星 Galaxy S4 上时,它会弹出一个提示“更新 3DR 服务!| 必须更新您的 3DR 服务版本才能继续。” 我已尝试从 Google Play 卸载并重新安装。任何想法将不胜感激。

4

1 回答 1

1

您可以通过在文件中指定dronekit-android 库依赖项的版本来解决该问题,build.gradle如下所示:

compile 'com.o3dr.android:dronekit-android:2.3.11' 

默认的依赖语句,compile 'com.o3dr.android:dronekit-android:2.3.+'检索最新版本的dronekit-android 库。该版本通常处于测试阶段,并且只能用于3DR Services应用程序的测试版本。

您可以从github 发布页面dronekit-android找到哪个库版本是最新的,以及3DR Services它需要哪个版本。

于 2015-05-10T20:09:39.930 回答