Skip to content

Commit

Permalink
工具类优化、忽略文件规则更新
Browse files Browse the repository at this point in the history
  • Loading branch information
heyongrui committed Dec 10, 2019
1 parent f137373 commit 772d67d
Show file tree
Hide file tree
Showing 14 changed files with 547 additions and 459 deletions.
43 changes: 41 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
### Android ###
# Built application files
*.apk
*.ap_
*.aab

# Files for the ART/Dalvik VM
*.dex
Expand All @@ -12,6 +14,7 @@
bin/
gen/
out/
release/

# Gradle files
.gradle/
Expand All @@ -32,25 +35,47 @@ proguard/
# Android Studio captures folder
captures/

/local.properties
.DS_Store
.DS_Store?
._*
/build
/captures

# IntelliJ
*.iml
.idea
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/misc.xml
.idea/compiler.xml
.idea/assetWizardSettings.xml
.idea/copyright/profiles_settings.xml
.idea/encodings.xml
.idea/scopes/scope_settings.xml
.idea/dictionaries
.idea/libraries
.idea/vcs.xml
# Android Studio 3 in .gitignore file.
.idea/caches
.idea/modules.xml
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
.idea/navEditor.xml

# Signing files
.signing/

# Keystore files
# Uncomment the following line if you do not want to check your keystore files in.
# Uncomment the following lines if you do not want to check your keystore files in.
#*.jks
#*.keystore

# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild

# Google Services (e.g. APIs or Firebase)
google-services.json
# google-services.json

# Freeline
freeline.py
Expand All @@ -63,3 +88,17 @@ fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md

# Version control
vcs.xml

# lint
lint/intermediates/
lint/generated/
lint/outputs/
lint/tmp/
# lint/reports/

### Android Patch ###
gen-external-apklibs
output.json
45 changes: 42 additions & 3 deletions app/.gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
### Android ###
# Built application files
*.apk
*.ap_
*.aab

# Files for the ART/Dalvik VM
*.dex
Expand All @@ -12,6 +14,7 @@
bin/
gen/
out/
release/

# Gradle files
.gradle/
Expand All @@ -32,25 +35,47 @@ proguard/
# Android Studio captures folder
captures/

/local.properties
.DS_Store
.DS_Store?
._*
/build
/captures

# IntelliJ
*.iml
.idea
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/misc.xml
.idea/compiler.xml
.idea/assetWizardSettings.xml
.idea/copyright/profiles_settings.xml
.idea/encodings.xml
.idea/scopes/scope_settings.xml
.idea/dictionaries
.idea/libraries
.idea/vcs.xml
# Android Studio 3 in .gitignore file.
.idea/caches
.idea/modules.xml
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
.idea/navEditor.xml

# Signing files
.signing/

# Keystore files
# Uncomment the following line if you do not want to check your keystore files in.
# Uncomment the following lines if you do not want to check your keystore files in.
#*.jks
#*.keystore

# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild

# Google Services (e.g. APIs or Firebase)
google-services.json
# google-services.json

# Freeline
freeline.py
Expand All @@ -62,4 +87,18 @@ fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md
fastlane/readme.md

# Version control
vcs.xml

# lint
lint/intermediates/
lint/generated/
lint/outputs/
lint/tmp/
# lint/reports/

### Android Patch ###
gen-external-apklibs
output.json
45 changes: 42 additions & 3 deletions base/.gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
### Android ###
# Built application files
*.apk
*.ap_
*.aab

# Files for the ART/Dalvik VM
*.dex
Expand All @@ -12,6 +14,7 @@
bin/
gen/
out/
release/

# Gradle files
.gradle/
Expand All @@ -32,25 +35,47 @@ proguard/
# Android Studio captures folder
captures/

/local.properties
.DS_Store
.DS_Store?
._*
/build
/captures

# IntelliJ
*.iml
.idea
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/misc.xml
.idea/compiler.xml
.idea/assetWizardSettings.xml
.idea/copyright/profiles_settings.xml
.idea/encodings.xml
.idea/scopes/scope_settings.xml
.idea/dictionaries
.idea/libraries
.idea/vcs.xml
# Android Studio 3 in .gitignore file.
.idea/caches
.idea/modules.xml
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
.idea/navEditor.xml

# Signing files
.signing/

# Keystore files
# Uncomment the following line if you do not want to check your keystore files in.
# Uncomment the following lines if you do not want to check your keystore files in.
#*.jks
#*.keystore

# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild

# Google Services (e.g. APIs or Firebase)
google-services.json
# google-services.json

# Freeline
freeline.py
Expand All @@ -62,4 +87,18 @@ fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md
fastlane/readme.md

# Version control
vcs.xml

# lint
lint/intermediates/
lint/generated/
lint/outputs/
lint/tmp/
# lint/reports/

### Android Patch ###
gen-external-apklibs
output.json
Loading

0 comments on commit 772d67d

Please sign in to comment.