libavcodec.so: has text relocations

前端 未结 6 893
花落未央
花落未央 2020-11-29 00:35

I\'m testing Android 6.0 on a Nexus 5 and i\'m using Metaio (I know that the service is going to end on the 15th of december but for that date we\'ll move to another AR plat

6条回答
  •  一整个雨季
    2020-11-29 01:32

    Today, I got the same error messages when testing my app with Android 6.0 on a Nexus 6 (Motorola). I solved my issue by checking the targetSDKVersion in the manifest file. Using "22" and not "23" as targetSDKVersion solved it. (See below)

    
    

    I also checked the build.gradle files for compile version and targetSDKversion:

    compileSdkVersion 22
        buildToolsVersion '22.0.1'
    
        defaultConfig {
            minSdkVersion 15
            targetSdkVersion 22
        }
    

    Hope this will help you. However, this is just a short term workaround for now, I hope that we will get some feedback from metaio though.

    Regards, christin

提交回复
热议问题