Android Studio: Application Installation Failed

前端 未结 29 2186
清歌不尽
清歌不尽 2020-11-28 22:42

I\'ve been trying to learn how to use Android Studio but when I attempted to run one of the sample programs I get this error message:

Installation fai

29条回答
  •  无人及你
    2020-11-28 23:15

    android {
        buildTypes {
            debug {
                debuggable true
            }
    

    and In the AndroidManifest.xml file, add android:debuggable="true" to the element.

    https://developer.android.com/studio/run/device.html#setting-up

    it works for me..

提交回复
热议问题