Skip to content

Commit

Permalink
V2.0.0 新增支持arm64-v8a平台,同时对代码及性能做了不少的优化,性能大大提升
Browse files Browse the repository at this point in the history
  • Loading branch information
microshow committed Jul 17, 2019
1 parent 8205886 commit 7b213a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ Language: [English](README_EN.md)

为响应Google的号召,Google Play从2019年8月1日起,在Google Play上发布app必须支持64位体系。从021年8月1日起,Google Play将停掉尚未支持64位体系的APP。

同时因广大开发者要求此项目提供arm64-v8a平台的支持,本项目在近期会提供arm64-v8a的支持,同时对代码及性能做了不少的优化,在这里感谢大家一如既往的支持!
同时因广大开发者要求此项目提供arm64-v8a平台的支持,本项目在近期会提供arm64-v8a的支持,同时对代码及性能做了不少的优化,性能大大提升,在这里感谢大家一如既往的支持!

不说了~码代码ing
* 已发布 V2.0.0版本,欢迎更新


# 编译环节
Expand Down Expand Up @@ -99,21 +99,19 @@ allprojects {
```groovy
dependencies {
implementation 'com.github.microshow:RxFFmpeg:1.2.4'
implementation 'com.github.microshow:RxFFmpeg:2.0.0'
}
```

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

```groovy
defaultConfig {
.
.
.
ndk {
abiFilters "armeabi-v7a"
abiFilters "armeabi-v7a","arm64-v8a"
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ dependencies {

implementation project(path: ':rxffmpeg')

// implementation 'com.github.microshow:RxFFmpeg:1.2.4'
// implementation 'com.github.microshow:RxFFmpeg:2.0.0'
}

0 comments on commit 7b213a4

Please sign in to comment.