Skip to content

Commit

Permalink
Fix manifest camera2 not required
Browse files Browse the repository at this point in the history
  • Loading branch information
Priyank Vasa committed Apr 11, 2019
1 parent 63eee7a commit 2adfbee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ object Config {

private const val majorVersion = 3
private const val minorVersion = 4
private const val patchVersion = 2
private const val patchVersion = 3
private const val versionClassifier = ""

val versionName: String
Expand Down
4 changes: 3 additions & 1 deletion cameraViewEx/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
<uses-feature
android:name="android.hardware.camera.autofocus"
android:required="false" />
<uses-feature android:name="android.hardware.camera2" />
<uses-feature
android:name="android.hardware.camera2"
android:required="false" />

<application>

Expand Down

0 comments on commit 2adfbee

Please sign in to comment.