Skip to content

Commit

Permalink
Merge pull request #83 from socialappslab/feature/82
Browse files Browse the repository at this point in the history
test using cordova-advanced-http plugin
  • Loading branch information
cdparra authored Nov 5, 2017
2 parents 87bcffa + 06790ef commit 2d9fc5e
Show file tree
Hide file tree
Showing 18 changed files with 1,960 additions and 1,705 deletions.
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

0 comments on commit 2d9fc5e

Please sign in to comment.