-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
43 lines (36 loc) · 1.88 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="com.ppc.browser"
version="1.0.0">
<name>PPCInAppBrowser</name>
<js-module src="www/PPCInAppBrowser.js" name="PPCInAppBrowser">
<clobbers target="PPCInAppBrowser" />
</js-module>
<!-- ios -->
<platform name="ios"><config-file parent="/*" target="config.xml"><feature name="PPCInAppBrowser"><param name="ios-package" value="PPCInAppBrowser" /></feature></config-file><source-file src="src/ios/PPCInAppBrowser.m" /></platform>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="PPCInAppBrowser">
<param name="android-package" value="com.ppc.browser.PPCInAppBrowser"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.INTERNET" />
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity
android:label="PPCInAppBrowser"
android:name="com.ppc.browser.TestActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
</activity>
</config-file>
<source-file src="src/android/PPCInAppBrowser.java" target-dir="src/com/ppc/browser/PPCInAppBrowser" />
<source-file src="src/android/TestActivity.java" target-dir="src/com/ppc/browser/TestActivity" />
<source-file src="src/android/nativebrowserplugin.xml" target-dir="res/layout" />
<source-file src="res/back_blue.png" target-dir="res/drawable" />
<source-file src="res/forward_blue.png" target-dir="res/drawable" />
</platform>
</plugin>