I'm trying to use mp4parser library in my project. My android studio version is 1.0.2. Here's what I've done so far:
- I've downloaded mp4parser zipfile from the link: https://github.com/sannies/mp4parser
- I've extracted the zip file to MyProjectName/app/libraries
- Renamed the folder to mp4parser
Add this line of code to settings.gradle file:
include ':app:libraries:mp4parser'
Add this line of code to build.gradle (in dependencies block):
compile project('libraries:mp4parser')
Now I want to sync the project with gradle files. This error pops up:
Error:Configuration with name 'default' not found.
I don't have this problem with other libraries. Seems that its only mp4parser that I have problem with. How can I fix this?