Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Also fix broken tests.

Change-Id: I9d50202b912fe14a930ff2f4afbda2ffacdd812d
  • Loading branch information
yaraki committed May 30, 2016
1 parent 3e23db8 commit 6befea4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ ext {
compileSdkVersion = 23
minSdkVersion = 14
targetSdkVersion = 23
supportLibraryVersion = '23.3.0'
supportLibraryVersion = '23.4.0'
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,12 @@ protected void onCreate(Bundle savedInstanceState) {
@Override
protected void onResume() {
super.onResume();
mCameraView.onResume();
mCameraView.startPreview();
mCameraView.start();
}

@Override
protected void onPause() {
mCameraView.stopPreview();
mCameraView.onPause();
mCameraView.stop();
super.onPause();
}

Expand Down

0 comments on commit 6befea4

Please sign in to comment.