Skip to content

Instantly share code, notes, and snippets.

@root-ansh
Created June 2, 2019 23:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save root-ansh/dad72c0c0fba590ac015b9d88423e658 to your computer and use it in GitHub Desktop.
Save root-ansh/dad72c0c0fba590ac015b9d88423e658 to your computer and use it in GitHub Desktop.
Camera basics : delegating to system camera api
<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