I have an app which uses a 3rd party library - Simple Facebook - to access the Facebook Graph APIs. This 3rd party library itself internally uses the Facebook SDK as a library.
I have few questions regarding this -
- Since the library is 3rd party, should it also be included in the APK?
If so, then it gives an error.
NOTE: Could someone also explain the meaning ofCompile, Provided, APK, Test compile, Debug compile and Release compile
.
- My Project structure is like this -
Is the project structure right or should the Facebook SDK be not included at all.
How do we add source/docs to a library?
We can attach source files/jars to a library jar in eclipse (as shown in this example). This makes it very easy to read the documentation of the imports
used. Is there any thing similar to this in Android Studio?