From 662470c41562dda97ef0280992f05a8f883c32d1 Mon Sep 17 00:00:00 2001 From: PixelyIon Date: Tue, 23 Mar 2021 01:56:38 +0530 Subject: [PATCH] Add Default Run Configuration + Ignore `runConfigurations.xml` This commit adds a default runConfiguration which just launches the default activity without any special parameters, it also adds `.idea/runConfigurations.xml` to `.gitignore` as it is a legacy file which may be generated by older versions of Android Studio. --- .gitignore | 1 + .idea/runConfigurations/Main.xml | 60 +++++++++++++++++++ .../{Setting.xml => Settings.xml} | 2 +- .idea/vcs.xml | 1 + 4 files changed, 63 insertions(+), 1 deletion(-) create mode 100644 .idea/runConfigurations/Main.xml rename .idea/runConfigurations/{Setting.xml => Settings.xml} (94%) diff --git a/.gitignore b/.gitignore index 58a3f235..a53b2445 100644 --- a/.gitignore +++ b/.gitignore @@ -50,6 +50,7 @@ build/ # Android Studio .idea/caches .idea/assetWizardSettings.xml +.idea/runConfigurations.xml # Mongo Explorer plugin .idea/**/mongoSettings.xml diff --git a/.idea/runConfigurations/Main.xml b/.idea/runConfigurations/Main.xml new file mode 100644 index 00000000..74680954 --- /dev/null +++ b/.idea/runConfigurations/Main.xml @@ -0,0 +1,60 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/Setting.xml b/.idea/runConfigurations/Settings.xml similarity index 94% rename from .idea/runConfigurations/Setting.xml rename to .idea/runConfigurations/Settings.xml index 8a3d09c1..b2095a43 100644 --- a/.idea/runConfigurations/Setting.xml +++ b/.idea/runConfigurations/Settings.xml @@ -1,5 +1,5 @@ - + \ No newline at end of file