android side changes
How to change app Name?
This is a simple thing in Android Studio,
go to: res folder -> values -> strings.xml
change the app_name (in the bellow example:MitsuhoSdn Bhd) to any new name you want.
How to change Package name?
From the Android Studio click over the gear icon ( ) and then select the option:
"Compact Empty Middle Packages"
, to see the folders separated in a tree view.

Now select the folder, click right button to open the contextual menu, select Refactor
and then Rename

You will be advised to refactor the package:

Then a window will show the coincidences inside the proyect, select "Do Refactor"

We don´t have to change manually the AndroidManifest.xml or build.gradle files, Refactoring the package will do the job!.
How to change Google Login Details?
Creating an Android Project
Open Android Studio (Here I am using Android Studio 3.0). And you need to create a project with an Empty Activity. I created a project named GoogleLoginExample.
Once your project is loaded then click on Tools->firebase

Then you will see a new window on the right. Here you need to select Authentication.

Now you need to connect to firebase. It will again open a window, and from this window, you can create a new Firebase Project, or if you want you can also choose an existing one.

After connecting to Firebase, click on Add Authentication and accept the changes. It will add all the required dependencies.
Enabling Google Login in Firebase Console
If we want to use Google Login with Firebase, then we also need to enable it in the Firebase Console (Default disables it).
To enable it, go to Firebase Console (console.firebase.google.com). Then from the right, select Authentication, then select SIGN-IN METHOD, and here you need to allow Google Option. (See the image below it is disabled, and you need to enable it).

How to change Logo?
Here are my steps for the task:
Create PNG image file of size 512x512 pixels
In Android Studio, in project view, highlight a mipmap directory
In menu, go to File>New>Image Asset
Click Image Button in Asset type button row
Click on 3 Dot Box at right of Path Box.
Drag image to source asset box
Click Next (Note: Existing launcher files will be overwritten)
Click Finish
How to change API, Rozerpay API & Onesignal API From Build Gradle (AppLevel)
01. Change Your Base API URL
03. Replace your Keyid (razerpay)
04. Replace your SecretCode (Rozerpay);
05. Replace OneSignal App id;
Last updated
Was this helpful?