How to fix INSTALL_FAILED_INVALID_APK error in Android Studio?

前端 未结 9 1691
一整个雨季
一整个雨季 2021-02-08 23:37

I have recently updated my Android Studio to 3.6.1, thereby also updating gradle plugin to 3.6.1 and the gradle wrapper to 5.6.4

When running the debug build, I keep get

9条回答
  •  旧巷少年郎
    2021-02-09 00:15

    application>- android:extractNativeLibs="true" 
    

    work for me


    minSdkVersion 23
    
    ndk {
       abiFilters "armeabi-v7a"
    }
    

    minSdkVersion is less than 23, work for me too

提交回复
热议问题