Skip to content

Android

This guides the Hive SDK Android game app build settings.

Configure language resource (optional)

If the game app size is too large, you can delete unused language resources to reduce the game app size. If you want to delete unused language resources from the 16 languages supported by Hive SDK, specify only the languages you actually use in the resConfigs property of the Android Gradle plugin. All language resources not specified in this property will be deleted from the game app. The following code shows how to limit language resources to English and Korean.

android {
   defaultConfig {
       ...
       resConfigs "en", "ko"
   }
}