|
1 | 1 |
|
| 2 | +# Created by https://www.gitignore.io/api/android,androidstudio |
| 3 | +# Edit at https://www.gitignore.io/?templates=android,androidstudio |
| 4 | + |
| 5 | +### Android ### |
| 6 | +# Built application files |
| 7 | +*.apk |
| 8 | +*.ap_ |
| 9 | +*.aab |
| 10 | + |
| 11 | +# Files for the ART/Dalvik VM |
| 12 | +*.dex |
| 13 | + |
| 14 | +# Java class files |
| 15 | +*.class |
| 16 | + |
| 17 | +# Generated files |
| 18 | +bin/ |
| 19 | +gen/ |
| 20 | +out/ |
| 21 | + |
| 22 | +# Gradle files |
| 23 | +.gradle/ |
| 24 | +build/ |
| 25 | + |
| 26 | +# Local configuration file (sdk path, etc) |
| 27 | +local.properties |
| 28 | + |
| 29 | +# Proguard folder generated by Eclipse |
| 30 | +proguard/ |
| 31 | + |
| 32 | +# Log Files |
| 33 | +*.log |
| 34 | + |
| 35 | +# Android Studio Navigation editor temp files |
| 36 | +.navigation/ |
| 37 | + |
| 38 | +# Android Studio captures folder |
| 39 | +captures/ |
| 40 | + |
| 41 | +# IntelliJ |
2 | 42 | *.iml |
| 43 | + |
| 44 | +.idea/* |
| 45 | + |
| 46 | +.idea/workspace.xml |
| 47 | +.idea/tasks.xml |
| 48 | +.idea/gradle.xml |
| 49 | +.idea/assetWizardSettings.xml |
| 50 | +.idea/dictionaries |
| 51 | +.idea/libraries |
| 52 | +.idea/caches |
| 53 | +# Android Studio 3 in .gitignore file. |
| 54 | +.idea/caches/build_file_checksums.ser |
| 55 | +.idea/modules.xml |
| 56 | + |
| 57 | +# Keystore files |
| 58 | +# Uncomment the following lines if you do not want to check your keystore files in. |
| 59 | +#*.jks |
| 60 | +#*.keystore |
| 61 | + |
| 62 | +# External native build folder generated in Android Studio 2.2 and later |
| 63 | +.externalNativeBuild |
| 64 | + |
| 65 | +# Google Services (e.g. APIs or Firebase) |
| 66 | +google-services.json |
| 67 | + |
| 68 | +# Freeline |
| 69 | +freeline.py |
| 70 | +freeline/ |
| 71 | +freeline_project_description.json |
| 72 | + |
| 73 | +# fastlane |
| 74 | +fastlane/report.xml |
| 75 | +fastlane/Preview.html |
| 76 | +fastlane/screenshots |
| 77 | +fastlane/test_output |
| 78 | +fastlane/readme.md |
| 79 | + |
| 80 | +# Version control |
| 81 | +vcs.xml |
| 82 | + |
| 83 | +# lint |
| 84 | +lint/intermediates/ |
| 85 | +lint/generated/ |
| 86 | +lint/outputs/ |
| 87 | +lint/tmp/ |
| 88 | +# lint/reports/ |
| 89 | + |
| 90 | +### Android Patch ### |
| 91 | +gen-external-apklibs |
| 92 | +output.json |
| 93 | + |
| 94 | +### AndroidStudio ### |
| 95 | +# Covers files to be ignored for android development using Android Studio. |
| 96 | + |
| 97 | +# Built application files |
| 98 | + |
| 99 | +# Files for the ART/Dalvik VM |
| 100 | + |
| 101 | +# Java class files |
| 102 | + |
| 103 | +# Generated files |
| 104 | + |
| 105 | +# Gradle files |
3 | 106 | .gradle |
4 | | -/local.properties |
5 | | -/.idea/caches |
6 | | -/.idea/libraries |
7 | | -/.idea/modules.xml |
8 | | -/.idea/workspace.xml |
9 | | -/.idea/navEditor.xml |
10 | | -/.idea/assetWizardSettings.xml |
| 107 | + |
| 108 | +# Signing files |
| 109 | +.signing/ |
| 110 | + |
| 111 | +# Local configuration file (sdk path, etc) |
| 112 | + |
| 113 | +# Proguard folder generated by Eclipse |
| 114 | + |
| 115 | +# Log Files |
| 116 | + |
| 117 | +# Android Studio |
| 118 | +/*/build/ |
| 119 | +/*/local.properties |
| 120 | +/*/out |
| 121 | +/*/*/build |
| 122 | +/*/*/production |
| 123 | +*.ipr |
| 124 | +*~ |
| 125 | +*.swp |
| 126 | + |
| 127 | +# Android Patch |
| 128 | + |
| 129 | +# External native build folder generated in Android Studio 2.2 and later |
| 130 | + |
| 131 | +# NDK |
| 132 | +obj/ |
| 133 | + |
| 134 | +# IntelliJ IDEA |
| 135 | +*.iws |
| 136 | +/out/ |
| 137 | + |
| 138 | +# User-specific configurations |
| 139 | +.idea/caches/ |
| 140 | +.idea/libraries/ |
| 141 | +.idea/shelf/ |
| 142 | +.idea/.name |
| 143 | +.idea/compiler.xml |
| 144 | +.idea/copyright/profiles_settings.xml |
| 145 | +.idea/encodings.xml |
| 146 | +.idea/misc.xml |
| 147 | +.idea/scopes/scope_settings.xml |
| 148 | +.idea/vcs.xml |
| 149 | +.idea/jsLibraryMappings.xml |
| 150 | +.idea/datasources.xml |
| 151 | +.idea/dataSources.ids |
| 152 | +.idea/sqlDataSources.xml |
| 153 | +.idea/dynamic.xml |
| 154 | +.idea/uiDesigner.xml |
| 155 | + |
| 156 | +# OS-specific files |
11 | 157 | .DS_Store |
12 | | -/build |
13 | | -/captures |
14 | | -.externalNativeBuild |
| 158 | +.DS_Store? |
| 159 | +._* |
| 160 | +.Spotlight-V100 |
| 161 | +.Trashes |
| 162 | +ehthumbs.db |
| 163 | +Thumbs.db |
| 164 | + |
| 165 | +# Legacy Eclipse project files |
| 166 | +.classpath |
| 167 | +.project |
| 168 | +.cproject |
| 169 | +.settings/ |
| 170 | + |
| 171 | +# Mobile Tools for Java (J2ME) |
| 172 | +.mtj.tmp/ |
| 173 | + |
| 174 | +# Package Files # |
| 175 | +*.war |
| 176 | +*.ear |
| 177 | + |
| 178 | +# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml) |
| 179 | +hs_err_pid* |
| 180 | + |
| 181 | +## Plugin-specific files: |
| 182 | + |
| 183 | +# mpeltonen/sbt-idea plugin |
| 184 | +.idea_modules/ |
| 185 | + |
| 186 | +# JIRA plugin |
| 187 | +atlassian-ide-plugin.xml |
| 188 | + |
| 189 | +# Mongo Explorer plugin |
| 190 | +.idea/mongoSettings.xml |
| 191 | + |
| 192 | +# Crashlytics plugin (for Android Studio and IntelliJ) |
| 193 | +com_crashlytics_export_strings.xml |
| 194 | +crashlytics.properties |
| 195 | +crashlytics-build.properties |
| 196 | +fabric.properties |
| 197 | + |
| 198 | +### AndroidStudio Patch ### |
| 199 | + |
| 200 | +!/gradle/wrapper/gradle-wrapper.jar |
| 201 | + |
| 202 | +# End of https://www.gitignore.io/api/android,androidstudio |
0 commit comments