Building with Cordova - PART 02 - Build an Android App

2
  • 18 favourites

Index

Stats

14,089 visits, 51,030 views

Tools

Translations

This tutorial hasn't been translated.

License

This tutorial is licensed under CC BY 4.0. Please refer to the license text if you wish to reuse, share or remix the content contained within this tutorial.

Step 6 - Editing the Configuration File

Now let's edit some global configurations that will be used by all platforms we compile to in the future. Let's edit our "config.xml" file found in our project's folder.

6.1 - Open it with your favorite text editor. You may want to change some information below (ie. name, description, author, etc.).

6.2 - To make your game full screen and lock the orientation so it's always displayed in portrait or landscape mode, you must add two additional parameters:

<preference name="Fullscreen" value="true" />

<preference name="Orientation" value="landscape" />

  • 0 Comments

  • Order by
Want to leave a comment? Login or Register an account!