Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Android Properties

Nick Iliev edited this page May 28, 2020 · 1 revision

Android Properties

In the Android Settings tab, you can set, enable, and modify Android-specific properties.

  • Application Version
    Sets the version number shown to the users. For more information about version code, see versionCode in the Android Manifest API Guide.
  • Application Version Code
    Sets the internal version of the application that is not visible to the user. The version code should be an integer. For every new version of your app, you need to increase the version code by one. For more information about version code, see versionCode in the Android Manifest API Guide.
  • Minimum SDK Version
    Specifies the minimum API Level on which the application is able to run. The Android system will prevent the user from installing the application if the system's API Level is lower than the value specified in this attribute. For more information about the minimum SDK version, see minSdkVersion in the Android Manifest API Guide.
  • Target SDK Version
    Specifies the API Level on which the application is designed to run. If not set, the default value equals that given to minSdkVersion. For more information about the target SDK version, see targetSdkVersion in the Android Manifest API Guide.
  • Select Orientation
    Select the orientation in which your app will be displayed on the device. For more information about screen orientations, see screenOrientation in the Android Manifest API Guide.
  • Hardware Acceleration
    You can enable hardware acceleration to increase the performance of the user interface of your app.
  • Permissions
    The permissions determine which Android services your app needs to work properly. When installing your app on an Android device, users will be notified of what permissions the application requires.
Clone this wiki locally