Skip to content

Commit

Permalink
Packaging fixes, releasing 20.1.1 (#465)
Browse files Browse the repository at this point in the history
* update all android deps

* enable multidex for gallery

* update ci deps

* use the correct version

* manifest cleanup

* bump version

* add changelog
  • Loading branch information
om26er authored Jan 14, 2020
1 parent 1925d3b commit c6e4495
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 14 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# Release v20.1.1

* MISC: manifest cleanup
* MISC: update all android deps
* FIX: ensure a valid URI is provided for connection (#460)
* FIX: make cryptosign and CRA support authrole parameter (#458)
* NEW: Implement EIP712 Signing (#454)
* FIX: Set callerSessionID, callerAuthID and callerAuthRole (#446)
* NEW: AndroidWebSocket: Change writer to sans-io architecture (#445)
* FIX: ensure to close nio loop on netty (#442)
* DOC: Add Android websocket example (#436)
* NEW: XBR Buyer/Seller Part 1 (#434)
* MISC: add deploy script (currently unused)

---

# Release v19.3.1

* MISC: Update dependency versions
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
BUILD_DATE=$(shell date -u +"%Y-%m-%d")
AUTOBAHN_JAVA_VERSION='19.3.1'
AUTOBAHN_JAVA_VERSION='20.1.1'
AUTOBAHN_JAVA_VCS_REF='unknown'

default:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ Grab via Maven:
<dependency>
<groupId>io.crossbar.autobahn</groupId>
<artifactId>autobahn-android</artifactId>
<version>18.5.1</version>
<version>20.1.1</version>
</dependency>
```

Gradle:
```groovy
dependencies {
implementation 'io.crossbar.autobahn:autobahn-android:18.5.1'
implementation 'io.crossbar.autobahn:autobahn-android:20.1.1'
}
```
For non-android systems use artifactID `autobahn-java` or just
Expand Down
11 changes: 1 addition & 10 deletions autobahn/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="io.crossbar.autobahn">
<application
android:allowBackup="true"
android:label="@string/app_name"
android:supportsRtl="true"
tools:replace="android:allowBackup">
</application>
</manifest>
<manifest package="io.crossbar.autobahn"/>
3 changes: 2 additions & 1 deletion demo-gallery/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:replace="android:label">
tools:replace="android:allowBackup">
<activity android:name=".android.MainActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
Expand Down

0 comments on commit c6e4495

Please sign in to comment.