From 2373f2a0730a073eefe0797d4dc07c6145dbbe69 Mon Sep 17 00:00:00 2001 From: n8fr8 Date: Wed, 17 Jan 2018 09:38:46 -0500 Subject: [PATCH] add camera sensitivity config to onboarding --- src/main/java/org/havenapp/main/ui/PPAppIntro.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/havenapp/main/ui/PPAppIntro.java b/src/main/java/org/havenapp/main/ui/PPAppIntro.java index 8f1bfaea..a89df5ea 100644 --- a/src/main/java/org/havenapp/main/ui/PPAppIntro.java +++ b/src/main/java/org/havenapp/main/ui/PPAppIntro.java @@ -46,8 +46,9 @@ protected void onCreate(Bundle savedInstanceState) { cs2.showButton(getString(R.string.action_configure), new View.OnClickListener() { @Override public void onClick(View v) { - startActivity(new Intent(PPAppIntro.this,MicrophoneConfigureActivity.class)); startActivity(new Intent(PPAppIntro.this,AccelConfigureActivity.class)); + startActivity(new Intent(PPAppIntro.this,MicrophoneConfigureActivity.class)); + startActivity(new Intent(PPAppIntro.this,CameraConfigureActivity.class)); } });