Onload parameter wird inzwischen als Attribut angegeben

This commit is contained in:
Sebastián Katzer 2014-01-30 17:21:10 +01:00
parent 46dd479636
commit 7d193b9330

View File

@ -25,10 +25,10 @@
<!-- ios --> <!-- ios -->
<platform name="ios"> <platform name="ios">
<config-file target="config.xml" parent="/*"> <config-file target="config.xml" parent="/*">
<feature name="BackgroundMode"> <feature name="BackgroundMode">
<param name="ios-package" value="APPBackgroundMode"/> <param name="ios-package" value="APPBackgroundMode" onload="true" />
<param name="onload" value="true" /> <param name="onload" value="true" />
</feature> </feature>
</config-file> </config-file>
<!-- The app is able to run in background through location-tracking mode --> <!-- The app is able to run in background through location-tracking mode -->
@ -43,15 +43,15 @@
<string>Is required -for iOS 6 and above- to run the app in background!</string> <string>Is required -for iOS 6 and above- to run the app in background!</string>
</config-file> </config-file>
<header-file src="src/ios/APPBackgroundMode.h" /> <header-file src="src/ios/APPBackgroundMode.h" />
<source-file src="src/ios/APPBackgroundMode.m" /> <source-file src="src/ios/APPBackgroundMode.m" />
</platform> </platform>
<!-- wp8 --> <!-- wp8 -->
<platform name="wp8"> <platform name="wp8">
<config-file target="config.xml" parent="/*"> <config-file target="config.xml" parent="/*">
<feature name="BackgroundMode"> <feature name="BackgroundMode">
<param name="wp-package" value="BackgroundMode"/> <param name="wp-package" value="BackgroundMode" onload="true" />
<param name="onload" value="true" /> <param name="onload" value="true" />
</feature> </feature>
</config-file> </config-file>