Kalai Arasi
Kalai Arasi

Reputation: 249

Adding Dependency to Android Studio

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>

Upvotes: 4

Views: 1339

Answers (1)

Amer Mograbi
Amer Mograbi

Reputation: 489

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 :)

Upvotes: 7

Related Questions