Cordova modifying plist -
i have following plugin.xml
<platform name="ios"> <config-file target="*-info.plist" parent="/*"> <key>uistatusbarhidden</key> <string>yes</string> <true/> <key>uiviewcontrollerbasedstatusbarappearance</key> <false/> <key>uifilesharingenabled</key> <true/> </config-file> </platform>
i'm trying modify ios app's plist has following:
uistatusbarhidden
set yesuistatusbarhidden
set yesuiviewcontrollerbasedstatusbarappearance
set no
the above code doesn't seem work. ideas should doing?
Comments
Post a Comment