File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
src/main/java/ru/coolsoft/p2pcamera Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ This project is an attempt to create a peer-to-peer video monitoring system for
1919- [ ] Create app icons
2020- [ ] Add string localizations
2121- [ ] Remaster enums via ` @IntDef ` or static ` byte ` ->value maps
22- - [ ] Refactor ` Message ` acquisition via ` obtain() `
22+ - [x ] Refactor ` Message ` acquisition via ` obtain() `
2323- [ ] Secure transport layer
2424- [ ] Create unit tests
2525- [ ] Client: control frame rotation
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ android {
1111 minSdkVersion 22
1212 targetSdkVersion 32
1313 versionCode 1
14- versionName " 1.0"
14+ versionName " 0. 1.0"
1515
1616 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
1717 }
Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ private void initCamera() {
305305 mCameras [id ] = new CameraService (cameraID );
306306 }
307307 } catch (CameraAccessException e ) {
308- Log .e (LOG_TAG , e . getMessage () );
308+ Log .e (LOG_TAG , "Camera initialization error" , e );
309309 e .printStackTrace ();
310310 }
311311 }
@@ -622,7 +622,7 @@ public void openCamera() {
622622 mCameraManager .openCamera (mCameraID , mCameraCallback , mBackgroundHandler );
623623 }
624624 } catch (CameraAccessException e ) {
625- Log .i (LOG_TAG , e . getMessage () );
625+ Log .i (LOG_TAG , "Error opening camera" , e );
626626 }
627627 }
628628
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ android {
1111 minSdkVersion 22
1212 targetSdkVersion 32
1313 versionCode 1
14- versionName " 1.0"
14+ versionName " 0. 1.0"
1515
1616 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
1717 }
You can’t perform that action at this time.
0 commit comments