Created
June 2, 2019 23:55
-
-
Save root-ansh/dad72c0c0fba590ac015b9d88423e658 to your computer and use it in GitHub Desktop.
Camera basics : delegating to system camera api
This file contains hidden or 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