Possible Ground SDK 7.3 > Setup Ground SDK AAR documentation typo

There might be a typo in the Ground SDK 7.3 > Setup Ground SDK AAR documentation, i.e.
https://developer.parrot.com/docs/groundsdk-android/setupaar.html#setup-ground-sdk-aar

where

dependencies {
// Add Ground SDK dependencies
implementation ‘com.parrot.drone.groundsdk:groundsdk:7.3’
runtimeOnly ‘com.parrot.drone.groundsdk:arsdkengine:7.3’
}

might need to be

dependencies {
// Add Ground SDK dependencies
implementation ‘com.parrot.drone.groundsdk:groundsdk:7.3.0’
runtimeOnly ‘com.parrot.drone.groundsdk:arsdkengine:7.3.0’
}

with the version patch number “.0” included

or
dependencies {
// Add Ground SDK dependencies
implementation ‘com.parrot.drone.groundsdk:groundsdk:7.3.+’
runtimeOnly ‘com.parrot.drone.groundsdk:arsdkengine:7.3.+’
}

with the version patch number set to “.+”

This topic was automatically closed after 30 days. New replies are no longer allowed.