Is there anyway to declare this piece of code in config.xml (the android.manifest does not exist in phonegap build):
<activity
android:name=".Activity.SplashScreenActivity"
android:label="@string/app_name"
android:screenOrientation="landscape">
<intent-filter>
<action
android:name="android.intent.action.MAIN" />
<category
android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
I want to force landscape at all times in my app, and the other declarations dont seem to work...any thoughts?
@totothegreat, You may recall this from a previous post:
Is there something that is not clear in this post? Something that needs explaining?
Jesse