Created
June 2, 2019 23:55
Camera basics : delegating to system camera api
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="z.y.x.camera"> | |
<uses-feature | |
android:name="android.hardware.camera.any" | |
android:required="true" /> | |
... | |
<application | |
android:allowBackup="true" | |
android:icon="@mipmap/ic_launcher" ...> | |
... | |
</application> | |
</manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment