Skip to content

Commit ffd5915

Browse files
committed
Align with BlueST-SDK V1.2.0
Signed-off-by: Luca Pezzoni <[email protected]>
1 parent 7b22974 commit ffd5915

File tree

69 files changed

+1922
-575
lines changed

Some content is hidden

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

69 files changed

+1922
-575
lines changed

.gitignore

+260
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,260 @@
1+
*.iml
2+
3+
**/gradle/*
4+
**/.gradle/*
5+
**/build/*
6+
**/captures/*
7+
**/.idea/*
8+
**/*.iml/
9+
**/apk/*
10+
**/release/*
11+
12+
local.properties
13+
crashlytics.properties
14+
fabric.properties
15+
gradle-wrapper.properties
16+
17+
#gradlew
18+
#gradlew.bat
19+
20+
# Created by https://www.gitignore.io/api/kotlin,android,intellij,androidstudio
21+
22+
### Android ###
23+
# Built application files
24+
*.apk
25+
*.ap_
26+
27+
# Files for the ART/Dalvik VM
28+
*.dex
29+
30+
# Java class files
31+
*.class
32+
33+
# Generated files
34+
bin/
35+
gen/
36+
out/
37+
38+
# Gradle files
39+
.gradle/
40+
build/
41+
42+
# Local configuration file (sdk path, etc)
43+
local.properties
44+
45+
# Proguard folder generated by Eclipse
46+
proguard/
47+
48+
# Log Files
49+
*.log
50+
51+
# Android Studio Navigation editor temp files
52+
.navigation/
53+
54+
# Android Studio captures folder
55+
captures/
56+
57+
# Intellij
58+
*.iml
59+
.idea/workspace.xml
60+
.idea/tasks.xml
61+
.idea/gradle.xml
62+
.idea/dictionaries
63+
.idea/libraries
64+
65+
# External native build folder generated in Android Studio 2.2 and later
66+
.externalNativeBuild
67+
68+
# Freeline
69+
freeline.py
70+
freeline/
71+
freeline_project_description.json
72+
73+
### Android Patch ###
74+
gen-external-apklibs
75+
76+
### AndroidStudio ###
77+
# Covers files to be ignored for android development using Android Studio.
78+
79+
# Built application files
80+
81+
# Files for the ART/Dalvik VM
82+
83+
# Java class files
84+
85+
# Generated files
86+
87+
# Gradle files
88+
.gradle
89+
90+
# Signing files
91+
.signing/
92+
93+
# Local configuration file (sdk path, etc)
94+
95+
# Proguard folder generated by Eclipse
96+
97+
# Log Files
98+
99+
# Android Studio
100+
/*/build/
101+
/*/local.properties
102+
/*/out
103+
/*/*/build
104+
/*/*/production
105+
*.ipr
106+
*~
107+
*.swp
108+
109+
# Android Patch
110+
111+
# External native build folder generated in Android Studio 2.2 and later
112+
113+
# NDK
114+
obj/
115+
116+
# IntelliJ IDEA
117+
*.iws
118+
/out/
119+
120+
# User-specific configurations
121+
.idea/caches/
122+
.idea/libraries/
123+
.idea/shelf/
124+
.idea/.name
125+
.idea/compiler.xml
126+
.idea/copyright/profiles_settings.xml
127+
.idea/encodings.xml
128+
.idea/misc.xml
129+
.idea/modules.xml
130+
.idea/scopes/scope_settings.xml
131+
.idea/vcs.xml
132+
.idea/jsLibraryMappings.xml
133+
.idea/datasources.xml
134+
.idea/dataSources.ids
135+
.idea/sqlDataSources.xml
136+
.idea/dynamic.xml
137+
.idea/uiDesigner.xml
138+
139+
# OS-specific files
140+
.DS_Store
141+
.DS_Store?
142+
._*
143+
.Spotlight-V100
144+
.Trashes
145+
ehthumbs.db
146+
Thumbs.db
147+
148+
# Legacy Eclipse project files
149+
.classpath
150+
.project
151+
.cproject
152+
.settings/
153+
154+
# Mobile Tools for Java (J2ME)
155+
.mtj.tmp/
156+
157+
# Package Files #
158+
*.war
159+
*.ear
160+
161+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
162+
hs_err_pid*
163+
164+
## Plugin-specific files:
165+
166+
# mpeltonen/sbt-idea plugin
167+
.idea_modules/
168+
169+
# JIRA plugin
170+
atlassian-ide-plugin.xml
171+
172+
# Mongo Explorer plugin
173+
.idea/mongoSettings.xml
174+
175+
# Crashlytics plugin (for Android Studio and IntelliJ)
176+
com_crashlytics_export_strings.xml
177+
crashlytics.properties
178+
crashlytics-build.properties
179+
fabric.properties
180+
181+
### AndroidStudio Patch ###
182+
183+
!/gradle/wrapper/gradle-wrapper.jar
184+
185+
### Intellij ###
186+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
187+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
188+
189+
# User-specific stuff:
190+
.idea/**/workspace.xml
191+
.idea/**/tasks.xml
192+
193+
# Sensitive or high-churn files:
194+
.idea/**/dataSources/
195+
.idea/**/dataSources.ids
196+
.idea/**/dataSources.xml
197+
.idea/**/dataSources.local.xml
198+
.idea/**/sqlDataSources.xml
199+
.idea/**/dynamic.xml
200+
.idea/**/uiDesigner.xml
201+
202+
# Gradle:
203+
.idea/**/gradle.xml
204+
.idea/**/libraries
205+
206+
# CMake
207+
cmake-build-debug/
208+
209+
# Mongo Explorer plugin:
210+
.idea/**/mongoSettings.xml
211+
212+
## File-based project format:
213+
214+
## Plugin-specific files:
215+
216+
# IntelliJ
217+
218+
# mpeltonen/sbt-idea plugin
219+
220+
# JIRA plugin
221+
222+
# Cursive Clojure plugin
223+
.idea/replstate.xml
224+
225+
# Ruby plugin and RubyMine
226+
/.rakeTasks
227+
228+
# Crashlytics plugin (for Android Studio and IntelliJ)
229+
230+
### Intellij Patch ###
231+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
232+
233+
# *.iml
234+
# modules.xml
235+
# .idea/misc.xml
236+
# *.ipr
237+
238+
# Sonarlint plugin
239+
.idea/sonarlint
240+
241+
### Kotlin ###
242+
# Compiled class file
243+
244+
# Log file
245+
246+
# BlueJ files
247+
*.ctxt
248+
249+
# Mobile Tools for Java (J2ME)
250+
251+
# Package Files #
252+
*.jar
253+
*.zip
254+
*.tar.gz
255+
*.rar
256+
257+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
258+
259+
260+
# End of https://www.gitignore.io/api/kotlin,android,intellij,androidstudio

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Module for creating the BlueST-SDK library
44

55
## For using it
66

7-
Code compiled using gradle 8.2.1 and JDK 17.0.7
7+
Code compiled using gradle 8.7 and JDK 17.0.11
88

99
set on Gradle properties the Github Login name and SSO authentication
1010
Example:

app/build.gradle

-122
This file was deleted.

0 commit comments

Comments
 (0)