MVN

com.github.zhangguoning.plugin : fix_v7libs_plugin

Maven & Gradle

Mar 30, 2021
0 stars

fix_v7libs · A plugin to Fix lack armeabi-v7 so files when the ABI upgrade to armeabi-v7(the armeabi so file exist, but the armeabi-v7 so file not exist). 这个插件用于修复将ABI由 armeabi 升级至 armeabi-v7a 时,由于部分类库只提供了 armeabi 下的 ‘.so’ 文件,而没有提供 armeabi-v7a 下的‘.so’文件 而导致的错误。 详细分析过程可以参考:https://www.jianshu.com/p/5e8caa25629d

<dependency>
    <groupId>com.github.zhangguoning.plugin</groupId>
    <artifactId>fix_v7libs_plugin</artifactId>
    <version>0.0.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.zhangguoning.plugin : fix_v7libs_plugin to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.0.1

All Versions

Choose a version of com.github.zhangguoning.plugin : fix_v7libs_plugin to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.0.x
fix_v7libs_plugin-0.0.1

How to add a dependency to Maven

Add the following com.github.zhangguoning.plugin : fix_v7libs_plugin maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.zhangguoning.plugin</groupId>
    <artifactId>fix_v7libs_plugin</artifactId>
    <version>0.0.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.zhangguoning.plugin : fix_v7libs_plugin gradle dependency to your build.gradle file:

implementation 'com.github.zhangguoning.plugin:fix_v7libs_plugin:0.0.1'

Gradle Kotlin DSL: Add the following com.github.zhangguoning.plugin : fix_v7libs_plugin gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.zhangguoning.plugin:fix_v7libs_plugin:0.0.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.zhangguoning.plugin : fix_v7libs_plugin sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.zhangguoning.plugin" % "fix_v7libs_plugin" % "0.0.1"

Advertisement