Skip to content
This repository was archived by the owner on Mar 26, 2024. It is now read-only.

Commit a5aaf90

Browse files
committed
Merge branch 'release-1.2'
2 parents fa0a5e2 + 14a4462 commit a5aaf90

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+1442
-407
lines changed

.gitignore

Lines changed: 28 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Created by https://www.gitignore.io/api/android,intellij,opencv,gradle
32

43
### Android ###
@@ -21,12 +20,19 @@ out/
2120
.gradle/
2221
build/
2322

23+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
24+
!gradle-wrapper.jar
25+
26+
# Ignore Gradle GUI config
27+
gradle-app.setting
28+
29+
# Sensitive files
30+
secrets/
31+
secrets\.tar
32+
2433
# Local configuration file (sdk path, etc)
2534
local.properties
2635

27-
# Proguard folder generated by Eclipse
28-
proguard/
29-
3036
# Log Files
3137
*.log
3238

@@ -36,74 +42,43 @@ proguard/
3642
# Android Studio captures folder
3743
captures/
3844

39-
# Intellij
40-
*.iml
41-
.idea/workspace.xml
42-
.idea/libraries
45+
# External native build folder generated in Android Studio 2.2 and later
46+
.externalNativeBuild
4347

44-
# Keystore files
45-
*.jks
48+
# Freeline
49+
freeline.py
50+
freeline/
51+
freeline_project_description.json
4652

4753
### Android Patch ###
4854
gen-external-apklibs
4955

50-
5156
### Intellij ###
5257
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
53-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
58+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839-How-to-manage-projects-under-Version-Control-Systems
5459

5560
# User-specific stuff:
56-
.idea/
57-
#.idea/workspace.xml
58-
#.idea/tasks.xml
59-
#.idea/dictionaries
60-
#.idea/vcs.xml
61-
#.idea/jsLibraryMappings.xml
62-
63-
# Sensitive or high-churn files:
64-
#.idea/dataSources.ids
65-
#.idea/dataSources.xml
66-
#.idea/dataSources.local.xml
67-
#.idea/sqlDataSources.xml
68-
#.idea/dynamic.xml
69-
#.idea/uiDesigner.xml
61+
.idea/**/workspace.xml
62+
.idea/**/tasks.xml
7063

7164
# Gradle:
72-
#.idea/gradle.xml
73-
#.idea/libraries
74-
75-
# Mongo Explorer plugin:
76-
#.idea/mongoSettings.xml
77-
78-
## File-based project format:
79-
*.iws
80-
81-
## Plugin-specific files:
82-
83-
# IntelliJ
84-
/out/
65+
*.iml
66+
.idea/**/gradle.xml
67+
.idea/**/misc.xml
68+
.idea/**/libraries
8569

86-
# mpeltonen/sbt-idea plugin
87-
.idea_modules/
70+
# CMake
71+
cmake-build-debug/
8872

89-
# JIRA plugin
90-
atlassian-ide-plugin.xml
73+
# Sonarlint plugin
74+
.idea/sonarlint
9175

9276
# Crashlytics plugin (for Android Studio and IntelliJ)
9377
com_crashlytics_export_strings.xml
9478
crashlytics.properties
9579
crashlytics-build.properties
9680
fabric.properties
9781

98-
### Intellij Patch ###
99-
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
100-
101-
# *.iml
102-
# modules.xml
103-
# .idea/misc.xml
104-
# *.ipr
105-
106-
10782
### OpenCV ###
10883
#OpenCV for Mac and Linux
10984
#build and release folders
@@ -113,19 +88,4 @@ fabric.properties
11388
*/cmake_install.cmake
11489
.DS_Store
11590

116-
117-
### Gradle ###
118-
.gradle
119-
/build/
120-
121-
# Ignore Gradle GUI config
122-
gradle-app.setting
123-
124-
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
125-
!gradle-wrapper.jar
126-
127-
# Cache of project
128-
.gradletasknamecache
129-
130-
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
131-
# gradle/wrapper/gradle-wrapper.properties
91+
# End of https://www.gitignore.io/api/android,intellij,opencv,gradle

.idea/compiler.xml

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/GPLv3.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/dictionaries/davidmigloz.xml

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)