Permalink
Please sign in to comment.
38
.gitignore
@@ -0,0 +1,38 @@ | ||
+.DS_Store | ||
+Thumbs.db | ||
+ | ||
+# built application files | ||
+*.apk | ||
+*.ap_ | ||
+ | ||
+# files for the dex VM | ||
+*.dex | ||
+ | ||
+# Java class files | ||
+*.class | ||
+ | ||
+# gradle files | ||
+.gradle | ||
+ | ||
+# IntelliJ | ||
+.idea | ||
+*.iml | ||
+ | ||
+# generated files | ||
+bin/ | ||
+gen/ | ||
+obj/ | ||
+apk/ | ||
+target/ | ||
+build/ | ||
+app/libs/**/*.java | ||
+ | ||
+# Local configuration file (sdk path, etc) | ||
+local.properties | ||
+*crashlytics-build.properties | ||
+*com_crashlytics_export_strings.xml | ||
+ | ||
+# Proguard folder generated by Eclipse | ||
+proguard/ | ||
+ | ||
+mapping.txt |
0 comments on commit
a8b0658