Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
microshow committed Apr 11, 2019
1 parent 33c1e64 commit 2c66944
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,14 @@ libpostproc 最终打包成一个libffmpeg-core.so核心库方便依赖使用,
在根目录下的build.gradle里添加maven仓库

```groovy
allprojects {
repositories {
...
maven { url 'https://www.jitpack.io' }
}
}
```

添加依赖,最新版本[![](https://www.jitpack.io/v/microshow/RxFFmpeg.svg)](https://www.jitpack.io/#microshow/RxFFmpeg)
Expand All @@ -89,6 +91,21 @@ dependencies {
```

如果你的项目存在其它平台的so库,如arm64-v8a,为了不影响使用需要在build.gradle添加如下配置

```groovy
defaultConfig {
.
.
.
ndk {
abiFilters "armeabi-v7a"
}
}
```

## 开始

* 开启/关闭 debug 模式,建议在 Application 初始化调用
Expand Down

0 comments on commit 2c66944

Please sign in to comment.