[RN]为什么要带上 abiFilters "armeabi-v7a", "x86"

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/tomlucky1024/article/details/83588555

做rn的时候都会加上这个:

android {
    compileSdkVersion 28 
    defaultConfig { 
      ndk {
            abiFilters "armeabi-v7a", "x86" //this 货
        }
    } 
}

原因是啥呢?
因为rn jni里已经写了:
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/tomlucky1024/article/details/83588555