Device Farm is reinstalling app after every test?

Hi All,

I’m trying to run my suite of tests from Appium on device farm, one issue I am having is that Amazon Device Farm is reinstalling the application after every iteration of a test. I have it set locally in Appium capabilities and tear down to NOT reset the app

                capabilities.setCapability("platformName", "Android");
                capabilities.setCapability("deviceName", "Android Emulator");
                capabilities.setCapability("udid", "emulator-5554");  
                capabilities.setCapability("app", System.getProperty("user.dir") + File.separator +  "app" + File.separator + "app.apk");
                capabilities.setCapability("fullReset", "false");
                capabilities.setCapability("noReset", "true");

This works fine when running locally, only when running device farm does the application get removed and reinstalled.

Is there a fix or workaround so the application only gets restarted (not reinstalled) on Device Farm?