Skip to content

Commit c6e4495

Browse files
authored
Packaging fixes, releasing 20.1.1 (#465)
* update all android deps * enable multidex for gallery * update ci deps * use the correct version * manifest cleanup * bump version * add changelog
1 parent 1925d3b commit c6e4495

File tree

5 files changed

+22
-14
lines changed

5 files changed

+22
-14
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
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+
117
# Release v19.3.1
218

319
* MISC: Update dependency versions

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
BUILD_DATE=$(shell date -u +"%Y-%m-%d")
2-
AUTOBAHN_JAVA_VERSION='19.3.1'
2+
AUTOBAHN_JAVA_VERSION='20.1.1'
33
AUTOBAHN_JAVA_VCS_REF='unknown'
44

55
default:

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ Grab via Maven:
3232
<dependency>
3333
<groupId>io.crossbar.autobahn</groupId>
3434
<artifactId>autobahn-android</artifactId>
35-
<version>18.5.1</version>
35+
<version>20.1.1</version>
3636
</dependency>
3737
```
3838

3939
Gradle:
4040
```groovy
4141
dependencies {
42-
implementation 'io.crossbar.autobahn:autobahn-android:18.5.1'
42+
implementation 'io.crossbar.autobahn:autobahn-android:20.1.1'
4343
}
4444
```
4545
For non-android systems use artifactID `autobahn-java` or just

autobahn/src/main/AndroidManifest.xml

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,2 @@
11
<?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"/>

demo-gallery/src/main/AndroidManifest.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212
android:label="@string/app_name"
1313
android:supportsRtl="true"
1414
android:theme="@style/AppTheme"
15-
tools:replace="android:label">
15+
tools:replace="android:allowBackup">
1616
<activity android:name=".android.MainActivity">
1717
<intent-filter>
18+
<action android:name="android.intent.action.VIEW" />
1819
<action android:name="android.intent.action.MAIN"/>
1920
<category android:name="android.intent.category.LAUNCHER"/>
2021
</intent-filter>

0 commit comments

Comments
 (0)