Add namespace in build.gradle
Opened this issue · 3 comments
guperini commented
Can you please update this project? It is not compatible with apps using gradle Version >= 8.0
meetalif commented
To resolve the problem, you just need to add a namespace in the mobile_device_identifire/android/build.gradle
file, like this:
android {
namespace 'com.example.mobile_device_identifire'
}
Verify the package name.
guperini commented
To resolve the problem, you just need to add a namespace in the
mobile_device_identifire/android/build.gradle
file, like this:android { namespace 'com.example.mobile_device_identifire' }
Verify the package name.
But it still is not compatible with android gradle 8.0
JakubFryga commented
@guperini you have to write
android { namespace = 'com.example.mobile_device_identifire' }