0

How can I stop cordova from using gradle daemon?

I tried already these:

  • put gradle.properties containing org.gradle.daemon=false in ~/.gradle folder doesnt work
  • put gradle.properties containing org.gradle.daemon=false in project directory (same level as build.gradle) folder doesnt work

Anyone has an idea?

sprooch
  • 21
  • 5

1 Answers1

-2

You can use the following command to use Ant forcefully

cordova build android -- --ant
scary_devil
  • 268
  • 4
  • 19
  • I need to use gradle in this case... The project has dependency on using gradle.. So I dont think switching to ant is a good idea.. – sprooch Apr 27 '17 at 11:59