Slide 19
Slide 19 text
©2019 Wantedly, Inc.
Way to resolve Testing the Multiple APKs w/Robolectric
I found some ways to resolve this
• Use Android App Bundle(Recommended)
• Android App Bundle allows you to separate the publish settings and
build settings.(On publish, bundleXXX. On develop, assembleXXX)
• And also reduce your APK size!
• Introduce custom Gradle properties and switch it by command
line arguments.
• It’a not bad idea, but when you run tests on Android Studio, you
have to set the arguments every time you want.
• Until yesterday, I have been used this.
Please choice by yourself