Commit 60d5916 1 parent ea0989e commit 60d5916 Copy full SHA for 60d5916
File tree 5 files changed +12
-9
lines changed
5 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
+ Version 1.19.0
4
+ * Added ` ScanResult#getAdvertisingSid ` , thanks @KrzysztofMamak (https://github.com/dariuszseweryn/RxAndroidBle/pull/856 )
5
+
3
6
Version 1.18.1
4
7
* Fixed ` CharacteristicLongWriteOperation ` defaults for API 33 (Android 13) (https://github.com/dariuszseweryn/RxAndroidBle/pull/847 )
5
8
Original file line number Diff line number Diff line change @@ -28,19 +28,19 @@ The first step is to include RxAndroidBle into your project.
28
28
### Gradle
29
29
If you use Gradle to build your project — as a Gradle project implementation dependency:
30
30
``` groovy
31
- implementation "com.polidea.rxandroidble3:rxandroidble:1.18.1 "
31
+ implementation "com.polidea.rxandroidble3:rxandroidble:1.19.0 "
32
32
```
33
33
or for RxJava 2 based artifact
34
34
``` groovy
35
- implementation "com.polidea.rxandroidble2:rxandroidble:1.18.1 "
35
+ implementation "com.polidea.rxandroidble2:rxandroidble:1.19.0 "
36
36
```
37
37
### Maven
38
38
If you use Maven to build your project — as a Maven project dependency:
39
39
``` xml
40
40
<dependency >
41
41
<groupId >com.polidea.rxandroidble3</groupId >
42
42
<artifactId >rxandroidble</artifactId >
43
- <version >1.18.1 </version >
43
+ <version >1.19.0 </version >
44
44
<type >aar</type >
45
45
</dependency >
46
46
```
@@ -49,7 +49,7 @@ or for RxJava 2 based artifact
49
49
<dependency >
50
50
<groupId >com.polidea.rxandroidble2</groupId >
51
51
<artifactId >rxandroidble</artifactId >
52
- <version >1.18.1 </version >
52
+ <version >1.19.0 </version >
53
53
<type >aar</type >
54
54
</dependency >
55
55
```
Original file line number Diff line number Diff line change 1
1
GROUP =com.polidea.rxandroidble2
2
- VERSION_NAME =1.18.1
2
+ VERSION_NAME =1.19.0
3
3
4
4
POM_DESCRIPTION =RxJava backed support for Bluetooth Low Energy in Android
5
5
Original file line number Diff line number Diff line change @@ -63,15 +63,15 @@ Get MockRxAndroidBle via Maven:
63
63
<dependency >
64
64
<groupId >com.polidea.rxandroidble2</groupId >
65
65
<artifactId >mockclient</artifactId >
66
- <version >1.18.1 </version >
66
+ <version >1.19.0 </version >
67
67
<type >aar</type >
68
68
</dependency >
69
69
```
70
70
71
71
or via Gradle
72
72
73
73
``` groovy
74
- implementation "com.polidea.rxandroidble2:mockclient:1.18.1 "
74
+ implementation "com.polidea.rxandroidble2:mockclient:1.19.0 "
75
75
```
76
76
77
77
### License
Original file line number Diff line number Diff line change @@ -65,15 +65,15 @@ Get MockRxAndroidBle via Maven:
65
65
<dependency >
66
66
<groupId >com.polidea.rxandroidble3</groupId >
67
67
<artifactId >mockclient</artifactId >
68
- <version >1.18.1 </version >
68
+ <version >1.19.0 </version >
69
69
<type >aar</type >
70
70
</dependency >
71
71
```
72
72
73
73
or via Gradle
74
74
75
75
``` groovy
76
- implementation "com.polidea.rxandroidble3:mockclient:1.18.1 "
76
+ implementation "com.polidea.rxandroidble3:mockclient:1.19.0 "
77
77
```
78
78
79
79
### License
You can’t perform that action at this time.
0 commit comments