Skip to content

Commit

Permalink
chore(version): bump to 2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Oct 6, 2022
1 parent 1255cf2 commit 25108d1
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Change Log
==========

Version 2.4.1
-------------

## Features:

- Add sources in release packages

## Bug fixes:

- Fix a crash in rtmpdroid in stopStream (in nativeClose)

Version 2.4.0
-------------

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,27 @@ Get StreamPack core latest artifacts on mavenCentral:

```groovy
dependencies {
implementation 'io.github.thibaultbee:streampack:2.4.0'
implementation 'io.github.thibaultbee:streampack:2.4.1'
}
```

If you want to use RTMP, you need to add the following dependency:

```groovy
dependencies {
implementation 'io.github.thibaultbee:streampack-extension-rtmp:2.4.0'
implementation 'io.github.thibaultbee:streampack-extension-rtmp:2.4.1'
}
```

If you want to use SRT, you need to add the following dependency:

```groovy
dependencies {
implementation 'io.github.thibaultbee:streampack-extension-srt:2.4.0'
implementation 'io.github.thibaultbee:streampack-extension-srt:2.4.1'
}
```

If you use both RTMP and SRT, you migh have a conflict with libssl.so and libcrypto.so because they
If you use both RTMP and SRT, you might have a conflict with libssl.so and libcrypto.so because they
are both includes in native dependencies. To solve this, you can add in your `build.gradle`:

```groovy
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ apply plugin: 'org.jetbrains.dokka'
buildscript {
ext {
// Upgrade StreamPack version here
streampackCode = 2_004_000
streampackVersion = '2.4.0'
streampackCode = 2_004_001
streampackVersion = '2.4.1'

minSdk = 21
compileSdk = 31
Expand Down

0 comments on commit 25108d1

Please sign in to comment.