Has anyone figured/found out how Android libraries are intended to work in Android studio?
I have not been able to find any documentation on this yet (the documentat
If you want to use additional libraries in your Android Studio project:
In build.gradle
replace
compile files('libs/android-support-v4.jar')
with
compile fileTree(dir: 'libs', include: '*.jar')
If it still doesn't work, navigate to the root folder of your project with our terminal and run a gradlew clean
command.