File tree 5 files changed +22
-14
lines changed
5 files changed +22
-14
lines changed Original file line number Diff line number Diff line change
1
+ # Release v20.1.1
2
+
3
+ * MISC: manifest cleanup
4
+ * MISC: update all android deps
5
+ * FIX: ensure a valid URI is provided for connection (#460 )
6
+ * FIX: make cryptosign and CRA support authrole parameter (#458 )
7
+ * NEW: Implement EIP712 Signing (#454 )
8
+ * FIX: Set callerSessionID, callerAuthID and callerAuthRole (#446 )
9
+ * NEW: AndroidWebSocket: Change writer to sans-io architecture (#445 )
10
+ * FIX: ensure to close nio loop on netty (#442 )
11
+ * DOC: Add Android websocket example (#436 )
12
+ * NEW: XBR Buyer/Seller Part 1 (#434 )
13
+ * MISC: add deploy script (currently unused)
14
+
15
+ ---
16
+
1
17
# Release v19.3.1
2
18
3
19
* MISC: Update dependency versions
Original file line number Diff line number Diff line change 1
1
BUILD_DATE =$(shell date -u +"% Y-% m-% d")
2
- AUTOBAHN_JAVA_VERSION ='19.3 .1'
2
+ AUTOBAHN_JAVA_VERSION ='20.1 .1'
3
3
AUTOBAHN_JAVA_VCS_REF ='unknown'
4
4
5
5
default :
Original file line number Diff line number Diff line change @@ -32,14 +32,14 @@ Grab via Maven:
32
32
<dependency >
33
33
<groupId >io.crossbar.autobahn</groupId >
34
34
<artifactId >autobahn-android</artifactId >
35
- <version >18.5 .1</version >
35
+ <version >20.1 .1</version >
36
36
</dependency >
37
37
```
38
38
39
39
Gradle:
40
40
``` groovy
41
41
dependencies {
42
- implementation 'io.crossbar.autobahn:autobahn-android:18.5 .1'
42
+ implementation 'io.crossbar.autobahn:autobahn-android:20.1 .1'
43
43
}
44
44
```
45
45
For non-android systems use artifactID ` autobahn-java ` or just
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
- xmlns : tools =" http://schemas.android.com/tools"
4
- package =" io.crossbar.autobahn" >
5
- <application
6
- android : allowBackup =" true"
7
- android : label =" @string/app_name"
8
- android : supportsRtl =" true"
9
- tools : replace =" android:allowBackup" >
10
- </application >
11
- </manifest >
2
+ <manifest package =" io.crossbar.autobahn" />
Original file line number Diff line number Diff line change 12
12
android : label =" @string/app_name"
13
13
android : supportsRtl =" true"
14
14
android : theme =" @style/AppTheme"
15
- tools : replace =" android:label " >
15
+ tools : replace =" android:allowBackup " >
16
16
<activity android : name =" .android.MainActivity" >
17
17
<intent-filter >
18
+ <action android : name =" android.intent.action.VIEW" />
18
19
<action android : name =" android.intent.action.MAIN" />
19
20
<category android : name =" android.intent.category.LAUNCHER" />
20
21
</intent-filter >
You can’t perform that action at this time.
0 commit comments