-
Notifications
You must be signed in to change notification settings - Fork 8
/
plugin.xml
18 lines (18 loc) · 928 Bytes
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version='1.0' encoding='utf-8'?>
<plugin id="com.woodstream.cordova.fix.blackscreen" version="0.0.1"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>cordova-fix-blackscreen</name>
<js-module name="cordova-fix-blackscreen" src="www/cordova-fix-blackscreen.js">
<clobbers target="cordova.plugins.cordova-fix-blackscreen" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="cordova-fix-blackscreen">
<param name="android-package" value="com.woodstream.cordova.fix.blackscreen.cordova-fix-blackscreen" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml"></config-file>
<source-file src="src/android/styles.xml" target-dir="res/values" />
</platform>
</plugin>