Present in both answers;Present only in the new answer;Present only in the old answer;
U need to add this to android/build.gradle ```subprojects { afterEvaluate { project -> if (project.hasProperty('android')) { project.android { if (namespace == null) { namespace project.group } } } }}```
add this to your build.grade (android) ```subprojects { afterEvaluate { project -> if (project.hasProperty('android')) { project.android { if (namespace == null) { namespace project.group } } } }}```
Present in both answers;Present only in the new answer;Present only in the old answer;