Skip to content

Commit

Permalink
Fix undefined finally callback in promises
Browse files Browse the repository at this point in the history
refs #89

Signed-off-by: Jorge Ramírez <jorgeramirez1990@gmail.com>
  • Loading branch information
jorgeramirez committed Nov 10, 2017
1 parent 0c9ad21 commit a89173a
Show file tree
Hide file tree
Showing 10 changed files with 1,024 additions and 813 deletions.
8 changes: 4 additions & 4 deletions config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@
<allow-navigation href="*" />
<engine name="android" spec="6.3.0" />
<engine name="ios" spec="~4.3.1" />
<plugin name="cordova-plugin-advanced-http" spec="^1.7.1" />
<plugin name="cordova-plugin-camera" spec="^2.4.1">
<variable name="CAMERA_USAGE_DESCRIPTION" value="DengueChat needs access to your camera for you to take photos within the app" />
<variable name="PHOTOLIBRARY_USAGE_DESCRIPTION" value="DengueChat needs access to your camera for you to take photos within the app" />
Expand All @@ -96,6 +95,10 @@
<variable name="XWALK_MODE" value="embedded" />
<variable name="XWALK_MULTIPLEAPK" value="true" />
</plugin>
<plugin name="cordova-plugin-sqlite-2" spec="^1.0.4" />
<plugin name="cordova-plugin-whitelist" spec="^1.3.2" />
<plugin name="cordova-plugin-sslcertificatechecker" spec="^5.1.0" />
<plugin name="cordova-plugin-advanced-http" spec="^1.7.1" />
<plugin name="cordova-plugin-mauron85-background-geolocation" spec="^2.3.1">
<variable name="ICON" value="@mipmap/icon" />
<variable name="SMALL_ICON" value="@mipmap/icon" />
Expand All @@ -105,7 +108,4 @@
<variable name="CONTENT_AUTHORITY" value="$PACKAGE_NAME" />
<variable name="ALWAYS_USAGE_DESCRIPTION" value="This app requires background location tracking" />
</plugin>
<plugin name="cordova-plugin-sqlite-2" spec="^1.0.4" />
<plugin name="cordova-plugin-sslcertificatechecker" spec="^5.1.0" />
<plugin name="cordova-plugin-whitelist" spec="^1.3.2" />
</widget>
166 changes: 83 additions & 83 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,89 +1,89 @@
{
"name": "ionic-project",
"version": "1.1.1",
"description": "An Ionic project",
"dependencies": {
"cordova-android": "6.3.0",
"cordova-ios": "~4.3.1",
"cordova-plugin-advanced-http": "^1.7.1",
"cordova-plugin-camera": "^2.4.1",
"cordova-plugin-compat": "^1.2.0",
"cordova-plugin-crosswalk-certificate": "^2.0.1",
"cordova-plugin-crosswalk-webview": "^2.3.0",
"cordova-plugin-file": "^4.3.3",
"cordova-plugin-mauron85-background-geolocation": "^2.3.1",
"cordova-plugin-sqlite-2": "^1.0.4",
"cordova-plugin-sslcertificatechecker": "^5.1.0",
"cordova-plugin-whitelist": "^1.3.2",
"gulp": "^3.5.6",
"gulp-concat": "^2.2.0",
"gulp-minify-css": "^0.3.0",
"gulp-rename": "^1.2.0",
"gulp-sass": "^3.0.0"
"name": "ionic-project",
"version": "1.1.1",
"description": "An Ionic project",
"dependencies": {
"cordova-android": "6.3.0",
"cordova-ios": "~4.3.1",
"cordova-plugin-advanced-http": "^1.7.1",
"cordova-plugin-camera": "^2.4.1",
"cordova-plugin-compat": "^1.2.0",
"cordova-plugin-crosswalk-certificate": "^2.0.1",
"cordova-plugin-crosswalk-webview": "^2.3.0",
"cordova-plugin-file": "^4.3.3",
"cordova-plugin-mauron85-background-geolocation": "^2.3.1",
"cordova-plugin-sqlite-2": "^1.0.4",
"cordova-plugin-sslcertificatechecker": "^5.1.0",
"cordova-plugin-whitelist": "^1.3.2",
"gulp": "^3.5.6",
"gulp-concat": "^2.2.0",
"gulp-minify-css": "^0.3.0",
"gulp-rename": "^1.2.0",
"gulp-sass": "^3.0.0"
},
"devDependencies": {
"bower": "^1.3.3",
"gulp-preprocess": "^2.0.0",
"gulp-util": "^2.2.14",
"shelljs": "^0.3.0"
},
"cordovaPlugins": [
"cordova-plugin-device",
"cordova-plugin-console",
"cordova-plugin-whitelist",
"cordova-plugin-splashscreen",
"cordova-plugin-statusbar",
"ionic-plugin-keyboard",
"cordova-plugin-dialogs",
"cordova-plugin-camera@2.4.1",
{
"variables": {
"XWALK_VERSION": "23+"
},
"locator": "cordova-plugin-crosswalk-webview",
"id": "cordova-plugin-camera"
},
"devDependencies": {
"bower": "^1.3.3",
"gulp-preprocess": "^2.0.0",
"gulp-util": "^2.2.14",
"shelljs": "^0.3.0"
"cordova-plugin-crosswalk-certificate"
],
"cordovaPlatforms": [
{
"platform": "android",
"version": "6.1.0",
"locator": "android@6.1.0"
},
"cordovaPlugins": [
"cordova-plugin-device",
"cordova-plugin-console",
"cordova-plugin-whitelist",
"cordova-plugin-splashscreen",
"cordova-plugin-statusbar",
"ionic-plugin-keyboard",
"cordova-plugin-dialogs",
"cordova-plugin-camera@2.4.1",
{
"variables": {
"XWALK_VERSION": "23+"
},
"locator": "cordova-plugin-crosswalk-webview",
"id": "cordova-plugin-camera"
},
"cordova-plugin-crosswalk-certificate"
"ios"
],
"cordova": {
"platforms": [
"android",
"ios"
],
"cordovaPlatforms": [
{
"platform": "android",
"version": "6.1.0",
"locator": "android@6.1.0"
},
"ios"
],
"cordova": {
"platforms": [
"android",
"ios"
],
"plugins": {
"cordova-plugin-camera": {
"CAMERA_USAGE_DESCRIPTION": "DengueChat needs access to your camera for you to take photos within the app",
"PHOTOLIBRARY_USAGE_DESCRIPTION": "DengueChat needs access to your camera for you to take photos within the app"
},
"cordova-plugin-crosswalk-certificate": {},
"cordova-plugin-crosswalk-webview": {
"XWALK_VERSION": "23+",
"XWALK_LITEVERSION": "xwalk_core_library_canary:17+",
"XWALK_COMMANDLINE": "--disable-pull-to-refresh-effect",
"XWALK_MODE": "embedded",
"XWALK_MULTIPLEAPK": "true"
},
"cordova-plugin-sqlite-2": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-sslcertificatechecker": {},
"cordova-plugin-advanced-http": {},
"cordova-plugin-mauron85-background-geolocation": {
"ICON": "@mipmap/icon",
"SMALL_ICON": "@mipmap/icon",
"ACCOUNT_NAME": "@string/app_name",
"ACCOUNT_LABEL": "@string/app_name",
"ACCOUNT_TYPE": "$PACKAGE_NAME.account",
"CONTENT_AUTHORITY": "$PACKAGE_NAME",
"ALWAYS_USAGE_DESCRIPTION": "This app requires background location tracking"
}
}
"plugins": {
"cordova-plugin-camera": {
"CAMERA_USAGE_DESCRIPTION": "DengueChat needs access to your camera for you to take photos within the app",
"PHOTOLIBRARY_USAGE_DESCRIPTION": "DengueChat needs access to your camera for you to take photos within the app"
},
"cordova-plugin-crosswalk-certificate": {},
"cordova-plugin-crosswalk-webview": {
"XWALK_VERSION": "23+",
"XWALK_LITEVERSION": "xwalk_core_library_canary:17+",
"XWALK_COMMANDLINE": "--disable-pull-to-refresh-effect",
"XWALK_MODE": "embedded",
"XWALK_MULTIPLEAPK": "true"
},
"cordova-plugin-sqlite-2": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-sslcertificatechecker": {},
"cordova-plugin-advanced-http": {},
"cordova-plugin-mauron85-background-geolocation": {
"ICON": "@mipmap/icon",
"SMALL_ICON": "@mipmap/icon",
"ACCOUNT_NAME": "@string/app_name",
"ACCOUNT_LABEL": "@string/app_name",
"ACCOUNT_TYPE": "$PACKAGE_NAME.account",
"CONTENT_AUTHORITY": "$PACKAGE_NAME",
"ALWAYS_USAGE_DESCRIPTION": "This app requires background location tracking"
}
}
}
}
Loading

0 comments on commit a89173a

Please sign in to comment.