What Divide Auth into 2 separate modules Auth and Security. How Create a new module in Android Studio called security and move here the existing package from auth. Also move the testing package. Without the security package, auth should look fine. Why Core is a module that lives under the package namespace org.aerogear.mobile.core and all its packages are defined under that namespace:
org.aerogear.mobile.core |
org.aerogear.mobile.core.metrics |
org.aerogear.mobile.core.logging |
...
|
However Auth is a module that doesn’t define any namespace. Instead it contains 2 modules that do define namespaces, but at the same level as core:
org.aerogear.mobile.auth |
org.aerogear.mobile.security
|
|