how to find the applicationId in your app-level build.gradle file code example
Example: how to add prefix to application id in android
android {
...
buildTypes {
debug {
applicationIdSuffix ".debug"
}
}
}
android {
...
buildTypes {
debug {
applicationIdSuffix ".debug"
}
}
}