manual pushing args to the app. Removed some debugging printouts

This commit is contained in:
amer cerkic 2019-02-27 15:31:23 -08:00
parent 8fff3476ec
commit 29ec5486f6
2 changed files with 3 additions and 16 deletions

View file

@ -14,14 +14,6 @@ public class InterfaceActivity extends OculusMobileActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
if(this.getIntent().hasExtra("applicationArguments")){
System.out.println("QQQ_ InterfaceActivity: args EXISTS");
System.out.println("QQQ_ "+ this.getIntent().getStringExtra("applicationArguments"));
}
else{
System.out.println("QQQ_ InterfaceActivity: NO argmument");
}
HifiUtils.upackAssets(getAssets(), getCacheDir().getAbsolutePath());
super.onCreate(savedInstanceState);
}

View file

@ -39,19 +39,14 @@ public class OculusMobileActivity extends QtActivity implements SurfaceHolder.Ca
private SurfaceHolder mSurfaceHolder;
public void onCreate(Bundle savedInstanceState) {
if(this.getIntent().hasExtra("applicationArguments")){
System.out.println("QQQ_ OculusMobileActivity has arguments");
System.out.println("QQQ_ "+ this.getIntent().getStringExtra("applicationArguments"));
if(getIntent().hasExtra("applicationArguments")){
super.APPLICATION_PARAMETERS=getIntent().getStringExtra("applicationArguments");
}
else{
System.out.println("QQQ_ OculusMobileActivity has NO arguments");
}
super.onCreate(savedInstanceState);
Log.w(TAG, "QQQ onCreate");
// Create a native surface for VR rendering (Qt GL surfaces are not suitable
// because of the lack of fine control over the surface callbacks)