Make sure to check the demo app(s) for sample usage
I did.
Make sure to check the existing issues in this repository
I did.
If the demo apps cannot help and there is no issue for your problem, tell us about it
I ran into the same issue as #31 . So I searched on the internet and found out that it could be a problem with the multi dex config. My app.gradle looks like this:
I added android.enableDexingArtifactTransform.desugaring=false to the App_Ressources/Android/gradle.properties which solved #31 . But now, once I open the call component which includes the readme's sample code, I get this error message after I got asked for the camera and microphone permissions:
Which platform(s) does your issue occur on?
iOS/Android/Both: only Android
iOS/Android versions: I've tested with android 9, I don't know about the other versions.
emulator or device. What type of device: Real device
Please, provide the following version numbers that your issue occurs with:
Please, tell us how to recreate the issue in as much detail as possible.
Create a nativescript (angular) project, change app.gradle to the provided one and add android.enableDexingArtifactTransform.desugaring=false to the App_Ressources/Android/gradle.properties.
Make sure to check the demo app(s) for sample usage
I did.
Make sure to check the existing issues in this repository
I did.
If the demo apps cannot help and there is no issue for your problem, tell us about it
I ran into the same issue as #31 . So I searched on the internet and found out that it could be a problem with the multi dex config. My
app.gradle
looks like this:I added
android.enableDexingArtifactTransform.desugaring=false
to theApp_Ressources/Android/gradle.properties
which solved #31 . But now, once I open the call component which includes the readme's sample code, I get this error message after I got asked for the camera and microphone permissions:Which platform(s) does your issue occur on?
Please, provide the following version numbers that your issue occurs with:
Please, tell us how to recreate the issue in as much detail as possible.
Create a nativescript (angular) project, change
app.gradle
to the provided one and addandroid.enableDexingArtifactTransform.desugaring=false
to theApp_Ressources/Android/gradle.properties
.Is there any code involved?
See above