Skip to content

Commit

Permalink
修复 X86平台 libxxx.so- text relocations 的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
microshow committed Apr 19, 2020
1 parent df2e1f7 commit 5c2340d
Show file tree
Hide file tree
Showing 12 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ allprojects {
```groovy
dependencies {
implementation 'com.github.microshow:RxFFmpeg:2.4.0'
implementation 'com.github.microshow:RxFFmpeg:3.0.0'
}
```
Expand All @@ -111,7 +111,8 @@ defaultConfig {
.
.
ndk {
abiFilters "armeabi-v7a","arm64-v8a"
//目前已支持 "armeabi-v7a","arm64-v8a","x86","x86_64" 平台架构
abiFilters "armeabi-v7a","arm64-v8a","x86","x86_64"
}
}
Expand Down
3 changes: 2 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ android {
multiDexEnabled true

ndk {
//目前已支持 "armeabi-v7a","arm64-v8a","x86","x86_64" 平台架构
abiFilters "armeabi-v7a","arm64-v8a","x86","x86_64"
}

Expand Down Expand Up @@ -91,5 +92,5 @@ dependencies {

implementation project(path: ':rxffmpeg')

// implementation 'com.github.microshow:RxFFmpeg:2.4.0'
// implementation 'com.github.microshow:RxFFmpeg:3.0.0'
}
4 changes: 2 additions & 2 deletions configs.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ ext {
//支持包版本
supportLibValue = "28.0.0"
//应用 versionCode
versionCodeValue = 240
versionCodeValue = 300
//应用 version 名称,更多设置里显示的
versionNameValue = "2.4.0"
versionNameValue = "3.0.0"

}
Binary file modified preview/app-release.apk
Binary file not shown.
Binary file modified rxffmpeg/libs/arm64-v8a/librxffmpeg-core.so
Binary file not shown.
Binary file modified rxffmpeg/libs/arm64-v8a/librxffmpeg-invoke.so
Binary file not shown.
Binary file modified rxffmpeg/libs/armeabi-v7a/librxffmpeg-core.so
Binary file not shown.
Binary file modified rxffmpeg/libs/armeabi-v7a/librxffmpeg-invoke.so
Binary file not shown.
Binary file modified rxffmpeg/libs/x86/librxffmpeg-core.so
Binary file not shown.
Binary file modified rxffmpeg/libs/x86/librxffmpeg-invoke.so
Binary file not shown.
Binary file modified rxffmpeg/libs/x86_64/librxffmpeg-core.so
Binary file not shown.
Binary file modified rxffmpeg/libs/x86_64/librxffmpeg-invoke.so
Binary file not shown.

0 comments on commit 5c2340d

Please sign in to comment.