Your Radio App
  • Welcome
  • Android Studio
    • Getting Started
    • Import Project
    • Generate google-services.json
    • Push Notification
    • Package Name
    • Server Connection
    • Ad Networks
    • AdMob GDPR (Legacy)
    • Funding Choices
    • Change Logo
    • Change Color
    • Change Text
    • Change Images
  • Admin Panel
    • Getting Started
    • Create Database
    • Import Database
    • Upload PHP Script's
    • Database Configuration
    • Related Video Tutorial
  • Publish the App
    • Release Version
    • Generate Signed Bundle / APK
  • Migrate from Older Version
    • v5.2.0 to v5.3.0
    • v5.1.0 to v5.2.0
    • v5.0.2 to v5.1.0
    • v5.0.1 to v5.0.2
    • v5.0.0 to v5.0.1
    • v4.x.x to v5.0.0
    • v3.x.x to v4.x.x
  • Changelog
  • Rating and Support
  • FAQ
Powered by GitBook
On this page
  • Step 1
  • Step 2
  • Step 3

Was this helpful?

  1. Android Studio

Package Name

PreviousPush NotificationNextServer Connection

Last updated 3 years ago

Was this helpful?

Step 1

  1. Open Gradle Scripts → build.gradle (Module: app)

  2. Change the application ID with your own id name

  3. Standard naming procedure : com.yourdomainname.yourappname

  4. Click Sync Now.

  5. Change the id as unique as possible, because application id is very important used if you want to publish the application to the google play.

Important : your applicationId or package name must same with your package name that you’ve create on firebase console when you generate google-services.json

Step 2

  1. Click once on your package and then click setting icon on Android Studio.

  2. Close / Unselect Compact Empty Middle Packages

  3. Right Click - Refactor - Rename... (Shift + F6)

  4. Rename with the same name as your applicationId

Step 3

If you use OneSignal for sending push notification, you must manually change the NotificationServiceExtension value in the AndroidManifest.xml according to your package name

<meta-data
    android:name="com.onesignal.NotificationServiceExtension"
    android:value="<your_package_name>.notification.NotificationServiceExtension" />