Skip to content

Commit

Permalink
Add expansion support (#1)
Browse files Browse the repository at this point in the history
* Add expansion file support

* Added privacy policy

* Updated app icon

* Updated target SDK version
  • Loading branch information
Shailin authored May 31, 2019
1 parent 576c8e2 commit 117f508
Show file tree
Hide file tree
Showing 258 changed files with 37,983 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# ignore plugin Git clones
/plugins

# Mac
.DS_Store
.AppleDouble
.LSOverride
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
.AppleDB
.AppleDesktop
.apdisk

# Windows
ehthumbs.db
ehthumbs_vista.db
*.stackdump
[Dd]esktop.ini
$RECYCLE.BIN/
*.lnk

# iOS Platform
platforms/ios/build/
platforms/ios/www/
platforms/ios/cordova/console.log
*.xcuserdatad

# Android Platform
platforms/android/.gradle
platforms/android/build
platforms/android/assets/www
platforms/android/local.properties
platforms/android/CordovaLib/build
platforms/android/CordovaLib/gen
platforms/android/CordovaLib/local.properties

# wp8
platforms/wp8/bin
platforms/wp8/obj
platforms/wp8/www
platforms/wp8/.staging
platforms/wp8/*.suo
platforms/wp8/*.csproj.user

# Windows Universal App (Windows Platform)
platforms/windows/build
platforms/windows/www
platforms/windows/AppPackages

# Browser
platforms/browser/www

# res
resources/signing
www

# Remove keystore file
platforms/maqpublisher.keystore
Binary file added CCI-Privacy-Policy.pdf
Binary file not shown.
34 changes: 34 additions & 0 deletions config.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.maq.xprize.cci.hindi" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>CCI</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<content src="file:///storage/emulated/0/Android/data/com.maq.xprize.CCI.hindi/files/www/index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<platform name="android">
<splash density="land-hdpi" src="res/load_final.png" />
<splash density="land-ldpi" src="res/load_final.png" />
<splash density="land-mdpi" src="res/load_final.png" />
<splash density="land-xhdpi" src="res/load_final.png" />
<splash density="port-hdpi" src="res/load_final.png" />
<splash density="port-ldpi" src="res/load_final.png" />
<splash density="port-mdpi" src="res/load_final.png" />
<splash density="port-xhdpi" src="res/load_final.png" />
<allow-intent href="market:*" />
</platform>
</widget>
23 changes: 23 additions & 0 deletions hooks/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!--
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
-->
# Cordova Hooks

Cordova Hooks represent special scripts which could be added by application and plugin developers or even by your own build system to customize cordova commands. See Hooks Guide for more details: http://cordova.apache.org/docs/en/edge/guide_appdev_hooks_index.md.html#Hooks%20Guide.
Loading

0 comments on commit 117f508

Please sign in to comment.