Android Configuration

This article describes the steps required to configure the app for android, including updating app name and bundle id (package name).

Application Name, Icon and ID

First thing you will want to do is change application ID and name to something unique to your own brand. There are a few rules this ID should follow:

Change application ID in android files:

  1. android/app/build.gradle
  2. /android/app/src/main/AndroidManifest.xml
  3. android/app/src/main/kotlin/com/vebto/bedrive/MainActivity.kt and android/app/src/main/kotlin/com/vebto/bedrive/Application.kt

Rename folders in android path based on the new application ID.

Change android/app/src/main/kotlin/com/vebto/bedrive to your own application id, for example: if your app id is com.my-org.my-app path will be android/app/src/main/kotlin/com/my-org/my-app

Building an releasing the app

With android configuration is done, app is ready for building and release.