Skip to content

Commit

Permalink
v4.2.0: Android: Updated to Chime SDK version 0.17.1. Android: Increa…
Browse files Browse the repository at this point in the history
…sed SDK min version to 23 because platform views cannot be displayed below API level 23.
  • Loading branch information
eggnstone committed Jun 10, 2022
1 parent a61f71f commit a49c3ab
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 18 deletions.
15 changes: 10 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
## 4.2.0

* Android: Updated to Chime SDK version 0.17.1.
* Android: Increased SDK min version to 23 because platform views cannot be displayed below API level 23.

## 4.1.0

* Android: updated to Chime SDK version 0.16.0 (media 0.16.0).
* Android: Updated to Chime SDK version 0.16.0 (media 0.16.0).

## 4.0.1

Expand Down Expand Up @@ -32,7 +37,7 @@

* Breaking change: iOS part temporarily disabled because files too large to publish.
* HELP! We need someone willing to fix the iOS part.
* Android: updated to Chime SDK version 0.12.0 (media 0.12.1).
* Android: Updated to Chime SDK version 0.12.0 (media 0.12.1).

## 1.0.2

Expand All @@ -41,7 +46,7 @@
## 1.0.1

* Fixed plugin methods which were broken by the change to sound null safety (they return Future<String?> instead of Future<String> now).
* Android: updated to Chime SDK version 0.11.2 (media 0.11.2).
* Android: Updated to Chime SDK version 0.11.2 (media 0.11.2).
* Added instructions on how to create amazon-chime-sdk-combined-without-libc++_shared.so.aar.

## 1.0.0
Expand All @@ -54,7 +59,7 @@

## 0.5.6

* iOS: updated to Chime SDK version 0.11.1 (media 0.7.1).
* iOS: Updated to Chime SDK version 0.11.1 (media 0.7.1).

## 0.5.5

Expand All @@ -63,7 +68,7 @@
## 0.5.4

* Added ListAudioDevices and ChooseAudioDevice.
* Android: updated to Chime SDK version 0.7.4 (media 0.7.0).
* Android: Updated to Chime SDK version 0.7.4 (media 0.7.0).

## 0.5.3

Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ Anything else will trigger ```UnsatisfiedLinkError```.

**Instructions for your app**

* Set the min SDK version to 21 or above.
* Set the min SDK version to 23 or above.
(Chime needs API level 21, but platform views cannot be displayed below API level 23.)

**Used Versions**
* [v0.16.0](https://github.com/aws/amazon-chime-sdk-android/releases/tag/v0.16.0)
* [v0.17.1](https://github.com/aws/amazon-chime-sdk-android/releases/tag/v0.17.1)

**References**
* https://github.com/aws/amazon-chime-sdk-android/releases/latest
Expand Down
12 changes: 8 additions & 4 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 32
compileSdkVersion 33

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
Expand All @@ -47,11 +47,15 @@ android {
}

defaultConfig {
minSdkVersion 21
// Chime needs API level 21.
// Platform views cannot be displayed below API level 23.
minSdkVersion 23
}
}

dependencies {
implementation 'software.aws.chimesdk:amazon-chime-sdk-media:0.16.0'
implementation 'software.aws.chimesdk:amazon-chime-sdk:0.16.0'
// https://search.maven.org/search?q=software.aws.chimesdk
implementation 'software.aws.chimesdk:amazon-chime-sdk:0.17.1'
implementation 'software.aws.chimesdk:amazon-chime-sdk-media:0.17.1'
implementation 'software.aws.chimesdk:amazon-chime-sdk-machine-learning:0.1.0'
}
1 change: 0 additions & 1 deletion chime.iml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,5 @@
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Dart SDK" level="project" />
<orderEntry type="library" name="Flutter Plugins" level="project" />
<orderEntry type="library" name="Dart Packages" level="project" />
</component>
</module>
12 changes: 8 additions & 4 deletions example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
compileSdkVersion 32
compileSdkVersion 33

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
Expand All @@ -43,9 +43,13 @@ android {

defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "dev.eggnstone.eggnstone_amazon_chime_example"
minSdkVersion 21
targetSdkVersion 32
applicationId "com.example.eggnstone_amazon_chime_example"

// Chime needs API level 21.
// Platform views cannot be displayed below API level 23.
minSdkVersion 23
targetSdkVersion flutter.targetSdkVersion

versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ packages:
path: ".."
relative: true
source: path
version: "4.1.0"
version: "4.2.0"
fake_async:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: eggnstone_amazon_chime
copyright: 2020-2022 Mark Eggenstein
description: A wrapper for the Amazon Chime SDKs. Allows to join Chime meetings using audio and video.
homepage: https://github.com/eggnstone/eggnstone_amazon_chime
version: 4.1.0
version: 4.2.0

environment:
sdk: ">=2.17.0 <3.0.0"
Expand Down

0 comments on commit a49c3ab

Please sign in to comment.