Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android studio: How to have different run configurations for every build variant

I have an Android project in Android-studio with different build variants for both x86 and ARM.

I was wondering if there is a way to create different "run/debug configurations" for each build variant?

like image 637
Jose Gonzalez Avatar asked Nov 08 '22 07:11

Jose Gonzalez


1 Answers

You can change build command for your build configurations by modifying Gradle-aware Make command:

Change Run Configuration

but then you still have to change build variant in Build Variants tool window to deploy correct APK to your device.

like image 105
Blackhex Avatar answered Nov 14 '22 22:11

Blackhex