This article describes the steps required to configure the app for android, including updating app name and bundle id (package name).
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:
android/app/build.gradle
/android/app/src/main/AndroidManifest.xml
android/app/src/main/kotlin/com/vebto/bedrive/MainActivity.kt
and android/app/src/main/kotlin/com/vebto/bedrive/Application.kt
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
With android configuration is done, app is ready for building and release.