Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test using cordova-advanced-http plugin #83

Merged
merged 7 commits into from
Nov 5, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Specifies intentionally untracked files to ignore when using Git
# http://git-scm.com/docs/gitignore

.gradle
.idea
node_modules/
platforms/
plugins/
Expand Down
22 changes: 12 additions & 10 deletions config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,6 @@
<splash density="port-xxxhdpi" src="resources/android/splash/drawable-port-xxxhdpi-screen.png" />
</platform>
<icon src="resources/android/icon/drawable-xhdpi-icon.png" />
<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" />
</plugin>
<engine name="android" spec="~6.1.0" />
<engine name="ios" spec="~4.3.1" />
<plugin name="cordova-plugin-sqlite-2" spec="~1.0.4" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
Expand All @@ -88,13 +81,22 @@
<allow-navigation href="https://*/*" />
<allow-navigation href="data:*" />
<allow-navigation href="*" />
<plugin name="cordova-plugin-crosswalk-certificate" spec="~2.0.1" />
<plugin name="cordova-plugin-whitelist" spec="^1.3.2" />
<engine name="ios" spec="~4.3.1" />
<engine name="android" spec="6.3.0" />
<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" />
</plugin>
<plugin name="cordova-plugin-crosswalk-certificate" spec="^2.0.1" />
<plugin name="cordova-plugin-crosswalk-webview" spec="^2.3.0">
<variable name="XWALK_VERSION" value="18+" />
<variable name="XWALK_VERSION" value="23+" />
<variable name="XWALK_LITEVERSION" value="xwalk_core_library_canary:17+" />
<variable name="XWALK_COMMANDLINE" value="--disable-pull-to-refresh-effect" />
<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" />
</widget>
4 changes: 2 additions & 2 deletions environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ denguechat.env = {
debug: false
// @endif
// @if ENV == 'PRODUCTION'
baseURL: "https://www.denguechat.com/api/v0/",
mainURL: "https://www.denguechat.com/",
baseURL: "https://www.denguechat.org/api/v0/",
mainURL: "https://www.denguechat.org/",
debug: false
// @endif
}
Loading