Skip to content

Commit 390dbe2

Browse files
🔖 Bump version 4.5.4
1 parent 114de70 commit 390dbe2

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed

‎CHANGELOG.md‎

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# CHANGELOG
22

3+
## Version 4.5.4
4+
5+
### New
6+
7+
- SDK init with simplified parameters
8+
9+
### Fixes
10+
11+
- Increase flow control overflow timer
12+
- UI freeze & crash during infinite commands rollback
13+
- FW update issue
14+
15+
### Features
16+
17+
- New commands : `animDisplay`, `animDelete` and `animClear`
18+
319
## Version 4.5.2
420

521
### Fixes

‎README.md‎

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ You can add the dependency in your application by modifying the application `bui
6565
and add:
6666
```
6767
dependencies {
68-
implementation 'com.github.activelook:android-sdk:v4.5.2'
68+
implementation 'com.github.activelook:android-sdk:v4.5.4'
6969
}
7070
```
7171

@@ -103,7 +103,6 @@ import com.activelook.activelooksdk.types.Rotation;
103103
Log.e("SDK", "Init");
104104
Sdk.init(
105105
MainActivity.this,
106-
"your-sdk-token-provided-by-microoled",
107106
gu -> Log.d("GLASSES_UPDATE", String.format("onUpdateStart : %s", gu)),
108107
gu_f -> {
109108
Log.d("GLASSES_UPDATE", String.format("onUpdateAvailableCallback : %s", gu_f.first));
@@ -153,7 +152,6 @@ Note: BlueTooth will not work on the android simulator. A physical device should
153152
### Initialization
154153

155154
To start using the SDK, first import and initialize the sdk.
156-
You will need a token provided by Microoled to authenticate with the update server.
157155
Five callbacks `onUpdateStart`, `onUpdateAvailableCallback`, `onUpdateProgress`, `onUpdateSuccess`, `onUpdateError`
158156
must be provided to handle glasses update events.
159157
Read the javadoc for more inforamtions.
@@ -174,7 +172,6 @@ public class DemoApp extends Application {
174172
super.onCreate();
175173
this.alsdk = Sdk.init(
176174
this.getApplicationContext(),
177-
"MyPrivateToken",
178175
(update) -> Log.i("GLASSES_UPDATE", "Starting glasses update."),
179176
(update) -> { Log.i("GLASSES_UPDATE", "A glasses update is available."); return true; },
180177
(update) -> Log.i("GLASSES_UPDATE", "Progressing glasses update."),

‎build.gradle‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
33
ext.sdkGroupId = "com.activelook"
4-
ext.sdkVersionCode = 452
5-
ext.sdkVersionName = '4.5.2'
4+
ext.sdkVersionCode = 454
5+
ext.sdkVersionName = '4.5.4'
66
ext.kotlin_version = '1.6.21'
77
repositories {
88
google()

0 commit comments

Comments
 (0)