4

Can anyone help me how to add this library to my android studio project.

<dependency>
    <groupId>com.googlecode.mp4parser</groupId>
    <artifactId>isoparser</artifactId>
    <version>1.0.5.4</version>
  </dependency>
1
  • please try to answer the question, if you know, instead of down voting it Commented May 12, 2015 at 7:48

1 Answer 1

7

this is how you add it in android studio: in your build.gradle (Module: app) add this to your dependencies:

 compile 'com.googlecode.mp4parser:isoparser:1.0.5.4'

it should look like this:

dependencies{
  //other dependencies
  compile 'com.googlecode.mp4parser:isoparser:1.0.5.4'
}

I hope this helps :)

Sign up to request clarification or add additional context in comments.

1 Comment

this gives me error failed to resolve compile 'com.googlecode.mp4parser:isoparser:1.0.5.4' can you help me out ?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.