Android java.lang.UnsatisfiedLinkError couldn't find libijkffmpeg.so完美解决

本文主要是介绍Android java.lang.UnsatisfiedLinkError couldn't find libijkffmpeg.so完美解决,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

播放视频报错:

 java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.hjq.demo-2/base.apk"],nativeLibraryDirectories=[/data/app/com.hjq.demo-2/lib/arm64, /data/app/com.hjq.demo-2/base.apk!/lib/arm64-v8a, /vendor/lib64, /system/lib64]]] couldn't find "libijkffmpeg.so"

解决方法:

其实就是项目里没有发现需要的.so库,你让你的项目中有相应的.so库即可。

1.在app的build.gradle中配置ndk:

 // 仅保留两种架构的 so 库ndk {// armeabi:已经淘汰(0%)// armeabi-v7a:曾经主流的架构平台(20%)// arm64-v8a:目前主流架构平台(80%)//"x86_64",abiFilters "armeabi-v7a", "arm64-v8a", "x86", "armeabi"}

或者:

splits {abi {enable truereset()include 'x86', 'x86_64', 'armeabi-v7a', 'armeabi'universalApk false}
}

贴出全部的build.gradle 供大家参考:

apply plugin: 'com.android.application'android {compileSdkVersion rootProject.ext.compileVersion// 使用 JDK 1.8compileOptions {targetCompatibility JavaVersion.VERSION_1_8sourceCompatibility JavaVersion.VERSION_1_8}lintOptions {abortOnError false}defaultConfig {// 无痛修改包名:https://www.jianshu.com/p/17327e191d2eapplicationId "com.hjq.demo"minSdkVersion 16targetSdkVersion rootProject.ext.targetVersionversionCode 10versionName "1.0"testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"// 仅保留中文语种的资源resConfig 'zh'// 仅保留 xxhdpi 图片资源(目前主流分辨率 1920 * 1080)resConfig 'xxhdpi'// 仅保留两种架构的 so 库ndk {// armeabi:已经淘汰(0%)// armeabi-v7a:曾经主流的架构平台(20%)// arm64-v8a:目前主流架构平台(80%)//"x86_64",abiFilters "armeabi-v7a", "arm64-v8a", "x86", "armeabi"}// 开启 Dex 分包//multiDexEnabled true// 混淆配置proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-app.pro'javaCompileOptions {annotationProcessorOptions {// EventBus Apt 索引类生成位置arguments = [ eventBusIndex : applicationId + '.MyEventBusIndex' ]}}}// APK 签名的那些事:https://www.jianshu.com/p/a1f8e5896aa2signingConfigs {debug {storeFile file(StoreFile)storePassword StorePasswordkeyAlias KeyAliaskeyPassword KeyPassword}release {storeFile file(StoreFile)storePassword StorePasswordkeyAlias KeyAliaskeyPassword KeyPassword}}buildTypes {release {// 移除无用的资源文件shrinkResources true// ZipAlign 优化zipAlignEnabled true// 设置混淆minifyEnabled true// 正式环境签名signingConfig signingConfigs.release// 正式环境下的 BuglyIdbuildConfigField "String", "BUGLY_ID", "\"请自行替换 Bugly 上面的 AppID\""}debug {// 移除无用的资源文件shrinkResources false// ZipAlign 优化zipAlignEnabled false// 设置混淆minifyEnabled false// 开发环境签名signingConfig signingConfigs.debug// 开发环境下的 BuglyIdbuildConfigField "String", "BUGLY_ID", "\"请自行替换 Bugly 上面的 AppID\""}}// 默认渠道名flavorDimensions "default"// 友盟多渠道打包productFlavors {tencent {}  // 应用宝baidu {}    // 百度xiaomi {}   // 小米huawei {}   // 华为productFlavors.all { flavor ->flavor.manifestPlaceholders = [UMENG_CHANNEL_VALUE: name]}}// JNI 目录sourceSets {main {jniLibs.srcDirs = ['libs']}}// 执行配置applicationVariants.all { variant ->// Apk 输出配置variant.outputs.all { output ->def appName = "AndroidProject"if (variant.buildType.name == 'debug') {outputFileName = appName + '_v' + versionName + '_' + variant.buildType.name + '.apk'} else {outputFileName = appName + '_v' + versionName + '_' + new Date().format("yyyyMMdd") + '_' + variant.productFlavors[0].name + '_' + variant.buildType.name + '.apk'}}// AndroidManifest 输出配置variant.outputs[0].processManifest.doLast {def manifestFile = "${manifestOutputDirectory}/AndroidManifest.xml"def updatedContent = new File(manifestFile).getText('UTF-8').replaceAll("UMENG_APPKEY_VALUE", "5cb16d93570df399fd0014e2") // 友盟 AppKey.replaceAll("QQ_APPID_VALUE", "100424468") // QQ AppId.replaceAll("QQ_APPKEY_VALUE", "c7394704798a158208a74ab60104f0ba") // QQ Key.replaceAll("WX_APPID_VALUE", "wxdc1e388c3822c80b") // 微信 AppId.replaceAll("WX_APPKEY_VALUE", "3baf1193c85774b3fd9d18447d76cab0") // 微信 Keynew File(manifestFile).write(updatedContent, 'UTF-8')}}
}// api 与 implementation 的区别:https://www.jianshu.com/p/8962d6ba936e
dependencies {// 依赖 libs 目录下所有 jar 包implementation fileTree(include: ['*.jar'], dir: 'libs')// 依赖 libs 目录下所有 aar 包implementation fileTree(include: ['*.aar'], dir: 'libs')// 基础库(不包任何第三方框架)implementation project(':base')// 自定义 Viewimplementation project(':widget')// Glide 隔离implementation project(':image')// 友盟隔离implementation project(':umeng')// 谷歌 Support 包implementation "androidx.appcompat:appcompat:$rootProject.ext.appcompatVersion"implementation "com.google.android.material:material:$rootProject.ext.materialVersion"// Dex 分包,解决 64k 方法问题//implementation 'androidx.multidex:multidex:2.0.1'// ButterKnife 注解库:https://github.com/JakeWharton/butterknifeimplementation 'com.jakewharton:butterknife:10.1.0'annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0'// EventBus 事件总线:https://github.com/greenrobot/EventBusimplementation "org.greenrobot:eventbus:3.1.1"annotationProcessor 'org.greenrobot:eventbus-annotation-processor:3.1.1'// 状态栏沉浸:https://github.com/gyf-dev/ImmersionBarimplementation 'com.gyf.immersionbar:immersionbar:3.0.0'// 权限请求框架:https://github.com/getActivity/XXPermissionsimplementation 'com.hjq:xxpermissions:6.0'// 标题栏:https://github.com/getActivity/TitleBarimplementation 'com.hjq:titlebar:6.0'// 吐司工具类:https://github.com/getActivity/ToastUtilsimplementation 'com.hjq:toast:8.0'// 支持放大缩放的 ImageView:https://github.com/chrisbanes/PhotoViewimplementation 'com.github.chrisbanes:PhotoView:2.3.0'// ViewPager 指示器:https://github.com/romandanylyk/PageIndicatorViewimplementation 'com.romandanylyk:pageindicatorview:1.0.3'// Bugly 异常捕捉:https://bugly.qq.com/docs/user-guide/instruction-manual-android/?v=20190418140644implementation 'com.tencent.bugly:crashreport:3.0.1'implementation 'com.tencent.bugly:nativecrashreport:3.7.1'// 本地异常捕捉框架:https://github.com/Ereza/CustomActivityOnCrashimplementation 'cat.ereza:customactivityoncrash:2.2.0'// 内存泄漏捕捉:https://github.com/square/leakcanarydebugImplementation 'com.squareup.leakcanary:leakcanary-android:1.5.4'releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.4'// 网络请求(待发布):https://github.com/getActivity/EasyHttp// 国际化:https://github.com/getActivity/MultiLanguages// 悬浮窗:https://github.com/getActivity/XToast// 上拉刷新下拉加载:https://github.com/scwang90/SmartRefreshLayout// 工具类:https://github.com/Blankj/AndroidUtilCode// 轮播图:https://github.com/bingoogolapple/BGABanner-Android// 二维码:https://github.com/bingoogolapple/BGAQRCode-Android// 第三方支付:https://github.com/getActivity/RxPay// Log 打印:https://github.com/elvishew/XLog// 图片压缩:https://github.com/Curzibn/Luban// 对象存储:https://github.com/leavesC/DoKV// 数据注入:https://github.com/JumeiRdGroup/Parcelerimplementation 'com.android.support:design:26.1.0'//约束布局implementation 'com.android.support.constraint:constraint-layout:1.0.2'//第三方适配器implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.30'implementation 'com.google.code.gson:gson:2.8.0'
//    implementation 'com.github.bumptech.glide:glide:3.7.0'//通用标题栏implementation 'com.hjq:titlebar:6.0'implementation 'com.makeramen:roundedimageview:2.3.0'//高度自定义的开源安卓视频框架implementation 'cn.jzvd:jiaozivideoplayer:7.0.5'implementation 'com.danikula:videocache:2.7.0'
//    implementation 'com.github.bumptech.glide:glide:4.7.1'implementation 'com.github.bumptech.glide:glide:4.9.0'dependencies {implementation ('com.google.android.exoplayer:exoplayer:2.9.1'){}}
//    dependencies {
//        implementation ('com.github.bumptech.glide:glide:4.7.1'){
//
//        }
//    }implementation 'tv.danmaku.ijk.media:ijkplayer-java:0.8.8'implementation 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.8.4'
//    implementation 'com.google.android.exoplayer:exoplayer:2.9.1'}

然后同步一下就可以了,若是还是这个错误的话,看下面。

2.配置ndk没有一点反应,依旧还是这个错误,就要需要下载.so库了(错误提示没有发现哪个.so库就下载哪个.so)

这里提供.so的下载地址:libijkffmpeg.so或者加我QQ1223235200直接QQ传.so库

 

相关视频框架播放: 

Android VideoPlayer MediaPlayer VideoView MediaView Float View And Fullscreen.高度自定义的开源安卓视频框架

https://github.com/lipangit/JiaoZiVideoPlayer

https://github.com/lurenman/JiaoZiVideoPlayerDemo

https://github.com/Life1412378121/TVPlayer-IPTV-EasyPlayer

https://github.com/CarGuo/GSYVideoPlayer

https://github.com/curtis2/SuperVideoPlayer

https://github.com/w1123440793/VideoListDemo

https://github.com/ashqal/MD360Player4Android

https://github.com/hejunlin2013/DragVideo

https://github.com/Zhaoss/VideoPlayerDemo

 

这篇关于Android java.lang.UnsatisfiedLinkError couldn't find libijkffmpeg.so完美解决的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/590592

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

Java进阶13讲__第12讲_1/2

多线程、线程池 1.  线程概念 1.1  什么是线程 1.2  线程的好处 2.   创建线程的三种方式 注意事项 2.1  继承Thread类 2.1.1 认识  2.1.2  编码实现  package cn.hdc.oop10.Thread;import org.slf4j.Logger;import org.slf4j.LoggerFactory

JAVA智听未来一站式有声阅读平台听书系统小程序源码

智听未来,一站式有声阅读平台听书系统 🌟 开篇:遇见未来,从“智听”开始 在这个快节奏的时代,你是否渴望在忙碌的间隙,找到一片属于自己的宁静角落?是否梦想着能随时随地,沉浸在知识的海洋,或是故事的奇幻世界里?今天,就让我带你一起探索“智听未来”——这一站式有声阅读平台听书系统,它正悄悄改变着我们的阅读方式,让未来触手可及! 📚 第一站:海量资源,应有尽有 走进“智听

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo