Skip to content

Commit 484f07c

Browse files
committed
fix camera stretch & detection; update readme;
1 parent f30cbe2 commit 484f07c

File tree

4 files changed

+113
-73
lines changed

4 files changed

+113
-73
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ cordova plugin add https://github.com/Cloudoki/ImageDetectionCordovaPlugin.git
88
```
99

1010
### Android
11-
Work in progress...
11+
#### Note
12+
The plugin aims to be used with Android API >= 16 (4.1 Jelly Bean).
1213

1314
### IOS
1415
#### Note

plugin.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,13 @@
3434
</feature>
3535
</config-file>
3636
<config-file parent="/manifest" target="AndroidManifest.xml">
37-
<uses-sdk android:minSdkVersion="15" android:targetSdkVersion="23" />
37+
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" />
3838
<uses-permission android:name="android.permission.CAMERA" />
3939
<uses-permission android:name="android.permission.INTERNET" />
4040
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
4141
<uses-permission android:name="android.permission.VIBRATE" />
42+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
43+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
4244
<uses-feature android:name="android.hardware.camera.any" />
4345
<uses-feature android:name="android.hardware.camera" android:required="true" />
4446
<uses-feature android:name="android.hardware.camera.autofocus" android:required="true" />

0 commit comments

Comments
 (0)