-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
68 lines (52 loc) · 1.42 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Built application files 不忽略apk文件
#*.apk
#*.ap_
# Files for the ART/Dalvik VM 忽略所有dex文件
*.dex
# Java class files 忽略所有class文件
*.class
# Generated files 忽略以下几个文件夹的文件
bin/
gen/
out/
# Gradle 忽略 Gradle 文件夹下所有 files 及 gradle 有关文件
.gradle/
gradlew
gradlew.bat
# Gradle wrapper 忽略 gradle wrapper 下的文件
gradle/
# build 忽略 build 文件夹下所有文件及 build 有关文件
build/
*/build/
# Local configuration file (sdk path, etc) 忽略 local.properties 文件
local.properties
# Proguard folder generated by Eclipse 忽略 Eclipse 项目 proguard/ 文件夹下的所有文件
proguard/
# Log Files 忽略 log 信息文件
*.log
# Android Studio Navigation editor temp files 忽略 android studio 的.navigation/所有文件
.navigation/
# Android Studio captures folder 忽略 android studio 的 captures/所有文件
captures/
# IntelliJ 忽略 Intellij 项目产生的无关文件
*.iml
*/*.iml
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/assetWizardSettings.xml
.idea/dictionaries
.idea/libraries
.idea/caches
.idea/modules.xml
#Android Studio captures folder 忽略 android studio captures 文件夹
/captures/
#Keystore files 忽略 KeyStore 及一些无用文件
*.jks
*.DS_Store
*/.settings/
*/.idea/
.DS_Stroe
.idea/
# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild