Skip to content
Snippets Groups Projects
Commit 93243b20 authored by Matheus Horstmann's avatar Matheus Horstmann :horse:
Browse files

fix to compile in iOs

parent 7ec84564
No related branches found
No related tags found
No related merge requests found
...@@ -41,8 +41,11 @@ ...@@ -41,8 +41,11 @@
</platform> </platform>
<preference name="AndroidPersistentFileLocation" value="Compatibility" /> <preference name="AndroidPersistentFileLocation" value="Compatibility" />
<engine name="android" spec="6.3.0" /> <engine name="android" spec="6.3.0" />
<engine name="ios" spec="^4.5.2" />
<plugin name="cordova-sqlite-storage" spec="git+https://github.com/litehelpers/Cordova-sqlite-storage.git#storage-master" /> <plugin name="cordova-sqlite-storage" spec="git+https://github.com/litehelpers/Cordova-sqlite-storage.git#storage-master" />
<plugin name="ionic-plugin-keyboard" spec="^2.2.1" /> <plugin name="ionic-plugin-keyboard" spec="^2.2.1" />
<plugin name="phonegap-plugin-barcodescanner" spec="https://github.com/phonegap/phonegap-plugin-barcodescanner.git" /> <plugin name="phonegap-plugin-barcodescanner" spec="git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git">
<variable name="CAMERA_USAGE_DESCRIPTION" value=" " />
</plugin>
<plugin name="cordova-plugin-file" spec="^4.3.3" /> <plugin name="cordova-plugin-file" spec="^4.3.3" />
</widget> </widget>
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
"dependencies": { "dependencies": {
"android-versions": "^1.2.1", "android-versions": "^1.2.1",
"cordova-android": "6.3.0", "cordova-android": "6.3.0",
"cordova-ios": "^4.5.2",
"cordova-plugin-compat": "^1.2.0", "cordova-plugin-compat": "^1.2.0",
"cordova-plugin-file": "^4.3.3", "cordova-plugin-file": "^4.3.3",
"cordova-sqlite-storage": "git+https://github.com/litehelpers/Cordova-sqlite-storage.git#storage-master", "cordova-sqlite-storage": "git+https://github.com/litehelpers/Cordova-sqlite-storage.git#storage-master",
...@@ -35,12 +36,15 @@ ...@@ -35,12 +36,15 @@
], ],
"cordova": { "cordova": {
"platforms": [ "platforms": [
"android" "android",
"ios"
], ],
"plugins": { "plugins": {
"cordova-sqlite-storage": {}, "cordova-sqlite-storage": {},
"ionic-plugin-keyboard": {}, "ionic-plugin-keyboard": {},
"phonegap-plugin-barcodescanner": {}, "phonegap-plugin-barcodescanner": {
"CAMERA_USAGE_DESCRIPTION": " "
},
"cordova-plugin-file": {} "cordova-plugin-file": {}
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment