I solved this error by checking the package name in manifest and app build.gradle
.
In manifest:
I am using a package name as:
com.app.triapp
In app build.gradle:
defaultConfig {
applicationId "com.app.live"
}
After changed to com.app.triapp
in build.gradle
, solved my issue.