Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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>
like image 766
Kalai Arasi Avatar asked Mar 17 '23 02:03

Kalai Arasi


1 Answers

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

like image 96
Amer Mograbi Avatar answered Mar 28 '23 10:03

Amer Mograbi