-
Notifications
You must be signed in to change notification settings - Fork 459
Support self managed capability #237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support self managed capability #237
Conversation
Separate react native part from rest of Android code
…illed [Android] BackToForeground when app is killed.
answerIncomingCall is missing from the index.d.ts file
Update index.d.ts
…-and-android-video
I tried this PR but kept getting the below error: Do I need to change any methods or setup calls from the current version of this package? RNCallKeep.setup({
ios: {
appName: 'Sample App',
},
android: {
alertTitle: 'Permissions required',
alertDescription: 'Sample App needs to be able to accept incoming calls.',
cancelButton: 'Cancel',
okButton: 'ok',
imageName: 'phone_account_icon',
selfManaged: true,
},
}); |
Can you change the target branch to my one? The branch is totally not ready
to merge in yet.... It disbales hold on Android for starters :)
…On Mon, 6 Jul 2020, 17:08 Max Isom, ***@***.***> wrote:
I tried this PR but kept getting the below error:
[image: Screen Shot 2020-07-06 at 11 06 19 AM]
<https://user-images.githubusercontent.com/7410405/86614508-bc0a6500-bf78-11ea-99bf-513a8523244b.png>
Do I need to change any methods or setup calls from the current version of
this package?
RNCallKeep.setup({
ios: {
appName: 'Sample App',
},
android: {
alertTitle: 'Permissions required',
alertDescription: 'Sample App needs to be able to accept incoming calls.',
cancelButton: 'Cancel',
okButton: 'ok',
imageName: 'phone_account_icon',
selfManaged: true,
},
});
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#237 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAB3LLNS6VMEAKQPPUKMRM3R2HZIXANCNFSM4ORF3U3A>
.
|
Hi @codetheweb , do you still see this error? |
Sorry, I forgot to reply. |
Hey @luxiliu ! I have just tried your latest PR, and I've got the same error 'selfManaged' as @codetheweb. Do you have please a fix in mind for this ? |
Hi @meliodev, sorry, just updated, can you have a try again? |
Hi @luxiliu !
But now nothing happens when I call I don't know if I have to use some other new methods/listeners. Can you please share a snippet so I can test it. Thanks for your support 💯 |
@meliodev , |
@meliodev , I've updated the example, hope it could help you. |
android/src/main/java/io/wazo/callkeep/VoiceConnectionService.java
Outdated
Show resolved
Hide resolved
Hello @luxiliu, i like your approach to solve this new feature, thank you for this update. What is the next step to merge this PR? Do you think it's correct for resolving the video issue on callkeep with Android? I haven't tested but i read the documentation on the Android SDK and it looks like a good solution. Any objections here about this PR? |
@sboily , next step is probably to implement VideoProvider, which is to use system managed ui, but that could be in another PR. @danjenkins , do you have any concerns about this PR? |
Hi again @luxiliu after updating the example I have got this error |
@meliodev are you able to run the example? I feel like it's the problem with your code. |
@luxiliu I just run the example as it is. |
@meliodev , I'm afraid you need to have a look https://developer.android.com/guide/topics/connectivity/telecom/selfManaged |
@luxiliu first thank you for the awesome work you have provided to this library.
Now my main question is
|
@meliodev, sorry, I don't know about such libraries. I'm afraid you have to explore it yourself. |
Hello, i checked this PR and it add self managed capability to callkeep and not specially concentrated to the video support. I propose to renamed it to reflect this interesting work. If you are interesting about video support on callkeep, i open this PR #251. It add video support on callkeep. So basically it replace the Answer button by the video button etc ... This i not yet finished, but feedback is welcome. |
Please note there is also a work from @Telzio guy here about self managed capability : https://github.com/Telzio/react-native-callkeep/tree/feature-android-self-managed |
@luxiliu Why'd you close this? :) |
Yes I still had hope for somebody to help with that :( I really need that feature. I would love help and contribute but unfortunately I don't have enough knowledge on that. |
I'll create a new one |
I was hoping I could polish the code and raise another PR with some video support, but it turned out I couldn't find myself enough time to do the coding, so I think it's better to reopen it. Please provide feedback and re-review it, thanks. |
A new pull request is raised to just focus self-managed call support, #310 |
This is to support self-managed video call based on @danjenkins's changes.