Error creating apk android studio after changing package name

1

Holas, I have this error. After changing the project's package name, I get these errors when trying to create apk

    
asked by pauuu 07.07.2018 в 22:56
source

1 answer

0

You must change the "package name" also within the file build.gradle this in applicationId :

android {
...
defaultConfig {
    applicationId 'com.artemisa.linterna.gratis'
    ...
        }
}

I suggest you "refactor" the package name to avoid this kind of problems, check:

How to change package name in Android Studio?

    
answered by 07.07.2018 в 23:45