1.1解决Android studio中 java.lang.UnsatisfiedLinkError couldn't find "libcsiipowerenter.so问题

来源:互联网 发布:淘宝怎么设置自动上架 编辑:程序博客网 时间:2024/06/12 23:22
    java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.haukit.hnblife-1/base.apk"],nativeLibraryDirectories=[/data/app/com.haukit.hnblife-1/lib/arm64, /vendor/lib64, /system/lib64]]] couldn't find "libcsiipowerenter.so"
            at java.lang.Runtime.loadLibrary(Runtime.java:366)
            at java.lang.System.loadLibrary(System.java:988)
            at com.csii.powerenter.PEJNILib.<clinit>(PEJNILib.java:131)
            at com.csii.powerenter.PEEditText.initialize(PEEditText.java:73)
            at com.haukit.hnblife.view.EditTextHNB.initialize(EditTextHNB.java:176)
            at com.haukit.hnblife.view.EditTextHNB.initialize(EditTextHNB.java:96)
            at com.haukit.hnblife.activity.LoginActivity.initView(LoginActivity.java:112)
            at com.haukit.hnblife.activity.BaseActivity.onCreate(BaseActivity.java:37)
            at com.haukit.hnblife.activity.LoginActivity.onCreate(LoginActivity.java:76)
            at android.app.Activity.performCreate(Activity.java:6041)
            at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1109)
            at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2285)
            at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2394)
            at android.app.ActivityThread.access$800(ActivityThread.java:154)
            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1308)
            at android.os.Handler.dispatchMessage(Handler.java:102)
            at android.os.Looper.loop(Looper.java:135)
            at android.app.ActivityThread.main(ActivityThread.java:5276)
            at java.lang.reflect.Method.invoke(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:372)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:908)

            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:703)


解决办法:

1.

If you are using Android studio, just edit the gradle.properties in the root folder and addandroid.useDeprecatedNdk=true. Then edit the build.gradle file in your app's folder, set abiFilters as below:

在根文件夹gradle.properties   中  添加   addandroid.useDeprecatedNdk = true属性。然后编辑构建。build.gradle文件在应用程序文件夹,设置abiFilters如下:
android {    ....    defaultConfig {        ....        ndk {            abiFilters "armeabi", "armeabi-v7a", "x86", "mips"        }    }}
即可解决此类问题!



0 0
原创粉丝点击