After using android studio 3.1.2 it showing error=2, No such file or directory

前端 未结 5 1683
野的像风
野的像风 2020-12-31 18:50

After installing Ubuntu 18 in new desktop with i7 and 24gb ram . We try to move our android studio project to new pc in zip format and our project

5条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-31 19:53

    include this code in your build.gradle

    defaultConfig {
    
        packagingOptions{
            doNotStrip '*/mips/*.so'
            doNotStrip '*/mips64/*.so'
        }
    }
    

提交回复
热议问题