Android Studio - Unable to run app on device minSdk(API 23, N) != device Sdk(API 22)

后端 未结 9 1980
滥情空心
滥情空心 2021-02-13 06:06

so i reinstalled linux on my computer and after i reinstalled android studio i tried getting an app that i wrote on to my phone which previously had not been a problem. The App

9条回答
  •  梦谈多话
    2021-02-13 06:21

    Change the minSdkVersion to your target device sdkVersion in build.gradle(Module:app)file will be appear on left side in Gradle Scripts.. Ex: minSdkVersion 24 //change the version value to ur target device value(like 23 or 22 or 21 or etc)

    According to your configuration you have to change the minSdkVersion 23 to minSdkVersion 22, becoz your target device at API LEVEL 1

提交回复
热议问题