diff options
author | Allan Wang <me@allanwang.ca> | 2017-05-28 21:17:24 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2017-05-28 21:17:24 -0700 |
commit | f83fb56dca63a06e4706e6cb404bca9c49e5dbe0 (patch) | |
tree | 884b813ee08d984405bcbe61331f0a41af4fbfbd /.gitignore | |
download | frost-f83fb56dca63a06e4706e6cb404bca9c49e5dbe0.tar.gz frost-f83fb56dca63a06e4706e6cb404bca9c49e5dbe0.tar.bz2 frost-f83fb56dca63a06e4706e6cb404bca9c49e5dbe0.zip |
Initial commit
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..520a8635 --- /dev/null +++ b/.gitignore @@ -0,0 +1,55 @@ +# Built application files +*.apk +*.ap_ + +# Files for the ART/Dalvik VM +*.dex + +# Java class files +*.class + +# Generated files +bin/ +gen/ +out/ + +# Gradle files +.gradle/ +build/ + +# Local configuration file (sdk path, etc) +local.properties + +# Proguard folder generated by Eclipse +proguard/ + +# Log Files +*.log + +# Android Studio Navigation editor temp files +.navigation/ + +# Android Studio captures folder +captures/ + +# Intellij +*.iml +.idea/workspace.xml +.idea/tasks.xml +.idea/gradle.xml +.idea/dictionaries +.idea/libraries + +# Keystore files +*.jks + +# External native build folder generated in Android Studio 2.2 and later +.externalNativeBuild + +# Google Services (e.g. APIs or Firebase) +google-services.json + +# Freeline +freeline.py +freeline/ +freeline_project_description.json |