forked from aalonso777777/Acode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
33 lines (27 loc) · 1.82 KB
/
Copy pathplugin.xml
File metadata and controls
33 lines (27 loc) · 1.82 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-browser" version="1.0.0">
<name>cordova-plugin-browser</name>
<description>In app browser</description>
<license>Apache 2.0</license>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Browser">
<param name="android-package" value="com.foxdebug.browser.Plugin"/>
</feature>
</config-file>
<config-file parent="./application" target="AndroidManifest.xml">
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode" android:name="com.foxdebug.browser.BrowserActivity" android:theme="@style/Theme.App.Activity" android:windowSoftInputMode="adjustResize" android:resizeableActivity="true">
</activity>
</config-file>
<hook type="after_prepare" src="utils/updatePackage.js" />
<resource-file src="res/android/menu_enter.xml" target="res/anim/menu_enter.xml" />
<resource-file src="res/android/menu_exit.xml" target="res/anim/menu_exit.xml" />
<resource-file src="res/android/styles.xml" target="res/values/styles.xml" />
<source-file src="android/com/foxdebug/browser/Browser.java" target-dir="src/com/foxdebug/browser"/>
<source-file src="android/com/foxdebug/browser/BrowserActivity.java" target-dir="src/com/foxdebug/browser"/>
<source-file src="android/com/foxdebug/browser/Emulator.java" target-dir="src/com/foxdebug/browser"/>
<source-file src="android/com/foxdebug/browser/Plugin.java" target-dir="src/com/foxdebug/browser"/>
<source-file src="android/com/foxdebug/browser/Menu.java" target-dir="src/com/foxdebug/browser"/>
</platform>
</plugin>