Update .gitignore
This commit is contained in:
parent
5fafdaa625
commit
17fd6949a9
1 changed files with 49 additions and 19 deletions
68
.gitignore
vendored
68
.gitignore
vendored
|
|
@ -1,40 +1,70 @@
|
||||||
# built application files
|
### Android ###
|
||||||
|
# Built application files
|
||||||
*.apk
|
*.apk
|
||||||
*.ap_
|
*.ap_
|
||||||
|
|
||||||
# files for the dex VM
|
# Files for the ART/Dalvik VM
|
||||||
*.dex
|
*.dex
|
||||||
|
|
||||||
# Java class files
|
# Java class files
|
||||||
*.class
|
*.class
|
||||||
|
|
||||||
# generated files
|
# Generated files
|
||||||
bin/
|
bin/
|
||||||
gen/
|
gen/
|
||||||
target/
|
out/
|
||||||
|
|
||||||
# external libraries
|
# Gradle files
|
||||||
#libs/
|
|
||||||
|
|
||||||
# gradle files
|
|
||||||
.gradle/
|
.gradle/
|
||||||
build/
|
build/
|
||||||
|
|
||||||
# Local configuration file (sdk path, etc)
|
# Local configuration file (sdk path, etc)
|
||||||
local.properties
|
local.properties
|
||||||
.gitattributes
|
|
||||||
|
|
||||||
# Eclipse project files
|
# Proguard folder generated by Eclipse
|
||||||
.classpath
|
proguard/
|
||||||
.project
|
|
||||||
|
|
||||||
# Android Studio
|
# Log Files
|
||||||
*.iml
|
*.log
|
||||||
.idea
|
|
||||||
ajcore.*.txt
|
# Android Studio Navigation editor temp files
|
||||||
|
.navigation/
|
||||||
|
|
||||||
|
# Android Studio captures folder
|
||||||
captures/
|
captures/
|
||||||
|
|
||||||
# Mac
|
# Intellij
|
||||||
.DS_Store
|
*.iml
|
||||||
|
.idea/
|
||||||
|
|
||||||
app/release/
|
# External native build folder generated in Android Studio 2.2 and later
|
||||||
|
.externalNativeBuild
|
||||||
|
|
||||||
|
# Freeline
|
||||||
|
freeline.py
|
||||||
|
freeline/
|
||||||
|
freeline_project_description.json
|
||||||
|
|
||||||
|
### Android Patch ###
|
||||||
|
gen-external-apklibs
|
||||||
|
|
||||||
|
### fastlane ###
|
||||||
|
# fastlane - A streamlined workflow tool for Cocoa deployment
|
||||||
|
#
|
||||||
|
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
|
||||||
|
# screenshots whenever they are needed.
|
||||||
|
# For more information about the recommended setup visit:
|
||||||
|
# https://docs.fastlane.tools/best-practices/source-control/#source-control
|
||||||
|
|
||||||
|
# fastlane specific
|
||||||
|
fastlane/report.xml
|
||||||
|
|
||||||
|
# deliver temporary files
|
||||||
|
fastlane/Preview.html
|
||||||
|
|
||||||
|
# snapshot generated screenshots
|
||||||
|
fastlane/screenshots/**/*.png
|
||||||
|
fastlane/screenshots/screenshots.html
|
||||||
|
|
||||||
|
# scan temporary files
|
||||||
|
fastlane/test_output
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue