How to Get the Package Name
Find the package name (application ID) for your Android app.
The package name uniquely identifies your Android application and is required for configuring the Grovs SDK.
1
Open Android Studio
Launch Android Studio and open your Android project.
2
Open app/build.gradle
Navigate to the app module's build.gradle file (also called build.gradle (Module: app)) and open it in the editor.
3
Find the applicationId
Inside the android block, look for the defaultConfig section. The applicationId value is your package name:
Groovy
android {
compileSdkVersion 30
defaultConfig {
applicationId "com.example.yourapp"
minSdkVersion 16
targetSdkVersion 30
versionCode 1
versionName "1.0"
}
}The applicationId value (e.g., "com.example.yourapp") is your package name.
Copy this value exactly as it appears. You will need to provide it to the Grovs dashboard when configuring your app.