I am able to reproduce the issue with Android Playground App by adding a MainActivity (modifying the AndroidManifest.xml) which call the PlaygroundActivity (by a clicked button)
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final Button button1 = findViewById(R.id.button1);
button1.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent intent = new Intent(MainActivity.this, PlaygroundActivity.class);
startActivity(intent);
}
});
}
}
MainActivity is running → click on the button → PlaygroundActivity is running → press back button → MainActivity is running → click on the button → app crash with the following callstack:
2021-09-03 12:24:54.512 5711-6208/com.android.babylonnative.playground E/native: E0903 12:24:54.512093 6208 motion_stereo_manager.cc:1233] Failed to compute ML depth: INVALID_ARGUMENT: Not enough camera landmark priors to estimate scale and shift.
=== Source Location Trace: ===
third_party/arcore/ar/scene_perception/utils/scale_shift_ransac.cc:195
vr/perception/depth/projects/motion_stereo/ml/ml_depth_provider_utils.cc:139
vr/perception/depth/projects/motion_stereo/ml/mannequin_depth_provider.cc:155
vr/perception/depth/projects/motion_stereo/manager/motion_stereo_manager.cc:1341
Does anyone have an idea?
Thanks for the great BabylonNative job !!
I don’t think so. My guess is something should have been uninitialized (GL context?) from a window in Xr component and is obviously not. I need to find what
It looks like it might not be possible to change the native window with XR while it’s running. I’ll get the confirmation beginning of next week.
I’ve got 1 question for you. Playground activity is not destroyed when getting back to mainActivity (finalize is not called). I guess Android may destroy it later? I think, destroying the playgroundActivity(and its view) when getting back to main will fix the issue.
I have already tried to force the Android views/activity destruction but the GC is not always agree with this idea .
I going to make other additional tests to force the finalize .
We keep in touch if we have more info !
Thank you for your help !
I got confirmation window should not change when XR is working. To prevent that, playgroundActivity must be finalized or its view must be destroyed when getting back to mainActivity.
I definitely can’t find a clean way to stop/release the AR camera (the app crashes into arsession) … maybe I have to find to keep the activity alive (like on iOS …), what do you think ?
Hi there,
I have tried working on my problem again for last few days without finding any solutions.
Not being able to close the ArCamera in an Activity and restart it afterwards is a very blocking issue for us.
I would really appreciate any solutions, advices on it (I will obviously be delighted to contribute if I found solution…)
The only thing I see for now if to try to detect when getting back to main activity and destroy engine.
This means it will take some time when going from mainActivity to the playgroundActivity.
Are you planning to do the same with iOS?
The android lifecycle seems to be hard to “override” (the finalize function is called by the GC and it cannot be forced : “In general it’s best not to rely on finalize() to do any cleaning up etc.” ref), so, I don’t reaaly how to destroy the engine.
I already have the same thing for iOS: the lifecycle is more compliant (there is no automatic GC and the UIViewController are not destroyed)
I have also tried that (but I hope I did it wrong), you are talking about SurfaceView
(primarySurfaceView, xrSurfaceView) ?
Actually, it seems to work when Xr mode is disabled, it would seem there is a problem when the camera is enabled and the camera is attached to the SurfaceView (linked to the g_graphics which is linked to the ANativeWindow which is linked to the xrSurfaceView by the SurfaceHolder … hoping my stack is correct …).
I will give it another try on that (keeping this SurfaceView) hoping the finalize function won’t never called
engine supports having a new view at any time. but XR, by design doesn’t. And at some point, it tries to make current an opengl context to a view that doesn’t exist anymore. hence the crash.
Which makes me thinks: activity.onDestroy is called when getting back to mainActivity. Why evaluating a script that stops XR when it happens?