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 yes
  • uistatusbarhidden set yes
  • uiviewcontrollerbasedstatusbarappearance set no

the above code doesn't seem work. ideas should doing?


Comments

Popular posts from this blog

Regex find and replace between <div class="customclass"> and </div> tag -

jpa - Passing entitymanager from reflection method -