From 72d88e71d8b5fa563550587d26716f94c5098974 Mon Sep 17 00:00:00 2001 From: Mohsen Mirhoseini Date: Fri, 20 Sep 2019 17:54:46 +0200 Subject: [PATCH] Remove `release/` from Android.gitignore (#3162) Having `release/` in an Android project gitignore means those apps which have different build types files for `debug` and `release` will fall into this and all `release` related files will be never added or will be removed from repository at some point. --- Android.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Android.gitignore b/Android.gitignore index 3a2ecdb5..dcdc776b 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -13,7 +13,8 @@ bin/ gen/ out/ -release/ +# Uncomment the following line in case you need and you don't have the release build type files in your app +# release/ # Gradle files .gradle/