In Android studio in the \"module settings\" in the Dependencies tab you can select a scope for your library files. What is the difference between \"compile\" and \"provided\"?<
compile includes the library in your final APK, while provided doesn't; provided is a compile-time-only dependency.
compile
provided