-1
* What went wrong:
Execution failed for task ':flutter_webrtc:compileDebugKotlin'.
> Could not resolve all files for configuration ':flutter_webrtc:debugCompileClasspath'.
   > Could not find android-104.5112.03.jar (com.github.webrtc-sdk:android:104.5112.03).
     Searched in the following locations:
         https://jitpack.io/com/github/webrtc-sdk/android/104.5112.03/android-104.5112.03.jar
James Z
  • 12,209
  • 10
  • 24
  • 44
  • This is may be problem in your kotlin version. update the your kotlin version inside build.gradle file or follow this answer https://stackoverflow.com/questions/59893018/flutter-execution-failed-for-task-appcompiledebugkotlin – Noyon Mar 14 '23 at 09:01
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Mar 14 '23 at 10:50

1 Answers1

0

Remove

com.github.webrtc-sdk from app/build.gradle

and add this

 implementation 'com.github.webrtc-sdk:android:104.5112.07'
MrShakila
  • 874
  • 1
  • 4
  • 19