Android Studio : Missing Strip Tool

前端 未结 4 1553
不思量自难忘°
不思量自难忘° 2021-01-31 14:01

I am constantly getting this warning while building my android studio code using terminal command gradle clean assembleRelease:

Unable to strip librar

4条回答
  •  自闭症患者
    2021-01-31 14:58

    You can try using the following configuration in app/build.gradle.

    android {    
        packagingOptions {
            // exclude ARMEABI native so file, ARMEABI has been removed in NDK r17.
            exclude "lib/armeabi/**"
        }
    }
    

    Remove (or make optional) MIPS native library #3504
    Android-ABIs

提交回复
热议问题