Android 如何查找so文件所在目录,安装APK时so安装到哪个目录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 如何查找so文件所在目录,安装APK时so安装到哪个目录相关的知识,希望对你有一定的参考价值。
参考技术A so安装到对应分区 system/data 下面的lib里 对应程序的文件夹中 记得改权限本回答被提问者采纳如何在Android Gradle中添加原生so文件依赖
参考技术A android-native-dependencies是一个自动处理查找&下载&拷贝原生函数库依赖到jniLibs目录的Android插件,这样在APK构建过程中可以自动包含这些函数库。这个插件使用跟声明查找jar包一样的仓库,下面是一个例子:
buildscript
repositories
mavenCentral()
dependencies
classpath 'com.android.tools.build:gradle:0.10.+'
classpath 'com.nabilhachicha:android-native-dependencies:0.1'
apply plugin: 'android'
apply plugin: 'android-native-dependencies'
native_dependencies
artifact 'com.snappydb:snappydb-native:0.2+:armeabi'
artifact 'com.snappydb:snappydb-native:0.2+:x86'
dependencies
//regular Jar dependencies ...
规约
DSL artifact遵循Maven artifacts的命名规则。因此,我们下面两种语法都可以使用:
group:name:version[:classifier]缩写
//adding x86 classifier will resolve only intel's (.so) lib
native_dependencies
artifact 'com.snappydb:snappydb-native:0.2+:x86'
//omit the classifier will resolve all supported architectures
native_dependencies
artifact 'com.snappydb:snappydb-native:0.2+'
映射风格
//adding x86 classifier will resolve only intel's (.so) lib
native_dependencies
artifact group: 'com.snappydb', name: 'snappydb-native', version: '0.2+', classifier: 'x86'
//omit the classifier will resolve all supported architectures
native_dependencies
artifact group: 'com.snappydb', name: 'snappydb-native', version: '0.2+'
在每种语法中,classifier都是可选的。这意味着,当忽略classifier时,插件将会尝试获取所有类型CPU架构(armeabi, armeabi-v7a, x86和mips)的artifacts。
以上是关于Android 如何查找so文件所在目录,安装APK时so安装到哪个目录的主要内容,如果未能解决你的问题,请参考以下文章