In this video, we will capture images with Camera using the Camera Intent. The camera will be opened after clicking the button. If an image is captured it will be set to an ImageView. We will require the following permission: 1) CAMERA 2) WRITE_EXTERNAL STORAGE So we will also handle Runtime Permission for OS Marshmallow and above. >> Watch for java VIDEO Step 1: Create a new Project or open new project Step 2: Code AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android= "http://schemas.android.com/apk/res/android" package= "com.blogspot.atifsoftwares.takepicture_kotlin" > <!--Adding Camera, Write External Storage Permission--> <uses-permission android:name= "android.permission.CAMERA" /> <uses-permission android:name= "android.permission.WRITE_EXTERNAL_STORAGE" /> <application android:allowBackup