Skip to content

Commit

Permalink
add gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
JayFang1993 committed Jul 22, 2015
1 parent 60d8317 commit a258108
Show file tree
Hide file tree
Showing 3 changed files with 116 additions and 7 deletions.
43 changes: 38 additions & 5 deletions .gitignore
@@ -1,6 +1,39 @@
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
# Built application files
*.apk
*.ap_

# files for the dex VM
*.dex

# Java class files
*.class

# generated files
bin/
gen/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Ignore gradle files
.gradle/
build/

# Eclipse project files
.classpath
.project
.settings/

# Intellij project files
*.iml
*.ipr
*.iws
.idea/

# Mac system files
.DS_Store
/build

*.keystore
40 changes: 39 additions & 1 deletion example/.gitignore
@@ -1 +1,39 @@
/build
# Built application files
*.apk
*.ap_

# files for the dex VM
*.dex

# Java class files
*.class

# generated files
bin/
gen/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Ignore gradle files
.gradle/
build/

# Eclipse project files
.classpath
.project
.settings/

# Intellij project files
*.iml
*.ipr
*.iws
.idea/

# Mac system files
.DS_Store

*.keystore
40 changes: 39 additions & 1 deletion library/.gitignore
@@ -1 +1,39 @@
/build
# Built application files
*.apk
*.ap_

# files for the dex VM
*.dex

# Java class files
*.class

# generated files
bin/
gen/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Ignore gradle files
.gradle/
build/

# Eclipse project files
.classpath
.project
.settings/

# Intellij project files
*.iml
*.ipr
*.iws
.idea/

# Mac system files
.DS_Store

*.keystore

0 comments on commit a258108

Please sign in to comment.