我遇到的问题是,当我使用steroids connect时,它在没有config.xml的情况下运行,在这个文件中我有很多东西,比如全屏模式等。
如何让类固醇应用程序运行config.xml文件?
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.example.hello" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>HelloWorld</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">
Apache Cordova Team
</author>
<content src="index.html" />
<access origin="*" />
<preference name="phonegap-version" value="3.7.0" />
<preference name="android-targetSdkVersion" value="19" />
<preference name="orientation" value="landscape" /><!--No rotation-->
<preference name="fullscreen" value="true" /><!--Hides the menu on top-->
<preference name="SplashScreen" value="screen" />
<preference name="SplashScreenDelay" value="10000" />
</widget>发布于 2015-05-09 21:15:56
这是Appgyver中新配置文件的一些documentation。
您可以构建应用程序的一个版本并在Build Settings中调整方向模式

下面是一个简短的discussion,其中一个Appgyver团队成员回答了一个关于config.xml的问题。
https://stackoverflow.com/questions/30139680
复制相似问题