java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader

前端 未结 17 1842
耶瑟儿~
耶瑟儿~ 2020-11-29 22:21

Is there someone who had experience with this error?

java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file \"/data/app/org.swig         


        
17条回答
  •  生来不讨喜
    2020-11-29 22:33

    -if gradle.properties not available then first add that file and add android.useDeprecatedNdk=true

    -use this code in build.gradle

    defaultConfig {
        applicationId 'com.example.application'
        minSdkVersion 16
        targetSdkVersion 21
        versionCode 11
        versionName "1.1"
        ndk {
            abiFilters "armeabi"
        }
    }
    

    `

提交回复
热议问题