Skip to content

Commit cf18fae

Browse files
committed
Align with ST BLE Sensor V5.2.13
Signed-off-by: Luca Pezzoni <luca.pezzoni@st.com>
1 parent c19cd96 commit cf18fae

File tree

270 files changed

+4539
-2978
lines changed

Some content is hidden

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

270 files changed

+4539
-2978
lines changed

License.html

Lines changed: 268 additions & 161 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,6 @@ Example:
1313
GPR_USER=PezzoniL
1414
GPR_API_KEY=XXXXXXXXXXXXXXXXXXXXXXXX
1515

16-
For using this application is necessary to downlaod the Android BlueST-SDK from:
17-
https://github.com/STMicroelectronics/BlueSTSDK_Android
18-
19-
tag BlueST-SDK_V1.2.14
20-
21-
and follow the instruction for compiling and publish on local maven repository the 2 libraries necessary for this application:
22-
* st-blue-sdk
23-
* st-opus
24-
2516

2617
## License
2718

app/build.gradle.kts

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
* If no LICENSE file comes with this software, it is provided AS-IS.
77
*/
88

9-
val stLocoApiKey: String by project
109
val stCompileSdk: Int by rootProject.extra
1110
val stMinSdk: Int by rootProject.extra
1211
val stTargetSdk: Int by rootProject.extra
@@ -20,7 +19,6 @@ plugins {
2019
alias(libs.plugins.kotlinSerialization)
2120
alias(libs.plugins.devtoolsKsp)
2221
alias(libs.plugins.jlleitschuhKtlint)
23-
alias(libs.plugins.appswithloveLoco)
2422
alias(libs.plugins.androidxSafeargs)
2523
alias(libs.plugins.jaredsburrowsLicense)
2624
}
@@ -37,8 +35,8 @@ android {
3735
applicationId = "com.st.bluems"
3836
minSdk = stMinSdk
3937
targetSdk = stTargetSdk
40-
versionCode = 341
41-
versionName = "5.2.12"
38+
versionCode = 352
39+
versionName = "5.2.13"
4240

4341
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
4442
vectorDrawables { useSupportLibrary = true }
@@ -119,17 +117,6 @@ configure<org.jlleitschuh.gradle.ktlint.KtlintExtension> {
119117
version.set("0.22.0")
120118
}
121119

122-
Loco {
123-
config {
124-
apiKey = stLocoApiKey
125-
// lang = ["it", "en"] // add as many languages as you want, they need to exist on localise.biz
126-
defLang = "en"
127-
fallbackLang = "en"
128-
tags = "st_bluems"
129-
resDir = "$projectDir/src/main/res"
130-
}
131-
}
132-
133120
dependencies {
134121
// Blue ST module:
135122
// - Core
@@ -156,7 +143,6 @@ dependencies {
156143
// Blue ST SDK
157144
implementation(libs.st.sdk)
158145

159-
160146
// Room
161147
implementation(libs.bundles.room)
162148
ksp(libs.androidx.room.compiler)

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,15 @@
2020
<application
2121
android:name=".BlueMsApp"
2222
android:allowBackup="true"
23-
android:icon="@mipmap/ic_launcher"
2423
android:label="@string/app_name"
2524
android:requestLegacyExternalStorage="true"
2625
android:enableOnBackInvokedCallback="true"
26+
android:icon="@mipmap/ic_launcher"
2727
android:roundIcon="@mipmap/ic_launcher_round"
2828
android:supportsRtl="true"
2929
tools:targetApi="35"
3030
android:theme="@style/Theme.BlueMS">
3131

32-
<meta-data
33-
android:name="com.google.ar.core.min_apk_version"
34-
android:value="19"
35-
tools:replace="android:value" />
36-
37-
<meta-data
38-
android:name="com.google.ar.core"
39-
android:value="optional" />
40-
4132
<activity
4233
android:name=".MainActivity"
4334
android:configChanges="orientation"

0 commit comments

Comments
 (0)