forked from rajivnarayana/CordovaFragments
-
Notifications
You must be signed in to change notification settings - Fork 11
/
plugin.xml
21 lines (16 loc) · 1.07 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-android-fragmentactivity" version="2.2.1">
<name>Cordova Android FragmentActivity Plugin</name>
<description>An android plugin that provides a replacement activity to the default activity to start a cordova application with MainActivity as a Fragment Activity. Useful when you want to add native views on top of cordova webview.</description>
<keywords>cordova, fragment, fragments</keywords>
<platform name="android">
<framework src="androidx.appcompat:appcompat:1.1.0"/>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="CordovaFragments">
<param name="android-package" value="uk.co.reallysmall.cordova.plugin.fragment"/>
</feature>
</config-file>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/fragment/CordovaFragment.java" target-dir="src/uk/co/reallysmall/cordova/plugin/fragment"/>
<hook type="after_plugin_install" src="scripts/android/afterPluginInstall.js"/>
</platform>
</plugin>