androidandroid-studiogradlearmv7

Android Studio 3.0 Flavor Dimension Issue


Upgraded to Studio Canary build. My previous project of Telegram Messenger is giving following error.

Error:All flavors must now belong to a named flavor dimension. The flavor 'armv7' is not assigned to a flavor dimension. Learn more at https://d.android.com/r/tools/flavorDimensions-missing-error-message.html

What should I do? I have already seen that link but couldn't understand what to do. I have 3 build variants now, release,debug and foss.


Solution

  • If you don't really need the mechanism, just specify a random flavor dimension in your build.gradle or build.gradle.kts:

    android { 
        ...
        flavorDimensions("default")
        ...
    }
    

    For more information, check the migration guide