Is there any difference in the size of the resulting Android APK file between:
- Adding a dependency via a local AAR file (e.g., via File > New Module > Import .JAR or .AAR package)
- Adding a dependency via a Gradle dependency (e.g.,
implementation "com.foo.bar:bar:1.2.3") that points to same AAR file
If there is a difference, what could be the cause of that difference?