From 0fe45a574d36426fb17572f5c669fc44584e4c83 Mon Sep 17 00:00:00 2001 From: Gianfranco Monzon Date: Tue, 4 Jun 2024 21:54:31 -0500 Subject: [PATCH 1/2] Ignore kotlin directory --- Android.gitignore | 3 +++ Java.gitignore | 3 +++ 2 files changed, 6 insertions(+) diff --git a/Android.gitignore b/Android.gitignore index 347e252e..7245bb43 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -2,6 +2,9 @@ .gradle/ build/ +# Kotlin +.kotlin/ + # Local configuration file (sdk path, etc) local.properties diff --git a/Java.gitignore b/Java.gitignore index 524f0963..23919894 100644 --- a/Java.gitignore +++ b/Java.gitignore @@ -22,3 +22,6 @@ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* replay_pid* + +# Kotlin +.kotlin/ \ No newline at end of file From 233561626371ab10f08c44aa41ac1dfc193c6d7f Mon Sep 17 00:00:00 2001 From: gianfrancoms Date: Thu, 3 Apr 2025 16:53:20 -0500 Subject: [PATCH 2/2] Update for kotlin --- Android.gitignore | 6 +++--- Gradle.gitignore | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Android.gitignore b/Android.gitignore index 7245bb43..d83e39bc 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -2,9 +2,6 @@ .gradle/ build/ -# Kotlin -.kotlin/ - # Local configuration file (sdk path, etc) local.properties @@ -34,3 +31,6 @@ google-services.json # Android Profiling *.hprof + +# Kotlin Gradle plugin data, see https://kotlinlang.org/docs/whatsnew20.html#new-directory-for-kotlin-data-in-gradle-projects +.kotlin/ \ No newline at end of file diff --git a/Gradle.gitignore b/Gradle.gitignore index a5b11137..db134aee 100644 --- a/Gradle.gitignore +++ b/Gradle.gitignore @@ -19,3 +19,6 @@ gradle-app.setting .project # JDT-specific (Eclipse Java Development Tools) .classpath + +# Kotlin Gradle plugin data, see https://kotlinlang.org/docs/whatsnew20.html#new-directory-for-kotlin-data-in-gradle-projects +.kotlin/ \ No newline at end of file