Updated ML integration to MLSDK 0.19

#CodeReview: ryan.vance
#RB: ryan.vance

[CL 4636504 by Jason Bestimt in Dev-VR branch]
This commit is contained in:
Jason Bestimt
2018-12-06 10:11:06 -05:00
parent 827396179e
commit ad9d5e5189
147 changed files with 10824 additions and 3993 deletions

View File

@@ -310,8 +310,9 @@ private:
}
else
{
// grab the Android version
const FString AndroidVersionCommand = FString::Printf(TEXT("-s %s %s ro.build.version.release"), *NewDeviceInfo.SerialNumber, *GetPropCommand);
// grab the Lumin/Android version
const FString AndroidVersionCommand = bForLumin ? FString::Printf(TEXT("%s ro.build.id"), *GetPropCommand) :
FString::Printf(TEXT("-s %s %s ro.build.version.release"), *NewDeviceInfo.SerialNumber, *GetPropCommand);
if (!ExecuteAdbCommand(*AndroidVersionCommand, &NewDeviceInfo.HumanAndroidVersion, nullptr))
{
continue;