Skip to content

Commit c64fe93

Browse files
committedJan 17, 2018
Initial refactor of directories for Android Studio.
1 parent be57caa commit c64fe93

File tree

655 files changed

+494
-8
lines changed

Some content is hidden

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

655 files changed

+494
-8
lines changed
 

‎.gitignore

+128
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,131 @@ eclipse_projects/*/gst-build-*
1616
eclipse_projects/*/src/main/assets/fontconfig
1717
eclipse_projects/*/src/main/assets/ssl
1818
eclipse_projects/remote-desktop-clients-libs-*.tar.gz
19+
20+
### AndroidStudio ###
21+
22+
# Built application files
23+
*.apk
24+
*.ap_
25+
26+
# Files for the ART/Dalvik VM
27+
*.dex
28+
29+
# Java class files
30+
*.class
31+
32+
# Generated files
33+
bin/
34+
gen/
35+
out/
36+
37+
# Gradle files
38+
.gradle
39+
.gradle/
40+
build/
41+
42+
# Signing files
43+
.signing/
44+
45+
# Local configuration file (sdk path, etc)
46+
local.properties
47+
48+
# Proguard folder generated by Eclipse
49+
proguard/
50+
51+
# Log Files
52+
*.log
53+
54+
# Android Studio
55+
/*/build/
56+
/*/local.properties
57+
/*/out
58+
/*/*/build
59+
/*/*/production
60+
captures/
61+
.navigation/
62+
*.ipr
63+
*~
64+
*.swp
65+
66+
# Android Patch
67+
gen-external-apklibs
68+
69+
# External native build folder generated in Android Studio 2.2 and later
70+
.externalNativeBuild
71+
72+
# NDK
73+
obj/
74+
75+
# IntelliJ IDEA
76+
*.iml
77+
*.iws
78+
/out/
79+
80+
# User-specific configurations
81+
.idea/libraries/
82+
.idea/workspace.xml
83+
.idea/tasks.xml
84+
.idea/.name
85+
.idea/compiler.xml
86+
.idea/copyright/profiles_settings.xml
87+
.idea/encodings.xml
88+
.idea/misc.xml
89+
.idea/modules.xml
90+
.idea/scopes/scope_settings.xml
91+
.idea/dictionaries
92+
.idea/vcs.xml
93+
.idea/jsLibraryMappings.xml
94+
.idea/datasources.xml
95+
.idea/dataSources.ids
96+
.idea/sqlDataSources.xml
97+
.idea/dynamic.xml
98+
.idea/uiDesigner.xml
99+
100+
# OS-specific files
101+
.DS_Store
102+
.DS_Store?
103+
._*
104+
.Spotlight-V100
105+
.Trashes
106+
ehthumbs.db
107+
Thumbs.db
108+
109+
# Legacy Eclipse project files
110+
.classpath
111+
.project
112+
.cproject
113+
.settings/
114+
115+
# Mobile Tools for Java (J2ME)
116+
.mtj.tmp/
117+
118+
# Package Files #
119+
*.war
120+
*.ear
121+
122+
# JVM crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
123+
hs_err_pid*
124+
125+
## Plugin-specific files:
126+
127+
# mpeltonen/sbt-idea plugin
128+
.idea_modules/
129+
130+
# JIRA plugin
131+
atlassian-ide-plugin.xml
132+
133+
# Mongo Explorer plugin
134+
.idea/mongoSettings.xml
135+
136+
# Crashlytics plugin (for Android Studio and IntelliJ)
137+
com_crashlytics_export_strings.xml
138+
crashlytics.properties
139+
crashlytics-build.properties
140+
fabric.properties
141+
142+
### AndroidStudio Patch ###
143+
144+
!/gradle/wrapper/gradle-wrapper.jar
145+
146+
# End of AndroidStudio ###

‎.idea/gradle.xml

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.