Deploy as system app via Gradle

2016-09-02 Thread vogella
Hi, is there a setting in the Gradle DSL which allows me to deploy an app as system app? The current workaround is to use the approach described in http://stackoverflow.com/questions/28302833/how-to-install-an-app-in-system-app-while-developing-from-android-studio but maybe the Android Gradl

Re: Deploy as system app via Gradle

2016-09-02 Thread IndicatorVeritatis
At one company I used to work for not so long ago, we did something similar to this workaround,but with Maven. Still not part of the Gradle DSL, but possibly a slight improvement over the Stack Overflow workaround. On Friday, September 2, 2016 at 12:46:13 AM UTC-7, vogella wrote: > > Hi, > > is

Re: Deploy as system app via Gradle

2016-09-12 Thread Xavier Ducrohet
This is not something we intend to support. On Fri, Sep 2, 2016 at 12:46 AM, vogella wrote: > Hi, > > is there a setting in the Gradle DSL which allows me to deploy an app as > system app? > > The current workaround is to use the approach described in > http://stackoverflow.com/questions/2830283