Skip to content

Commit f88abac

Browse files
authored
chore: bump verson for flutter-webrtc and update examples. (#558)
* chore: bump verson for flutter-webrtc and update examples. * bump version to 1.1.0.
1 parent 02edd39 commit f88abac

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+343
-318
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
# Changelog
22

33
--------------------------------------------
4+
[1.1.0] -2025-09-26
5+
6+
* Bump flutter-webrtc to 1.2.0
7+
* Docs(readme): replace pub.dartlang.org with pub.dev; normalize macOS; update Flutter docs link (#555)
8+
* Allow setting call-id (#552)
9+
* Extend configuration for ice gathering process (#550)
10+
* Setting for call statistics logs (#549)
11+
* Session-timers fix (#545)
12+
* Fix: persist 'ws_uri' in `_saveSettings` to enable proper registration (#542)
13+
* Sip message stateless reply reason fixes #539
14+
* Chore: removal of unneccesary pushToMaster work flow and import sorting
15+
* Fix bug for rfc2833. (#534)
16+
* Sessions keys toList added (#514)
17+
* Build fixes
18+
419
[1.0.1] -2024.12.19
520

621
* make sure the session terminates by @victortive in https://github.com/flutter-webrtc/dart-sip-ua/pull/485

example/.metadata

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: "d693b4b9dbac2acd4477aea4555ca6dcbea44ba2"
8+
channel: "[user-branch]"
9+
10+
project_type: app
11+
12+
# Tracks metadata for the flutter migrate command
13+
migration:
14+
platforms:
15+
- platform: root
16+
create_revision: d693b4b9dbac2acd4477aea4555ca6dcbea44ba2
17+
base_revision: d693b4b9dbac2acd4477aea4555ca6dcbea44ba2
18+
- platform: android
19+
create_revision: d693b4b9dbac2acd4477aea4555ca6dcbea44ba2
20+
base_revision: d693b4b9dbac2acd4477aea4555ca6dcbea44ba2
21+
- platform: ios
22+
create_revision: d693b4b9dbac2acd4477aea4555ca6dcbea44ba2
23+
base_revision: d693b4b9dbac2acd4477aea4555ca6dcbea44ba2
24+
- platform: linux
25+
create_revision: d693b4b9dbac2acd4477aea4555ca6dcbea44ba2
26+
base_revision: d693b4b9dbac2acd4477aea4555ca6dcbea44ba2
27+
- platform: macos
28+
create_revision: d693b4b9dbac2acd4477aea4555ca6dcbea44ba2
29+
base_revision: d693b4b9dbac2acd4477aea4555ca6dcbea44ba2
30+
- platform: web
31+
create_revision: d693b4b9dbac2acd4477aea4555ca6dcbea44ba2
32+
base_revision: d693b4b9dbac2acd4477aea4555ca6dcbea44ba2
33+
- platform: windows
34+
create_revision: d693b4b9dbac2acd4477aea4555ca6dcbea44ba2
35+
base_revision: d693b4b9dbac2acd4477aea4555ca6dcbea44ba2
36+
37+
# User provided section
38+
39+
# List of Local paths (relative to this file) that should be
40+
# ignored by the migrate tool.
41+
#
42+
# Files that are not part of the templates will be ignored by default.
43+
unmanaged_files:
44+
- 'lib/main.dart'
45+
- 'ios/Runner.xcodeproj/project.pbxproj'

example/android/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ gradle-wrapper.jar
55
/gradlew.bat
66
/local.properties
77
GeneratedPluginRegistrant.java
8+
.cxx/
89

910
# Remember to never publicly share your keystore.
10-
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11+
# See https://flutter.dev/to/reference-keystore
1112
key.properties
1213
**/*.keystore
1314
**/*.jks

example/android/app/build.gradle

Lines changed: 0 additions & 58 deletions
This file was deleted.
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
plugins {
2+
id("com.android.application")
3+
id("kotlin-android")
4+
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
5+
id("dev.flutter.flutter-gradle-plugin")
6+
}
7+
8+
android {
9+
namespace = "com.github.cloudwebrtc.dart_sip_ua_example"
10+
compileSdk = flutter.compileSdkVersion
11+
ndkVersion = flutter.ndkVersion
12+
13+
compileOptions {
14+
sourceCompatibility = JavaVersion.VERSION_11
15+
targetCompatibility = JavaVersion.VERSION_11
16+
}
17+
18+
kotlinOptions {
19+
jvmTarget = JavaVersion.VERSION_11.toString()
20+
}
21+
22+
defaultConfig {
23+
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
24+
applicationId = "com.github.cloudwebrtc.dart_sip_ua_example"
25+
// You can update the following values to match your application needs.
26+
// For more information, see: https://flutter.dev/to/review-gradle-config.
27+
minSdk = flutter.minSdkVersion
28+
targetSdk = flutter.targetSdkVersion
29+
versionCode = flutter.versionCode
30+
versionName = flutter.versionName
31+
}
32+
33+
buildTypes {
34+
release {
35+
// TODO: Add your own signing config for the release build.
36+
// Signing with the debug keys for now, so `flutter run --release` works.
37+
signingConfig = signingConfigs.getByName("debug")
38+
}
39+
}
40+
}
41+
42+
flutter {
43+
source = "../.."
44+
}

example/android/app/src/main/java/com/github/cloudwebrtc/dart_sip_ua_example/MainActivity.java

Lines changed: 0 additions & 6 deletions
This file was deleted.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package com.github.cloudwebrtc.dart_sip_ua_example
2+
3+
import io.flutter.embedding.android.FlutterActivity
4+
5+
class MainActivity : FlutterActivity()

example/android/build.gradle

Lines changed: 0 additions & 18 deletions
This file was deleted.

example/android/build.gradle.kts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
allprojects {
2+
repositories {
3+
google()
4+
mavenCentral()
5+
}
6+
}
7+
8+
val newBuildDir: Directory =
9+
rootProject.layout.buildDirectory
10+
.dir("../../build")
11+
.get()
12+
rootProject.layout.buildDirectory.value(newBuildDir)
13+
14+
subprojects {
15+
val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)
16+
project.layout.buildDirectory.value(newSubprojectBuildDir)
17+
}
18+
subprojects {
19+
project.evaluationDependsOn(":app")
20+
}
21+
22+
tasks.register<Delete>("clean") {
23+
delete(rootProject.layout.buildDirectory)
24+
}

example/android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
org.gradle.jvmargs=-Xmx4G -XX:+HeapDumpOnOutOfMemoryError
1+
org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError
22
android.useAndroidX=true
33
android.enableJetifier=true

0 commit comments

Comments
 (0)