Skip to content

Commit 79937fb

Browse files
Updated readme
1 parent 1b8d92a commit 79937fb

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,24 @@ Supported Architecture
1010
* armv7-neon
1111
* x86
1212

13+
## Adding Library to Project
14+
* TODO : I am still working to push this library to maven central repo
15+
* Download [AAR File](https://github.com/hiteshsondhi88/ffmpeg-android-java/releases/download/v0.1.0/FFmpegAndroid.aar)
16+
* Copy FFmpegAndroid.aar to app/libs
17+
* In your app/build.gradle add
18+
```groovy
19+
repositories {
20+
flatDir {
21+
dirs 'libs'
22+
}
23+
}
24+
25+
dependencies {
26+
compile(name:'FFmpegAndroid', ext:'aar')
27+
}
28+
```
29+
* Use the library
30+
1331
## Usage
1432

1533
### Load Binary

0 commit comments

Comments
 (0)