Test package for different flavors in Android Studio

后端 未结 2 893
独厮守ぢ
独厮守ぢ 2021-02-07 05:21

I am experimenting flavors on an application in androidstudio. I have to write different test classes for the flavors, as I have different class files for the flavors. But I won

2条回答
  •  别跟我提以往
    2021-02-07 05:48

    This is really what did it for me: How to specify unit test folder in two-dimension flavor

    dependencies {
      androidTestFlavor1Compile "..."
    
      //In your case androidTestStbAppleCompile         
    }
    

提交回复
热议问题