Android wear project with 3 flavors, 3 buildTypes and 2 applicationIdSuffixes Android wear project with 3 flavors, 3 buildTypes and 2 applicationIdSuffixes android android

Android wear project with 3 flavors, 3 buildTypes and 2 applicationIdSuffixes


According to This Post

Try this

configurations {    firstDebugWearApp    firstCustomerTestWearApp    firstReleaseWearApp    secondDebugWearApp ...//  And all the others}  dependencies {        firstDebugWearApp project(path: ':wear', configuration: 'firstDebug')        firstCustomerTestWearApp project(path: ':wear', configuration: 'firstCustomerTest')        firstReleaseWearApp project(path: ':wear', configuration: 'firstRelease')        secondDebugWearApp project(path: ':wear', configuration: 'secondDebug')        secondCustomerTestWearApp project(path: ':wear', configuration: 'secondCustomerTest')        secondReleaseWearApp project(path: ':wear', configuration: 'secondRelease')        thirdDebugWearApp project(path: ':wear', configuration: 'thirdDebug')        thirdCustomerTestWearApp project(path: ':wear', configuration: 'thirdCustomerTest')        thirdReleaseWearApp project(path: ':wear', configuration: 'thirdRelease')    }