Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
740023e
Fix background call (#25)
cloudwebrtc Nov 11, 2020
03cb0cd
Upgrade version to 0.2.0.
cloudwebrtc Nov 11, 2020
b308413
fix: Missing null check (#30)
krille-chan Dec 1, 2020
59306ca
fix: change parameter handle to number (#39)
Pierre-Monier Dec 22, 2020
ddef4ba
Upgrade version to 0.2.1.
cloudwebrtc Dec 23, 2020
b3dd0b2
Add more field for pushkit playload.
cloudwebrtc Dec 24, 2020
cfb8f3f
Add push payload format to README.md.
cloudwebrtc Dec 26, 2020
0933f2b
update.
cloudwebrtc Dec 26, 2020
b09080e
Fix backToForeground method.
cloudwebrtc Jan 7, 2021
0046d4e
upgrade version to 0.2.3.
cloudwebrtc Jan 7, 2021
0090d26
hotfix.
cloudwebrtc Jan 7, 2021
27690ce
chore(deps): update dependency gradle to v6 (#32)
renovate[bot] Jan 10, 2021
6de659d
Delete gradle-wrapper.properties
cloudwebrtc Jan 10, 2021
4aede74
chore(deps): update dependency gradle to v6.8.1 (#48)
renovate[bot] Jan 25, 2021
7f23ec4
hasDefaultPhoneAccount give feedback about the user choice (#49)
Pierre-Monier Jan 29, 2021
bf318ed
Update README.md
cloudwebrtc May 5, 2021
a542fa1
Update README.md
cloudwebrtc May 5, 2021
cc57761
Fix crash when appName is not set.
cloudwebrtc May 21, 2021
f3e799a
Upgrade version to 0.2.4.
cloudwebrtc May 22, 2021
1052eda
null safety.
cloudwebrtc Jun 11, 2021
50652c4
When using the alert format, print the log and terminate the calkeep …
cloudwebrtc Jun 11, 2021
f49367b
Fixed receiving Voip push in background mode for iOS 13+.
cloudwebrtc Jun 11, 2021
9b4d23e
Update iOS project.
cloudwebrtc Jun 11, 2021
419ff9a
Add toolkit for fcm/apns push testing.
cloudwebrtc Jun 12, 2021
ea939ae
Update README.md
cloudwebrtc Jun 12, 2021
248b9ab
Update README.md
cloudwebrtc Jun 12, 2021
726db97
Upgrade version to 0.3.0
cloudwebrtc Jun 12, 2021
e736cae
Update README.md
cloudwebrtc Jun 12, 2021
276f73f
Fix that the call list cannot be displayed when the push is received …
cloudwebrtc Jun 16, 2021
395aaa3
feature: added some doc (#86)
efraespada Jul 11, 2021
fbcb3aa
Add foregroundService for Android 11.
cloudwebrtc Jul 27, 2021
948b070
bump version to 0.3.1.
cloudwebrtc Jul 27, 2021
5bb6385
fix cannot receive answer call on Android 11 (#98)
quango2304 Aug 4, 2021
dd1c872
[FIX] Duplicated call onAnswer. New open method. (#111)
efraespada Sep 8, 2021
5abd43e
feat: Add backgroundMode for setup.
cloudwebrtc Sep 27, 2021
df37b17
Upgrade version to 0.3.2.
cloudwebrtc Sep 27, 2021
c8425f7
Update README.md
cloudwebrtc Sep 28, 2021
f382f55
docs: fix typo in example (#126)
shomatan Nov 27, 2021
097e59d
fix: null cannot be cast to List<String> (#127)
shomatan Nov 27, 2021
376c935
Added payload management for CallKeepDidDisplayIncomingCall (#134)
simone-folador Feb 15, 2022
7169d9c
fix Android 12 missing READ_PHONE_NUMBERS permission (#141)
RuiChen0101 Apr 9, 2022
2461875
feature: include isCallActive in Android, added activeCalls method fo…
efraespada Oct 18, 2022
ace08d0
fix: Remove as `type` to allow null assignment.
cloudwebrtc Jan 24, 2023
d1c483e
release: 0.3.3.
cloudwebrtc Jan 24, 2023
67b2e21
Fix example (#166)
ryojiro Apr 2, 2023
f66bba5
Fix some error (#167)
ryojiro Apr 2, 2023
bc36106
Update example (#168)
ryojiro Apr 2, 2023
50e75ba
Improve Android broadcasts and iOS delegate (#159)
mouEsam Sep 5, 2023
7d8a0a6
Updated to the latest flutter and firebase messaging (#185)
mikaelwills May 19, 2024
c5ee757
make the Object nullable (#182)
klelandls Aug 24, 2024
0377bfd
Extracting UI responsibility, named parameters, android dismissal fix…
mikaelwills Aug 24, 2024
062ceb8
release: 0.4.0.
cloudwebrtc Aug 24, 2024
a3c4673
upgrade compileSdkVersion to 31 to avoid build release failed in andr…
sherlockvn Aug 26, 2024
5febb06
Updated firebase and dart sdk (#198)
mikaelwills Jan 17, 2025
db7a1bd
Firebase messaging and android build updates (#199)
mikaelwills Jan 28, 2025
a517c40
Updated README
Jan 28, 2025
a1c3908
Semver update
Jan 28, 2025
8564162
Added github workflows
Feb 3, 2025
20eadd7
Migrate FlutterCallkeepPlugin from Registrar API to FlutterPlugin (#202)
Sahad-uniconnect Mar 26, 2025
92bc158
Fix namespace bug (#196)
hatemragab Mar 26, 2025
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
32 changes: 32 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Publish plugin

on:
release:
types: [published]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
channel: "stable"
- name: Install project dependencies
run: flutter pub get
- name: Dart Format Check
run: dart format lib/ test/ --set-exit-if-changed
- name: Import Sorter Check
run: flutter pub run import_sorter:main --no-comments --exit-if-changed
- name: Dart Analyze Check
run: flutter analyze
#- name: Check Publish Warnings
# run: dart pub publish --dry-run
- name: Publish
uses: k-paxian/dart-package-publisher@v1.5.1
with:
credentialJson: ${{ secrets.CREDENTIAL_JSON }}
flutter: true
skipTests: true
force: true
25 changes: 25 additions & 0 deletions .github/workflows/pushMaster.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Push To Master

on:
push:
branches:
- main

jobs:
build:
name: Build Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
channel: "stable"
- name: Install project dependencies
run: flutter pub get
- name: Dart Format Check
run: dart format lib/ test/ --set-exit-if-changed
- name: Import Sorter Check
run: flutter pub run import_sorter:main --no-comments --exit-if-changed
- name: Dart Analyze Check
run: flutter analyze
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,8 @@ doc/api/
*.js_
*.js.deps
*.js.map
.DS_Store
.idea
.vscode
android/gradle*
example/ios/Podfile.lock
58 changes: 58 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,64 @@
# Changelog

-----------------------------------------------

[0.4.1] - 2025.02.03

* [Fix] Updates firebase messaging and android gradle

[0.4.0] - 2023.08.24

* [fix] Extracting UI responsibility, named parameters, android dismissal fix (#189).
* [fix] make the Object nullable (#182)
* [chore] Updated to the latest flutter and firebase messaging (#185)
* [feat] Improve Android broadcasts and iOS delegate (#159)

[0.3.3] - 2023.01.25

* [fix] Remove as `type` to allow null assignment.

[0.3.2] - 2021.09.27

* [feat] Add backgroundMode for setup.
* [fix] Duplicated call onAnswer. New open method. (#111)
* [fix] Cannot receive answer call on Android 11 (#98)

[0.3.1] - 2021.07.27

* Add foregroundService for Android 11.

[0.3.0] - 2021.06.12

* null safety
* Add toolkit for testing.
* Fixed receiving Voip push in background mode for iOS 13+.
* Fix crash when iOS push uses the wrong push format (alert).

[0.2.4] - 2021.01.08

* Fix crash when appName is not set.
* hasDefaultPhoneAccount give feedback about the user choice.

[0.2.3] - 2021.01.08

* Fix backToForeground method.

[0.2.2] - 2020.12.27

* Update json format for push payload.

[0.2.1] - 2020.12.23

* Fix: Missing null check.
* Fix: change parameter handle to number.

[0.2.0] - 2020.11.11

* Change FlutterCallKeep as a singleton.
* Add CallKeepPushKitToken event for iOS.
* Add firebase_messaging to example.
* Support waking CallKeep from PushKit when the app is closed.

[0.1.1] - 2020.09.17

* Fix compile error for iOS.
Expand Down
Loading