Unable to switch to debug build variant in Android Studio

后端 未结 16 783
不知归路
不知归路 2021-02-01 14:22

I\'ve switched to release build variant and configured signingConfigs. Now when I try to check the debug build variant from the drop down menu it switches immediately back to th

16条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-01 15:17

    in main root of app in build.gradle

    replace it from:

    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
    }
    

    to my Android Studio v3.0.1 in my case:

    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
    }
    

提交回复
热议问题