From 1e13660e52c1730f9d1d762c10029c0fbd33c26d Mon Sep 17 00:00:00 2001 From: Vladimir Mutafov Date: Mon, 11 Nov 2019 17:40:26 +0200 Subject: [PATCH 1/2] Update gradle.properties --- test-app/gradle.properties | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test-app/gradle.properties b/test-app/gradle.properties index a1e4c3b11..c1835c7ce 100644 --- a/test-app/gradle.properties +++ b/test-app/gradle.properties @@ -11,6 +11,11 @@ # The setting is particularly useful for tweaking memory settings. org.gradle.jvmargs=-Xmx1536m +# Uncomment the following lines in order to debug the Gradle scripts. +# Start debugging by initiating a remote debug through your IDE on port 5005 +# org.gradle.daemon=false +# org.gradle.debug=true + android.enableJetifier=true android.useAndroidX=true useKotlin=true From b57f742e7209208a7a8f4c9924481bdc41918231 Mon Sep 17 00:00:00 2001 From: Vladimir Mutafov Date: Mon, 11 Nov 2019 18:54:18 +0200 Subject: [PATCH 2/2] Update gradle.properties --- test-app/gradle.properties | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/test-app/gradle.properties b/test-app/gradle.properties index c1835c7ce..6444d8ebd 100644 --- a/test-app/gradle.properties +++ b/test-app/gradle.properties @@ -11,11 +11,17 @@ # The setting is particularly useful for tweaking memory settings. org.gradle.jvmargs=-Xmx1536m -# Uncomment the following lines in order to debug the Gradle scripts. -# Start debugging by initiating a remote debug through your IDE on port 5005 -# org.gradle.daemon=false +# To debug Gradle scripts, you must enable this behaviour with a flag (seen some rows below) +# Start debugging by initiating a remote Java debug through your IDE on port 5005 +# Beware that Gradle spawns daemons to execute secondary builds. This could be a problem when debugging. +# You could stop them with "gradle --stop" and run a given task from the console with "gradle some_task_name --no-daemon" +# or with "org.gradle.daemon=false" set inside your "~/.gradle/gradle.properties" file. +# Uncomment the following line in order to enable Gradle debugging. # org.gradle.debug=true + + + android.enableJetifier=true android.useAndroidX=true useKotlin=true