Open eyalmnm opened 4 years ago
Agent comment from Lisa Fedane in Zendesk ticket #37881:
The Android device needs to met the following requirements listed in this forum: https://forum.dji.com/forum.php?mod=viewthread&tid=217861
You are obviously using an Android OS version that should work, so you should find out if the SamSung SM-T725 processor is running architecture x86 and if it is, then the device is not compatible with our SDK.
Here are some tips on how to find out:
How to find ARM processor version on android device? https://stackoverflow.com/questions/6630386/how-to-find-arm-processor-version-on-android-device/6630402#6630402 How to Find Your Android Device’s Info for Correct APK Downloads: https://www.howtogeek.com/339665/how-to-find-your-android-devices-info-for-correct-apk-downloads/#:~:text=For%20the%20Android%20version%2C%20look,entries%20under%20the%20Processor%20tab.
Lisa Fedane DJI Developer Support, US
Join DJI's Developer Community in our new Forum for Technical Discussions, Announcements and More: https://forum.dji.com/forum-139-1.html?from=developer
When trying to run my app on SamSung SM-T725 i got an error, ClassNotFoundError DJISDKManager.SDKMAnagerCallback. The same app is running perfectly on Xiaomi MI 5s device (Android 8), but it failed on Samsung SM-T725 (Android 9) My App configuration is
`apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions'
android { compileSdkVersion 29
}
dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}`