Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .github/workflows/flutter_integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@ on:

jobs:
ios:
strategy:
matrix:
device: # Device names must be shown in `xcrun simctl list devices`
- 'iPhone 15' # we are not specifying the iOS version as it tends to change
fail-fast: false
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -22,7 +17,7 @@ jobs:

- uses: subosito/flutter-action@v2
with:
flutter-version: '3.24'
flutter-version: '3.29'
cache: true

# test_integration package depends on ably_flutter, so before we run integration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@

package io.ably.flutter.plugin;

import android.annotation.SuppressLint;

import androidx.annotation.UiThread;

import java.nio.ByteBuffer;
import java.util.Locale;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.atomic.AtomicBoolean;

Expand Down Expand Up @@ -160,7 +159,7 @@ void clearAll() {
}

private void logError(long id, String message, Throwable e) {
Log.e(TAG + name, String.format("%s [id=%d]", message, id), e);
Log.e(TAG + name, String.format(Locale.ROOT, "%s [id=%d]", message, id), e);
}

private final class EventSinkImplementation implements EventChannel.EventSink {
Expand All @@ -169,10 +168,9 @@ private final class EventSinkImplementation implements EventChannel.EventSink {
final String name;
final AtomicBoolean hasEnded = new AtomicBoolean(false);

@SuppressLint("DefaultLocale")
private EventSinkImplementation(long id) {
this.id = id;
this.name = String.format("%s#%d", StreamsChannel.this.name, id);
this.name = String.format(Locale.ROOT, "%s#%d", StreamsChannel.this.name, id);
}

@Override
Expand Down
Loading