You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
timelikeswind
changed the title
Why does this demo
Why does this demo implement DJISDKManager.SDKManagerCallback twice in ConnectionActivity.java and DemoApplication.java?
May 9, 2023
public class ConnectionActivity extends Activity implements View.OnClickListener {
private void startSDKRegistration() {
DJISDKManager.getInstance().registerApp(getApplicationContext(), new DJISDKManager.SDKManagerCallback() {
}
}
}
DemoApplication.java
public class DemoApplication extends Application {
@Override
public void onCreate() {
DJISDKManager.SDKManagerCallback mDJISDKManagerCallback = new DJISDKManager.SDKManagerCallback() {
}
}
}
No description provided.
The text was updated successfully, but these errors were encountered: