Skip to content

Commit 8d0c3eb

Browse files
committed
Migrate to gradle.kts, ready for release
1 parent c49c58d commit 8d0c3eb

22 files changed

Lines changed: 619 additions & 168 deletions

.gitignore

Lines changed: 191 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,193 @@
1-
*.iml
1+
2+
# Created by https://www.gitignore.io/api/kotlin,android,androidstudio
3+
4+
### Android ###
5+
# Built application files
6+
*.apk
7+
*.ap_
8+
*.aab
9+
10+
# Files for the ART/Dalvik VM
11+
*.dex
12+
13+
# Java class files
14+
*.class
15+
16+
# Generated files
17+
bin/
18+
gen/
19+
out/
20+
21+
# Gradle files
222
.gradle/
3-
/local.properties
4-
/.idea/
5-
.DS_Store
6-
/build/
7-
/captures/
23+
build/
24+
25+
# Local configuration file (sdk path, etc)
26+
local.properties
27+
28+
# Proguard folder generated by Eclipse
29+
proguard/
30+
31+
# Log Files
32+
*.log
33+
34+
# Android Studio Navigation editor temp files
35+
.navigation/
36+
37+
# Android Studio captures folder
38+
captures/
39+
40+
# Intellij
41+
*.iml
42+
.idea/workspace.xml
43+
.idea/tasks.xml
44+
.idea/gradle.xml
45+
.idea/dictionaries
46+
.idea/libraries
47+
48+
# External native build folder generated in Android Studio 2.2 and later
849
.externalNativeBuild
9-
/gradle/
10-
*.apk
50+
51+
# Freeline
52+
freeline.py
53+
freeline/
54+
freeline_project_description.json
55+
56+
### Android Patch ###
57+
gen-external-apklibs
58+
59+
### AndroidStudio ###
60+
# Covers files to be ignored for android development using Android Studio.
61+
62+
# Built application files
63+
64+
# Files for the ART/Dalvik VM
65+
66+
# Java class files
67+
68+
# Generated files
69+
70+
# Gradle files
71+
.gradle
72+
73+
# Signing files
74+
.signing/
75+
76+
# Local configuration file (sdk path, etc)
77+
78+
# Proguard folder generated by Eclipse
79+
80+
# Log Files
81+
82+
# Android Studio
83+
/*/build/
84+
/*/local.properties
85+
/*/out
86+
/*/*/build
87+
/*/*/production
88+
*.ipr
89+
*~
90+
*.swp
91+
92+
# Android Patch
93+
94+
# External native build folder generated in Android Studio 2.2 and later
95+
96+
# NDK
97+
obj/
98+
99+
# IntelliJ IDEA
100+
*.iws
101+
/out/
102+
103+
# User-specific configurations
104+
.idea/caches/
105+
.idea/libraries/
106+
.idea/shelf/
107+
.idea/.name
108+
.idea/compiler.xml
109+
.idea/copyright/profiles_settings.xml
110+
.idea/encodings.xml
111+
.idea/misc.xml
112+
.idea/modules.xml
113+
.idea/scopes/scope_settings.xml
114+
.idea/vcs.xml
115+
.idea/jsLibraryMappings.xml
116+
.idea/datasources.xml
117+
.idea/dataSources.ids
118+
.idea/sqlDataSources.xml
119+
.idea/dynamic.xml
120+
.idea/uiDesigner.xml
121+
122+
# OS-specific files
123+
.DS_Store
124+
.DS_Store?
125+
._*
126+
.Spotlight-V100
127+
.Trashes
128+
ehthumbs.db
129+
Thumbs.db
130+
131+
# Legacy Eclipse project files
132+
.classpath
133+
.project
134+
.cproject
135+
.settings/
136+
137+
# Mobile Tools for Java (J2ME)
138+
.mtj.tmp/
139+
140+
# Package Files #
141+
*.war
142+
*.ear
143+
144+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
145+
hs_err_pid*
146+
147+
## Plugin-specific files:
148+
149+
# mpeltonen/sbt-idea plugin
150+
.idea_modules/
151+
152+
# JIRA plugin
153+
atlassian-ide-plugin.xml
154+
155+
# Mongo Explorer plugin
156+
.idea/mongoSettings.xml
157+
158+
# Crashlytics plugin (for Android Studio and IntelliJ)
159+
com_crashlytics_export_strings.xml
160+
crashlytics.properties
161+
crashlytics-build.properties
162+
fabric.properties
163+
164+
### AndroidStudio Patch ###
165+
166+
!/gradle/wrapper/gradle-wrapper.jar
167+
168+
### Kotlin ###
169+
# Compiled class file
170+
171+
# Log file
172+
173+
# BlueJ files
174+
*.ctxt
175+
176+
# Mobile Tools for Java (J2ME)
177+
178+
# Package Files #
179+
*.jar
180+
*.zip
181+
*.tar.gz
182+
*.rar
183+
184+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
185+
186+
187+
# End of https://www.gitignore.io/api/kotlin,android,androidstudio
188+
/.idea/assetWizardSettings.xml
189+
release.gradle
190+
release.jks
191+
*.pepk
192+
google.properties
193+
google-services.json

.idea/codeStyles/Project.xml

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

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 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.

0 commit comments

Comments
 (0)