Hi I tried to use Fleet with Android (only Android...
# fleet
a
Hi I tried to use Fleet with Android (only Android) project and faced one issue - my app can be launched only with default build variant (productionDebug), but I want to launch it with stagingDebug So I added specific task in configuration list. Task was successfully finished, but my app hasn’t been launched on Android emulator
Copy code
{
  "configurations": [
    {
      "type": "gradle",
      "name": "MyAppStagingDebug",
      "tasks": [
        "app:assembleMyApp_stagingDebug"
      ]
    }
  ]
}
Can you please tell me how can I fix this?
((