apply plugin: \'com.android.application\' android { compileSdkVersion 23 buildToolsVersion \"22.0.1\" defaultConfig { applicationId \"com.nusec
In your build.gradle,
applicationId "com.company.app"
Should match in AndroidManifest.xml:
package="com.company.app"
I was getting this same error because they didn't match.