Configuration
6. App Details
In this section we'll explain how you can change the display name, splash screen and app icon.
6.1 iOS
6.1.1 App Icon
In Xcode click on the project in the left sidebar, open the General tab and scroll down to the section App Icons & Launch Images. Click on the small grey arrow.

Now drag and drop your icon files on to the existing app icon.

6.1.2 Launch Screen
By doing the same workflow as with the app icon you can change the launch screen. Just click on the grey icon for Launch Image Source.
6.1.3 Display Name & Bundle Identifier
Click on the project in the sidebar and open the General tab. You can change the Display Name in the first text input and the bundle identifier in the second input window.
6.2 Android
6.2.1 App Icon & Lauch Image
Open the folder android/app/src/main/res. Replace the file launch_screen.png in the folder drawable-xxhdpi to change the launch screen and the file ic_launcher.png in the following folders to replace the app icon:
mipmap-hdpimipmap-mdpimipmap-xhdpimipmap-xxhdpi
6.2.2 Display Name
Open the file android/app/src/main/res/values/strings.xmlin your code editor. Change the display name as following:
<resources>
<string name="app_name">YOUR DISPLAY NAME</string>
</resources>
6.2.3 Package Name
Open the file android/app/src/main/java/com/moconference/MainActivity.java
Change
package com.moconference;
to
package com.yourpackagename;
Open the file android/app/src/main/java/com/moconference/MainApplication.java
Change
package com.moconference;
to
package com.yourpackagename;
Open the file android/app/BUCK
Change
android_build_config(
name = "build_config",
package = "com.moconference",
)
android_resource(
name = "res",
package = "com.moconference",
res = "src/main/res",
)
to
android_build_config(
name = "build_config",
package = "com.yourpackagename",
)
android_resource(
name = "res",
package = "com.yourpackagename",
res = "src/main/res",
)
Open android/app/src/main/AndroidManifest.xml
Change
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.moconference"
to
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.yourpackagename"
Open android/app/build.gradle
Change
defaultConfig {
applicationId "com.moconference"
to
defaultConfig {
applicationId "com.your.package.name"
Move all files in the folder android/app/src/main/java/com/moconference to android/app/src/main/java/com/yourpackagename and delete the original folder.