Skip to content

Commit 6333bf6

Browse files
committed
v4.0.0
1 parent 1b08d96 commit 6333bf6

File tree

238 files changed

+3451
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

238 files changed

+3451
-0
lines changed

.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
# Created by https://www.gitignore.io/api/apachecordova
3+
# Edit at https://www.gitignore.io/?templates=apachecordova
4+
5+
### ApacheCordova ###
6+
# Apache Cordova generated files and directories
7+
bin/*
8+
!/plugins
9+
!/plugins/android.json
10+
!/plugins/fetch.json
11+
plugins/*
12+
platforms/*
13+
node_modules
14+
hooks
15+
build.json
16+
# End of https://www.gitignore.io/api/apachecordova

config.xml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version='1.0' encoding='utf-8'?>
2+
<widget id="com.armanco.integral" version="4.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
3+
<name>Integral</name>
4+
<description>
5+
This app is the list of integrals.
6+
</description>
7+
<author email="[email protected]" href="http://arman.co.com">
8+
Armanco
9+
</author>
10+
<content src="index.html" />
11+
<plugin name="cordova-plugin-whitelist" spec="1" />
12+
<preference name="StatusBarOverlaysWebView" value="true" />
13+
<preference name="StatusBarBackgroundColor" value="#4dc7bc" />
14+
<allow-navigation href="http://arman.co.com/*"/>
15+
<allow-intent href="http://arman.co.com/*"/>
16+
<access origin="http://arman.co.com"/>
17+
<access origin="*" />
18+
<allow-intent href="http://*/*" />
19+
<allow-intent href="https://*/*" />
20+
<allow-intent href="tel:*" />
21+
<allow-intent href="sms:*" />
22+
<allow-intent href="mailto:*" />
23+
<allow-intent href="geo:*" />
24+
<platform name="android">
25+
<allow-intent href="market:*" />
26+
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application">
27+
<application android:usesCleartextTraffic="true" />
28+
</edit-config>
29+
</platform>
30+
<plugin name="cordova-plugin-whitelist" />
31+
<plugin name="cordova-plugin-admob-free" />
32+
<icon src="res/icon.png" />
33+
</widget>

0 commit comments

Comments
 (0)