What Product Flavor does Android Studio build by default in build.gradle?

前端 未结 5 1733
小鲜肉
小鲜肉 2020-12-04 10:50

We have an Android project that uses the new Gradle build system, and we use Android Studio as a development tool. When there are several product flavors specified in

相关标签:
5条回答
  • 2020-12-04 11:04

    You can specify the command run In Section Before launch Gradle-aware Make

    You can list all gradle tasks by gradlew tasks

    0 讨论(0)
  • 2020-12-04 11:07

    Currently there appears to be no way to select default flavor. There is a feature request in Android Issue Tracker for it:

    https://code.google.com/p/android/issues/detail?id=64917

    You can star/vote the request, so it gets higher priority on Android development tools backlog.

    0 讨论(0)
  • 2020-12-04 11:17

    What actually worked for me is enabling "Android Studio Preferences -> Experimental -> Only sync the active variant". After you select the desired build variant once, AS will keep the selected build variant when reopening or when re-syncing the project, basically solving the original problem.

    AS/AGP v4.1.

    0 讨论(0)
  • 2020-12-04 11:22

    On the lower left of the Studio window there's a docked view called "Build Variants".

    Open it and choose whichever variant you want to work on. This will impact which variant is built but also the enabled source folders, which will drive completion in code and resources editors.

    0 讨论(0)
  • 2020-12-04 11:22

    Yes, there is a way:

    android {
        productFlavors {
            foo {
                isDefault true
            }
        }
    }
    

    And otherwise variants with the debug build type are favoured.

    It was added in Android Studio 3.5, see feature request:

    "Included in Android Gradle Plugin 3.5.0-alpha08 and Android Studio 3.5 Canary 8 [3.5.0.7].

    The heuristic for projects using older AGP and projects without explicit settings has also been updated to favour variants with the build type debug, as described in the commit message."

    0 讨论(0)
提交回复
热议问题