-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix undefined finally callback in promises
refs #89 Signed-off-by: Jorge Ramírez <jorgeramirez1990@gmail.com>
- Loading branch information
1 parent
0c9ad21
commit a89173a
Showing
10 changed files
with
1,024 additions
and
813 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.