Skip to content

Commit 9b048b2

Browse files
author
Alex Cohn
committed
be more accurate re: supported devices
1 parent 1f204c2 commit 9b048b2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

app/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ android {
77
defaultConfig {
88
applicationId 'org.freedesktop.nativecamera2'
99
minSdkVersion 23
10+
maxSdkVersion 23
1011
targetSdkVersion 21
11-
versionCode 1
12+
versionCode 2
1213

1314
externalNativeBuild {
1415
ndkBuild {

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="org.freedesktop.nativecamera2">
4-
<uses-feature android:name="android.hardware.camera2.full" />
5-
<uses-feature android:glEsVersion="0x00020000" />
4+
<uses-feature android:name="android.hardware.camera2.full" android:required="false" />
5+
<uses-feature android:glEsVersion="0x00020000" android:required="false" />
66
<uses-permission android:name="android.permission.CAMERA" />
77
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
88
<application

0 commit comments

Comments
 (0)