java.lang.NullPointerException: MediaSource.Factory#setDrmSessionManagerProvider no longer handles null by instantiating a new DefaultDrmSessionManagerProvider. Explicitly construct and pass an instance in order to retain the old behavior.
2023. 3. 16. 00:20
Flutter
Flutter video player 개발중에 아래와 같이 에러가 발생했다 E/MethodChannel#better_player_channel(29539): Failed to handle method call E/MethodChannel#better_player_channel(29539): java.lang.NullPointerException: MediaSource.Factory#setDrmSessionManagerProvider no longer handles null by instantiating a new DefaultDrmSessionManagerProvider. Explicitly construct and pass an instance in order to retain the old behav..
flutter Class 'SoundStreamPlugin' is not abstract and does not implement abstract member public abstract fun onRequestPermissionsResult
2023. 3. 11. 00:13
Flutter
flutter에서 sound_stream: ^0.3.0 추가한후에 아래와 같은 안드로이드 빌드 오류가 발생했다. Androd에서 코드만 수정해주면 된다. Class 'SoundStreamPlugin' is not abstract and does not implement abstract member public abstract fun onRequestPermissionsResult 실기기에서 동작했으며, 아래와 같이 오류 코드 발생 Launching lib/main.dart on SM G998N in debug mode... Running Gradle task 'assembleDebug'... e: /Users/qualson/.pub-cache/hosted/pub.dev/sou..
[Flutter] AlertDialog를 통한 앱 강제 업데이트 방법
2022. 10. 25. 11:09
Flutter
앱 강제 업데이트 하는 방법에 대한 가이드 입니다. // show force update dialog void showForceUpdateDialog(bool forceUpdate) { showDialog( barrierDismissible: false, context: context, builder: (context) { return WillPopScope( onWillPop: () async => false, child: AlertDialog( title: Text(forceUpdate ? '업데이트가 필요' : '새로운 버전 출시'), content: Text(forceUpdate ? '중요한 변경으로 인해 업데이트를 해야만 앱을 이용할 수 있어요.' : '업데이트를 하고 새로운 기능을 만나보세요...