Skip to content

Commit

Permalink
- Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
s4kibs4mi committed Oct 14, 2019
1 parent d21c894 commit b884931
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ allprojects {

```groovy
dependencies {
implementation 'ninja.sakib:KutuPicker:1.0.0'
implementation 'ninja.sakib:KutuPicker:1.0.1'
}
```

Expand Down
13 changes: 12 additions & 1 deletion kutupickerlibrary/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,13 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ninja.sakib.kutupicker" />
package="ninja.sakib.kutupicker">

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.INTERNET" />

<application>
<activity android:name=".activities.GalleryPickerActivity" />
<activity android:name=".activities.CameraPickerActivity" />
</application>
</manifest>

0 comments on commit b884931

Please sign in to comment.