【发布时间】:2015-05-05 03:39:30
【问题描述】:
我正在使用从http://android.dronekit.io/first_app.html 设置的第一个应用程序和 Android Studio。当我将它加载到我的三星 Galaxy S4 时,它会弹出一个提示“更新 3DR 服务!| 必须更新您的 3DR 服务版本才能继续。”我已尝试从 Google Play 卸载并重新安装。任何想法将不胜感激。
【问题讨论】:
我正在使用从http://android.dronekit.io/first_app.html 设置的第一个应用程序和 Android Studio。当我将它加载到我的三星 Galaxy S4 时,它会弹出一个提示“更新 3DR 服务!| 必须更新您的 3DR 服务版本才能继续。”我已尝试从 Google Play 卸载并重新安装。任何想法将不胜感激。
【问题讨论】:
您可以通过在build.gradle 文件中指定dronekit-android 库依赖项的版本来解决该问题,如下所示:
compile 'com.o3dr.android:dronekit-android:2.3.11'
默认依赖语句compile 'com.o3dr.android:dronekit-android:2.3.+' 检索最新版本的dronekit-android 库。
该版本通常处于测试阶段,只能用于3DR Services 应用的测试版本。
您可以从github release page 中了解哪个dronekit-android 库版本是最新的,以及它需要哪个版本的3DR Services。
【讨论】: