├── .clang-format ├── .github ├── labeler.yml ├── recipe.yaml └── workflows │ ├── analyze.yml │ ├── build.yml │ ├── integration_test.yml │ ├── pull_request_label.yml │ └── release.yml ├── .gitignore ├── README.md ├── analysis_options.yaml ├── analysis_options_plus.yaml ├── packages ├── audioplayers │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── assets │ │ │ ├── ambient_c_motion.mp3 │ │ │ ├── coins.wav │ │ │ ├── invalid.txt │ │ │ ├── laser.wav │ │ │ └── nasa_on_a_mission.mp3 │ │ ├── integration_test │ │ │ └── audioplayers_test.dart │ │ ├── lib │ │ │ ├── components │ │ │ │ ├── btn.dart │ │ │ │ ├── cbx.dart │ │ │ │ ├── dlg.dart │ │ │ │ ├── drop_down.dart │ │ │ │ ├── list_tile.dart │ │ │ │ ├── pad.dart │ │ │ │ ├── player_widget.dart │ │ │ │ ├── properties_widget.dart │ │ │ │ ├── stream_widget.dart │ │ │ │ ├── tab_content.dart │ │ │ │ ├── tabs.dart │ │ │ │ ├── tgl.dart │ │ │ │ └── txt.dart │ │ │ ├── main.dart │ │ │ ├── tabs │ │ │ │ ├── audio_context.dart │ │ │ │ ├── controls.dart │ │ │ │ ├── logger.dart │ │ │ │ ├── sources.dart │ │ │ │ └── streams.dart │ │ │ └── utils.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── audioplayers_tizen_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── audio_player.cc │ │ ├── audio_player.h │ │ ├── audio_player_error.h │ │ ├── audioplayers_tizen_plugin.cc │ │ └── log.h ├── battery_plus │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── battery_plus_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── battery_plus_tizen_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── battery_plus_tizen_plugin.cc │ │ ├── device_battery.cc │ │ ├── device_battery.h │ │ └── log.h ├── camera │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── camera_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ ├── camera_tizen.dart │ │ └── src │ │ │ ├── type_conversion.dart │ │ │ └── utils.dart │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── camera_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── camera_device.cc │ │ ├── camera_device.h │ │ ├── camera_method_channel.cc │ │ ├── camera_method_channel.h │ │ ├── camera_plugin.cc │ │ ├── device_method_channel.cc │ │ ├── device_method_channel.h │ │ ├── log.h │ │ ├── orientation_manager.cc │ │ ├── orientation_manager.h │ │ ├── permission_manager.cc │ │ └── permission_manager.h ├── connectivity_plus │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── connectivity_plus_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── connectivity_plus_tizen_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── connection.cc │ │ ├── connection.h │ │ ├── connectivity_plus_tizen_plugin.cc │ │ └── log.h ├── device_info_plus │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── device_info_plus_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ └── device_info_plus_tizen.dart │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── device_info_plus_tizen_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── device_info_plus_tizen_plugin.cc │ │ └── log.h ├── firebase_core │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ ├── firebase_app_tizen.dart │ │ └── firebase_core_tizen.dart │ └── pubspec.yaml ├── flutter_app_badger │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── integration_test │ │ │ └── flutter_app_badger_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── flutter_app_badger_tizen_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── flutter_app_badger_tizen_plugin.cc │ │ ├── log.h │ │ ├── tizen_badge.cc │ │ └── tizen_badge.h ├── flutter_secure_storage │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── flutter_secure_storage_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── flutter_secure_storage_tizen_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── flutter_secure_storage_tizen_plugin.cc │ │ ├── log.h │ │ ├── secure_storage.cc │ │ └── secure_storage.h ├── flutter_tts │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── integration_test │ │ │ └── flutter_tts_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── flutter_tts_tizen_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── flutter_tts_tizen_plugin.cc │ │ ├── log.h │ │ ├── text_to_speech.cc │ │ └── text_to_speech.h ├── flutter_webrtc │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── flutter_webrtc_demo │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── lib │ │ │ │ ├── main.dart │ │ │ │ └── src │ │ │ │ │ ├── call_sample │ │ │ │ │ ├── call_sample.dart │ │ │ │ │ ├── data_channel_sample.dart │ │ │ │ │ ├── random_string.dart │ │ │ │ │ ├── settings.dart │ │ │ │ │ └── signaling.dart │ │ │ │ │ ├── route_item.dart │ │ │ │ │ ├── utils │ │ │ │ │ ├── device_info.dart │ │ │ │ │ ├── device_info_web.dart │ │ │ │ │ ├── screen_select_dialog.dart │ │ │ │ │ ├── turn.dart │ │ │ │ │ ├── turn_web.dart │ │ │ │ │ ├── websocket.dart │ │ │ │ │ └── websocket_web.dart │ │ │ │ │ └── widgets │ │ │ │ │ └── screen_select_dialog.dart │ │ │ ├── pubspec.yaml │ │ │ ├── renovate.json │ │ │ ├── screenshots │ │ │ │ ├── android-01.png │ │ │ │ ├── android-02.png │ │ │ │ ├── flutter-webrtc-android-example.png │ │ │ │ ├── flutter-webrtc-desktop-01.png │ │ │ │ ├── flutter-webrtc-desktop-02.png │ │ │ │ ├── flutter-webrtc-desktop-03.png │ │ │ │ ├── flutter-webrtc-ios-example.png │ │ │ │ ├── ios-01.jpeg │ │ │ │ └── ios-02.jpeg │ │ │ ├── test │ │ │ │ └── widget_test.dart │ │ │ └── tizen │ │ │ │ ├── .gitignore │ │ │ │ ├── App.cs │ │ │ │ ├── Runner.csproj │ │ │ │ ├── shared │ │ │ │ └── res │ │ │ │ │ └── ic_launcher.png │ │ │ │ └── tizen-manifest.xml │ │ └── flutter_webrtc_example │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── lib │ │ │ ├── main.dart │ │ │ └── src │ │ │ │ ├── device_enumeration_sample.dart │ │ │ │ ├── get_display_media_sample.dart │ │ │ │ ├── get_user_media_sample.dart │ │ │ │ ├── get_user_media_sample_web.dart │ │ │ │ ├── loopback_data_channel_sample.dart │ │ │ │ ├── loopback_sample_unified_tracks.dart │ │ │ │ ├── loopback_sample_with_get_stats.dart │ │ │ │ ├── route_item.dart │ │ │ │ ├── step-by-step-tutorial.txt │ │ │ │ └── widgets │ │ │ │ └── screen_select_dialog.dart │ │ │ ├── pubspec.yaml │ │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ ├── flutter_common.h │ │ ├── flutter_data_channel.h │ │ ├── flutter_frame_cryptor.h │ │ ├── flutter_media_stream.h │ │ ├── flutter_peerconnection.h │ │ ├── flutter_video_renderer.h │ │ ├── flutter_webrtc.h │ │ ├── flutter_webrtc_base.h │ │ └── flutter_webrtc_tizen_plugin.h │ │ ├── lib │ │ ├── aarch64 │ │ │ └── libwebrtc.so │ │ ├── armel │ │ │ └── libwebrtc.so │ │ └── i586 │ │ │ └── libwebrtc.so │ │ ├── project_def.prop │ │ ├── src │ │ ├── flutter_common.cc │ │ ├── flutter_data_channel.cc │ │ ├── flutter_frame_cryptor.cc │ │ ├── flutter_media_stream.cc │ │ ├── flutter_peerconnection.cc │ │ ├── flutter_video_renderer.cc │ │ ├── flutter_webrtc.cc │ │ ├── flutter_webrtc_base.cc │ │ ├── flutter_webrtc_tizen_plugin.cc │ │ └── log.h │ │ └── third_party │ │ ├── libwebrtc │ │ └── include │ │ │ ├── base │ │ │ ├── atomicops.h │ │ │ ├── fixed_size_function.h │ │ │ ├── portable.h │ │ │ ├── refcount.h │ │ │ ├── refcountedobject.h │ │ │ └── scoped_ref_ptr.h │ │ │ ├── helper.h │ │ │ ├── libwebrtc.h │ │ │ ├── rtc_audio_device.h │ │ │ ├── rtc_audio_frame.h │ │ │ ├── rtc_audio_source.h │ │ │ ├── rtc_audio_track.h │ │ │ ├── rtc_data_channel.h │ │ │ ├── rtc_desktop_capturer.h │ │ │ ├── rtc_desktop_device.h │ │ │ ├── rtc_desktop_media_list.h │ │ │ ├── rtc_dtls_transport.h │ │ │ ├── rtc_dtmf_sender.h │ │ │ ├── rtc_frame_cryptor.h │ │ │ ├── rtc_ice_candidate.h │ │ │ ├── rtc_ice_transport.h │ │ │ ├── rtc_media_stream.h │ │ │ ├── rtc_media_track.h │ │ │ ├── rtc_mediaconstraints.h │ │ │ ├── rtc_peerconnection.h │ │ │ ├── rtc_peerconnection_factory.h │ │ │ ├── rtc_rtp_capabilities.h │ │ │ ├── rtc_rtp_parameters.h │ │ │ ├── rtc_rtp_receiver.h │ │ │ ├── rtc_rtp_sender.h │ │ │ ├── rtc_rtp_transceiver.h │ │ │ ├── rtc_session_description.h │ │ │ ├── rtc_types.h │ │ │ ├── rtc_video_device.h │ │ │ ├── rtc_video_frame.h │ │ │ ├── rtc_video_renderer.h │ │ │ ├── rtc_video_source.h │ │ │ └── rtc_video_track.h │ │ └── uuidxx │ │ ├── LICENSE │ │ ├── uuidxx.cc │ │ └── uuidxx.h ├── geolocator │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── integration_test │ │ │ └── geolocator_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── geolocator_tizen_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── app_settings_manager.cc │ │ ├── app_settings_manager.h │ │ ├── geolocator_tizen_plugin.cc │ │ ├── location_manager.cc │ │ ├── location_manager.h │ │ ├── log.h │ │ ├── permission_manager.cc │ │ ├── permission_manager.h │ │ └── position.h ├── google_maps_flutter │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── assets │ │ │ ├── 2.0x │ │ │ │ └── red_square.png │ │ │ ├── 3.0x │ │ │ │ └── red_square.png │ │ │ ├── map.html │ │ │ ├── night_mode.json │ │ │ └── red_square.png │ │ ├── integration_test │ │ │ ├── google_maps_test.dart │ │ │ └── src │ │ │ │ ├── maps_controller.dart │ │ │ │ ├── maps_inspector.dart │ │ │ │ ├── resources │ │ │ │ ├── icon_image.png │ │ │ │ └── icon_image_base64.dart │ │ │ │ ├── shared.dart │ │ │ │ └── tiles_inspector.dart │ │ ├── lib │ │ │ ├── animate_camera.dart │ │ │ ├── clustering.dart │ │ │ ├── custom_marker_icon.dart │ │ │ ├── heatmap.dart │ │ │ ├── lite_mode.dart │ │ │ ├── main.dart │ │ │ ├── map_click.dart │ │ │ ├── map_coordinates.dart │ │ │ ├── map_map_id.dart │ │ │ ├── map_ui.dart │ │ │ ├── marker_icons.dart │ │ │ ├── move_camera.dart │ │ │ ├── padding.dart │ │ │ ├── page.dart │ │ │ ├── place_circle.dart │ │ │ ├── place_marker.dart │ │ │ ├── place_polygon.dart │ │ │ ├── place_polyline.dart │ │ │ ├── readme_sample.dart │ │ │ ├── scrolling_map.dart │ │ │ ├── snapshot.dart │ │ │ └── tile_overlay.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ ├── google_maps_flutter_tizen.dart │ │ └── src │ │ │ ├── circle.dart │ │ │ ├── circles.dart │ │ │ ├── convert.dart │ │ │ ├── google_maps_controller.dart │ │ │ ├── google_maps_flutter_tizen.dart │ │ │ ├── marker.dart │ │ │ ├── marker_clustering.dart │ │ │ ├── markers.dart │ │ │ ├── polygon.dart │ │ │ ├── polygons.dart │ │ │ ├── polyline.dart │ │ │ ├── polylines.dart │ │ │ ├── types.dart │ │ │ └── util.dart │ └── pubspec.yaml ├── google_sign_in │ ├── .gitignore │ ├── .pubignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── assets │ │ └── images │ │ │ └── qrcode.svg │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── lib │ │ │ ├── credentials.dart │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ ├── google_sign_in_tizen.dart │ │ └── src │ │ │ ├── authorization_exception.dart │ │ │ ├── device_flow_widget.dart │ │ │ └── oauth2.dart │ └── pubspec.yaml ├── image_picker │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── image_picker_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ └── image_picker_tizen.dart │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── image_picker_tizen_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── image_picker_tizen_plugin.cc │ │ ├── image_resize.cc │ │ ├── image_resize.h │ │ ├── log.h │ │ ├── permission_manager.cc │ │ └── permission_manager.h ├── in_app_purchase │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── in_app_purchase_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ ├── in_app_purchase_tizen.dart │ │ └── src │ │ │ ├── billing_manager.dart │ │ │ ├── in_app_purchase_tizen_platform.dart │ │ │ ├── in_app_purchase_tizen_platform_addition.dart │ │ │ └── messages.g.dart │ ├── pigeons │ │ └── messages.dart │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ ├── in_app_purchase_tizen_plugin.h │ │ └── rapidjson │ │ │ ├── allocators.h │ │ │ ├── cursorstreamwrapper.h │ │ │ ├── document.h │ │ │ ├── encodedstream.h │ │ │ ├── encodings.h │ │ │ ├── error │ │ │ ├── en.h │ │ │ └── error.h │ │ │ ├── filereadstream.h │ │ │ ├── filewritestream.h │ │ │ ├── fwd.h │ │ │ ├── internal │ │ │ ├── biginteger.h │ │ │ ├── clzll.h │ │ │ ├── diyfp.h │ │ │ ├── dtoa.h │ │ │ ├── ieee754.h │ │ │ ├── itoa.h │ │ │ ├── meta.h │ │ │ ├── pow10.h │ │ │ ├── regex.h │ │ │ ├── stack.h │ │ │ ├── strfunc.h │ │ │ ├── strtod.h │ │ │ └── swap.h │ │ │ ├── istreamwrapper.h │ │ │ ├── memorybuffer.h │ │ │ ├── memorystream.h │ │ │ ├── msinttypes │ │ │ ├── inttypes.h │ │ │ └── stdint.h │ │ │ ├── ostreamwrapper.h │ │ │ ├── pointer.h │ │ │ ├── prettywriter.h │ │ │ ├── rapidjson.h │ │ │ ├── reader.h │ │ │ ├── schema.h │ │ │ ├── stream.h │ │ │ ├── stringbuffer.h │ │ │ ├── uri.h │ │ │ └── writer.h │ │ ├── project_def.prop │ │ └── src │ │ ├── billing_manager.cc │ │ ├── billing_manager.h │ │ ├── billing_service_proxy.cc │ │ ├── billing_service_proxy.h │ │ ├── in_app_purchase_tizen_plugin.cc │ │ ├── log.h │ │ ├── messages.cc │ │ └── messages.h ├── integration_test │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── example_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── integration_test_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── integration_test_plugin.cc │ │ └── log.h ├── messageport │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── messageport_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ ├── messageport_tizen.dart │ │ └── src │ │ │ └── messageport_manager.dart │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── messageport_tizen_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── log.h │ │ ├── messageport.cc │ │ ├── messageport.h │ │ └── messageport_tizen_plugin.cc ├── network_info_plus │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── network_info_plus_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── network_info_plus_tizen_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── log.h │ │ └── network_info_plus_tizen_plugin.cc ├── package_info_plus │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── package_info_plus_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── package_info_plus_tizen_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── log.h │ │ └── package_info_plus_tizen_plugin.cc ├── path_provider │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── path_provider_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ ├── path_provider_tizen.dart │ │ └── src │ │ │ ├── app_common.dart │ │ │ └── storage.dart │ └── pubspec.yaml ├── permission_handler │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── integration_test │ │ │ └── permission_handler_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── permission_handler_tizen_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── app_settings_manager.cc │ │ ├── app_settings_manager.h │ │ ├── log.h │ │ ├── permission_handler_tizen_plugin.cc │ │ ├── permission_manager.cc │ │ ├── permission_manager.h │ │ ├── permissions.h │ │ ├── service_manager.cc │ │ └── service_manager.h ├── sensors_plus │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── sensors_plus_test.dart │ │ ├── lib │ │ │ ├── main.dart │ │ │ └── snake.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── sensors_plus_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── device_sensor.cc │ │ ├── device_sensor.h │ │ ├── log.h │ │ └── sensors_plus_plugin.cc ├── shared_preferences │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── shared_preferences_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ ├── shared_preferences_tizen.dart │ │ └── src │ │ │ ├── shared_preferences_async_tizen.dart │ │ │ └── shared_preferences_tizen.dart │ └── pubspec.yaml ├── sqflite │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── assets │ │ │ ├── example.db │ │ │ └── issue_64.db │ │ ├── integration_test │ │ │ └── sqflite_test.dart │ │ ├── lib │ │ │ ├── batch_test_page.dart │ │ │ ├── database │ │ │ │ ├── database.dart │ │ │ │ ├── database_impl.dart │ │ │ │ ├── database_io.dart │ │ │ │ └── database_web.dart │ │ │ ├── deprecated_test_page.dart │ │ │ ├── exception_test_page.dart │ │ │ ├── exp_test_page.dart │ │ │ ├── main.dart │ │ │ ├── manual_test_page.dart │ │ │ ├── model │ │ │ │ ├── item.dart │ │ │ │ ├── main_item.dart │ │ │ │ └── test.dart │ │ │ ├── open_test_page.dart │ │ │ ├── raw_test_page.dart │ │ │ ├── slow_test_page.dart │ │ │ ├── src │ │ │ │ ├── common_import.dart │ │ │ │ ├── dev_utils.dart │ │ │ │ ├── expect.dart │ │ │ │ ├── item_widget.dart │ │ │ │ └── main_item_widget.dart │ │ │ ├── test_page.dart │ │ │ ├── todo_test_page.dart │ │ │ ├── type_test_page.dart │ │ │ └── utils.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ └── sqflite_tizen.dart │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── sqflite_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── constants.h │ │ ├── database_manager.cc │ │ ├── database_manager.h │ │ ├── errors.h │ │ ├── log.h │ │ ├── log_level.h │ │ └── sqflite_plugin.cc ├── tizen_app_control │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── tizen_app_control_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── service │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── RunnerService.csproj │ │ │ └── tizen-manifest.xml │ │ │ └── ui │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ ├── src │ │ │ ├── app_control.dart │ │ │ └── ffi.dart │ │ └── tizen_app_control.dart │ └── pubspec.yaml ├── tizen_app_manager │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── tizen_app_manager_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ ├── src │ │ │ ├── app_context.dart │ │ │ └── app_manager.dart │ │ └── tizen_app_manager.dart │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── tizen_app_manager_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── log.h │ │ ├── tizen_app_info.cc │ │ ├── tizen_app_info.h │ │ ├── tizen_app_manager.cc │ │ ├── tizen_app_manager.h │ │ └── tizen_app_manager_plugin.cc ├── tizen_audio_manager │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── audio_manager_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ └── tizen_audio_manager.dart │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── tizen_audio_manager_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── log.h │ │ ├── tizen_audio_manager.cc │ │ ├── tizen_audio_manager.h │ │ ├── tizen_audio_manager_error.h │ │ └── tizen_audio_manager_plugin.cc ├── tizen_bundle │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── bundle_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ └── tizen_bundle.dart │ └── pubspec.yaml ├── tizen_log │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ └── tizen_log.dart │ └── pubspec.yaml ├── tizen_notification │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ ├── ic_launcher.png │ │ │ │ └── test.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ ├── src │ │ │ └── types.dart │ │ └── tizen_notification.dart │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── tizen_notification_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── log.h │ │ └── tizen_notification_plugin.cc ├── tizen_package_manager │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── tizen_package_manager_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ ├── ic_launcher.png │ │ │ │ └── org.example.simplehome.tpk │ │ │ └── tizen-manifest.xml │ ├── lib │ │ └── tizen_package_manager.dart │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── tizen_package_manager_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── log.h │ │ ├── tizen_package_manager.cc │ │ ├── tizen_package_manager.h │ │ └── tizen_package_manager_plugin.cc ├── tizen_rpc_port │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── client │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── integration_test │ │ │ │ └── tizen_rpc_port_test.dart │ │ │ ├── lib │ │ │ │ ├── main.dart │ │ │ │ └── message_client.dart │ │ │ ├── pubspec.yaml │ │ │ └── tizen │ │ │ │ ├── .gitignore │ │ │ │ ├── App.cs │ │ │ │ ├── Runner.csproj │ │ │ │ ├── shared │ │ │ │ └── res │ │ │ │ │ └── ic_launcher.png │ │ │ │ └── tizen-manifest.xml │ │ ├── message.tidl │ │ └── server │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── integration_test │ │ │ └── tizen_rpc_port_test.dart │ │ │ ├── lib │ │ │ ├── main.dart │ │ │ └── message_server.dart │ │ │ ├── pubspec.yaml │ │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ ├── src │ │ │ ├── parcel.dart │ │ │ ├── port.dart │ │ │ ├── proxy_base.dart │ │ │ └── stub_base.dart │ │ └── tizen_rpc_port.dart │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── tizen_rpc_port_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── log.h │ │ ├── rpc_port_proxy.cc │ │ ├── rpc_port_proxy.h │ │ ├── rpc_port_result.h │ │ ├── rpc_port_stub.cc │ │ ├── rpc_port_stub.h │ │ └── tizen_rpc_port_plugin.cc ├── url_launcher │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── url_launcher_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ └── url_launcher_tizen.dart │ └── pubspec.yaml ├── video_player │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── assets │ │ │ ├── Audio.mp3 │ │ │ ├── Butterfly-209.mp4 │ │ │ ├── bumble_bee_captions.vtt │ │ │ └── flutter-mark-square-64.png │ │ ├── integration_test │ │ │ └── video_player_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ ├── integration_test.dart │ │ │ ├── video_player.dart │ │ │ └── video_player_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ ├── src │ │ │ └── messages.g.dart │ │ └── video_player_tizen.dart │ ├── pigeons │ │ └── messages.dart │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── video_player_tizen_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── log.h │ │ ├── media_player_proxy.cc │ │ ├── media_player_proxy.h │ │ ├── messages.cc │ │ ├── messages.h │ │ ├── video_player.cc │ │ ├── video_player.h │ │ ├── video_player_error.h │ │ ├── video_player_options.h │ │ └── video_player_tizen_plugin.cc ├── video_player_avplay │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── assets │ │ │ ├── Audio.mp3 │ │ │ └── Butterfly-209.mp4 │ │ ├── integration_test │ │ │ └── video_player_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ ├── src │ │ │ ├── closed_caption_file.dart │ │ │ ├── drm_configs.dart │ │ │ ├── hole.dart │ │ │ ├── messages.g.dart │ │ │ ├── sub_rip.dart │ │ │ ├── tracks.dart │ │ │ ├── video_player_tizen.dart │ │ │ └── web_vtt.dart │ │ ├── video_player.dart │ │ └── video_player_platform_interface.dart │ ├── pigeons │ │ └── messages.dart │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ ├── plusplayer │ │ │ └── plusplayer_wrapper.h │ │ ├── rapidjson │ │ │ ├── allocators.h │ │ │ ├── cursorstreamwrapper.h │ │ │ ├── document.h │ │ │ ├── encodedstream.h │ │ │ ├── encodings.h │ │ │ ├── error │ │ │ │ ├── en.h │ │ │ │ └── error.h │ │ │ ├── filereadstream.h │ │ │ ├── filewritestream.h │ │ │ ├── fwd.h │ │ │ ├── internal │ │ │ │ ├── biginteger.h │ │ │ │ ├── clzll.h │ │ │ │ ├── diyfp.h │ │ │ │ ├── dtoa.h │ │ │ │ ├── ieee754.h │ │ │ │ ├── itoa.h │ │ │ │ ├── meta.h │ │ │ │ ├── pow10.h │ │ │ │ ├── regex.h │ │ │ │ ├── stack.h │ │ │ │ ├── strfunc.h │ │ │ │ ├── strtod.h │ │ │ │ └── swap.h │ │ │ ├── istreamwrapper.h │ │ │ ├── memorybuffer.h │ │ │ ├── memorystream.h │ │ │ ├── msinttypes │ │ │ │ ├── inttypes.h │ │ │ │ └── stdint.h │ │ │ ├── ostreamwrapper.h │ │ │ ├── pointer.h │ │ │ ├── prettywriter.h │ │ │ ├── rapidjson.h │ │ │ ├── reader.h │ │ │ ├── schema.h │ │ │ ├── stream.h │ │ │ ├── stringbuffer.h │ │ │ ├── uri.h │ │ │ └── writer.h │ │ └── video_player_tizen_plugin.h │ │ ├── lib │ │ └── armel │ │ │ ├── 6.0 │ │ │ ├── libavcodec_common.so │ │ │ ├── libavformat_mmdash.so │ │ │ ├── libavformat_mmhls.so │ │ │ ├── libavformat_mmhttp.so │ │ │ ├── libavutil_common.so │ │ │ ├── libdash.so │ │ │ ├── libdashplusplayer_tvplus.so │ │ │ ├── libgstdash.so │ │ │ ├── libgsthls.so │ │ │ ├── libgsthttpdemux.so │ │ │ ├── libgstmmhttpsrc.so │ │ │ ├── libgstsubtitle_tvplus.so │ │ │ ├── libgstsubtitleparse_tvplus.so │ │ │ ├── libhls.so │ │ │ ├── libplusplayer-wrapper.so │ │ │ ├── libplusplayer_tvplus.so │ │ │ ├── libplusplayercore_tvplus.so │ │ │ ├── libslive-jsoncpp.so │ │ │ └── libtracksource_tvplus.so │ │ │ ├── 6.5 │ │ │ ├── libavcodec_common.so │ │ │ ├── libavformat_mmdash.so │ │ │ ├── libavformat_mmhls.so │ │ │ ├── libavformat_mmhttp.so │ │ │ ├── libavutil_common.so │ │ │ ├── libdash.so │ │ │ ├── libdashplusplayer_tvplus.so │ │ │ ├── libgstdash.so │ │ │ ├── libgsthls.so │ │ │ ├── libgsthttpdemux.so │ │ │ ├── libgstmmhttpsrc.so │ │ │ ├── libgstsubtitle_tvplus.so │ │ │ ├── libgstsubtitleparse_tvplus.so │ │ │ ├── libhls.so │ │ │ ├── libplusplayer-wrapper.so │ │ │ ├── libplusplayer_tvplus.so │ │ │ ├── libplusplayercore_tvplus.so │ │ │ ├── libslive-jsoncpp.so │ │ │ └── libtracksource_tvplus.so │ │ │ ├── 7.0 │ │ │ ├── libavcodec_common.so │ │ │ ├── libavformat_mmdash.so │ │ │ ├── libavformat_mmhls.so │ │ │ ├── libavformat_mmhttp.so │ │ │ ├── libavutil_common.so │ │ │ ├── libdash.so │ │ │ ├── libdashplusplayer_tvplus.so │ │ │ ├── libgstdash.so │ │ │ ├── libgsthls.so │ │ │ ├── libgsthttpdemux.so │ │ │ ├── libgstmmhttpsrc.so │ │ │ ├── libgstsubtitle_tvplus.so │ │ │ ├── libgstsubtitleparse_tvplus.so │ │ │ ├── libhls.so │ │ │ ├── libplusplayer-wrapper.so │ │ │ ├── libplusplayer_tvplus.so │ │ │ ├── libplusplayercore_tvplus.so │ │ │ ├── libslive-jsoncpp.so │ │ │ └── libtracksource_tvplus.so │ │ │ ├── 8.0 │ │ │ ├── libavcodec_common.so │ │ │ ├── libavformat_mmdash.so │ │ │ ├── libavformat_mmhls.so │ │ │ ├── libavformat_mmhttp.so │ │ │ ├── libavutil_common.so │ │ │ ├── libdash.so │ │ │ ├── libdashplusplayer_tvplus.so │ │ │ ├── libgstdash.so │ │ │ ├── libgsthls.so │ │ │ ├── libgsthttpdemux.so │ │ │ ├── libgstmmhttpsrc.so │ │ │ ├── libgstsubtitle_tvplus.so │ │ │ ├── libgstsubtitleparse_tvplus.so │ │ │ ├── libhls.so │ │ │ ├── libplusplayer-wrapper.so │ │ │ ├── libplusplayer_tvplus.so │ │ │ ├── libplusplayercore_tvplus.so │ │ │ ├── libslive-jsoncpp.so │ │ │ └── libtracksource_tvplus.so │ │ │ └── 9.0 │ │ │ ├── libavcodec_common.so │ │ │ ├── libavformat_mmdash.so │ │ │ ├── libavformat_mmhls.so │ │ │ ├── libavformat_mmhttp.so │ │ │ ├── libavutil_common.so │ │ │ ├── libdash.so │ │ │ ├── libdashplusplayer_tvplus.so │ │ │ ├── libgstdash.so │ │ │ ├── libgsthls.so │ │ │ ├── libgsthttpdemux.so │ │ │ ├── libgstmmhttpsrc.so │ │ │ ├── libgstsubtitle_tvplus.so │ │ │ ├── libgstsubtitleparse_tvplus.so │ │ │ ├── libhls.so │ │ │ ├── libplusplayer-wrapper.so │ │ │ ├── libplusplayer_tvplus.so │ │ │ ├── libplusplayercore_tvplus.so │ │ │ ├── libslive-jsoncpp.so │ │ │ └── libtracksource_tvplus.so │ │ ├── project_def.prop │ │ ├── res │ │ ├── dash_default_settings.jsonx │ │ └── plusplayer.ini │ │ └── src │ │ ├── device_proxy.cc │ │ ├── device_proxy.h │ │ ├── drm_license_helper.cc │ │ ├── drm_license_helper.h │ │ ├── drm_manager.cc │ │ ├── drm_manager.h │ │ ├── drm_manager_proxy.cc │ │ ├── drm_manager_proxy.h │ │ ├── ecore_wl2_window_proxy.cc │ │ ├── ecore_wl2_window_proxy.h │ │ ├── log.h │ │ ├── media_player.cc │ │ ├── media_player.h │ │ ├── media_player_proxy.cc │ │ ├── media_player_proxy.h │ │ ├── messages.cc │ │ ├── messages.h │ │ ├── plus_player.cc │ │ ├── plus_player.h │ │ ├── video_player.cc │ │ ├── video_player.h │ │ ├── video_player_options.h │ │ └── video_player_tizen_plugin.cc ├── video_player_videohole │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── assets │ │ │ ├── Audio.mp3 │ │ │ └── Butterfly-209.mp4 │ │ ├── integration_test │ │ │ └── video_player_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ ├── src │ │ │ ├── closed_caption_file.dart │ │ │ ├── drm_configs.dart │ │ │ ├── hole.dart │ │ │ ├── messages.g.dart │ │ │ ├── sub_rip.dart │ │ │ ├── tracks.dart │ │ │ ├── video_player_tizen.dart │ │ │ └── web_vtt.dart │ │ ├── video_player.dart │ │ └── video_player_platform_interface.dart │ ├── pigeons │ │ └── messages.dart │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── video_player_tizen_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── device_proxy.cc │ │ ├── device_proxy.h │ │ ├── drm_license_helper.cc │ │ ├── drm_license_helper.h │ │ ├── drm_manager.cc │ │ ├── drm_manager.h │ │ ├── drm_manager_proxy.cc │ │ ├── drm_manager_proxy.h │ │ ├── ecore_wl2_window_proxy.cc │ │ ├── ecore_wl2_window_proxy.h │ │ ├── log.h │ │ ├── media_player.cc │ │ ├── media_player.h │ │ ├── media_player_proxy.cc │ │ ├── media_player_proxy.h │ │ ├── messages.cc │ │ ├── messages.h │ │ ├── video_player.cc │ │ ├── video_player.h │ │ ├── video_player_options.h │ │ └── video_player_tizen_plugin.cc ├── wakelock_plus │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── integration_test │ │ │ └── wakelock_plus_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ └── wakelock_plus_tizen.dart │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── wakelock_plus_tizen_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── log.h │ │ └── wakelock_plus_tizen_plugin.cc ├── wearable_rotary │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── com │ │ │ └── samsung │ │ │ └── wearable_rotary │ │ │ └── WearableRotaryPlugin.kt │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── samsung │ │ │ │ │ │ │ └── wearable_rotary_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ ├── src │ │ │ ├── rotary_scroll_controller.dart │ │ │ └── wearable_rotary_base.dart │ │ └── wearable_rotary.dart │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── wearable_rotary_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── log.h │ │ └── wearable_rotary_plugin.cc ├── webview_flutter │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── assets │ │ │ ├── sample_audio.ogg │ │ │ ├── sample_video.mp4 │ │ │ └── www │ │ │ │ ├── index.html │ │ │ │ └── styles │ │ │ │ └── style.css │ │ ├── integration_test │ │ │ └── webview_flutter_test.dart │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ ├── test_driver │ │ │ └── integration_test.dart │ │ └── tizen │ │ │ ├── .gitignore │ │ │ ├── App.cs │ │ │ ├── Runner.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── ic_launcher.png │ │ │ └── tizen-manifest.xml │ ├── lib │ │ ├── src │ │ │ ├── tizen_webview.dart │ │ │ ├── tizen_webview_controller.dart │ │ │ ├── tizen_webview_cookie_manager.dart │ │ │ └── tizen_webview_platform.dart │ │ └── webview_flutter_tizen.dart │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── inc │ │ └── webview_flutter_tizen_plugin.h │ │ ├── project_def.prop │ │ └── src │ │ ├── buffer_pool.cc │ │ ├── buffer_pool.h │ │ ├── ewk_internal_api_binding.cc │ │ ├── ewk_internal_api_binding.h │ │ ├── log.h │ │ ├── webview.cc │ │ ├── webview.h │ │ ├── webview_factory.cc │ │ ├── webview_factory.h │ │ └── webview_flutter_tizen_plugin.cc └── webview_flutter_lwe │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ ├── .gitignore │ ├── README.md │ ├── assets │ │ ├── sample_audio.ogg │ │ ├── sample_video.mp4 │ │ └── www │ │ │ ├── index.html │ │ │ └── styles │ │ │ └── style.css │ ├── integration_test │ │ └── webview_flutter_test.dart │ ├── lib │ │ └── main.dart │ ├── pubspec.yaml │ ├── test_driver │ │ └── integration_test.dart │ └── tizen │ │ ├── .gitignore │ │ ├── App.cs │ │ ├── Runner.csproj │ │ ├── shared │ │ └── res │ │ │ └── ic_launcher.png │ │ └── tizen-manifest.xml │ ├── lib │ ├── src │ │ ├── lwe_webview.dart │ │ ├── lwe_webview_controller.dart │ │ ├── lwe_webview_cookie_manager.dart │ │ └── lwe_webview_platform.dart │ └── webview_flutter_lwe.dart │ ├── pubspec.yaml │ └── tizen │ ├── .gitignore │ ├── inc │ ├── lwe │ │ ├── LWEWebView.h │ │ ├── LWEWorker.h │ │ └── PlatformIntegrationData.h │ └── webview_flutter_lwe_plugin.h │ ├── lib │ ├── aarch64 │ │ ├── libclipper.so │ │ ├── liblightweight-web-engine.flutter-impl.so │ │ ├── liblightweight-web-engine.flutter.so │ │ ├── libmp4parse.so │ │ ├── libskia_matrix.so │ │ ├── libtuv.so │ │ ├── libwebm.so │ │ └── libwebp_lwe.so │ ├── armel │ │ ├── libclipper.so │ │ ├── liblightweight-web-engine.flutter-impl.so │ │ ├── liblightweight-web-engine.flutter.so │ │ ├── libmp4parse.so │ │ ├── libskia_matrix.so │ │ ├── libtuv.so │ │ ├── libwebm.so │ │ └── libwebp_lwe.so │ └── i586 │ │ ├── libclipper.so │ │ ├── liblightweight-web-engine.flutter-impl.so │ │ ├── liblightweight-web-engine.flutter.so │ │ ├── libmp4parse.so │ │ ├── libskia_matrix.so │ │ ├── libtuv.so │ │ ├── libwebm.so │ │ └── libwebp_lwe.so │ ├── project_def.prop │ └── src │ ├── buffer_pool.cc │ ├── buffer_pool.h │ ├── log.h │ ├── message_dispatcher.cc │ ├── message_dispatcher.h │ ├── webview.cc │ ├── webview.h │ ├── webview_factory.cc │ ├── webview_factory.h │ └── webview_flutter_lwe_plugin.cc └── tools ├── LICENSE ├── analysis_options.yaml ├── bin └── flutter_tizen_plugin_tools.dart ├── lib └── src │ ├── build_examples_command.dart │ ├── device.dart │ ├── integration_test_command.dart │ ├── main.dart │ ├── output_utils.dart │ ├── process_runner_apis.dart │ ├── publish_command.dart │ ├── recipe.dart │ └── tizen_sdk.dart ├── pubspec.yaml ├── test ├── device_test.dart ├── integration │ └── device_test.dart ├── integration_test_command_test.dart ├── recipe_test.dart ├── tizen_sdk_test.dart └── utils.dart ├── test_data └── foo │ ├── .gitignore │ ├── example │ ├── .gitignore │ ├── integration_test │ │ └── foo_test.dart │ ├── lib │ │ └── main.dart │ ├── pubspec.yaml │ └── tizen │ │ ├── .gitignore │ │ ├── App.cs │ │ ├── Runner.csproj │ │ ├── shared │ │ └── res │ │ │ └── ic_launcher.png │ │ └── tizen-manifest.xml │ ├── lib │ └── foo.dart │ ├── pubspec.yaml │ └── tizen │ ├── .gitignore │ ├── inc │ └── foo_plugin.h │ ├── project_def.prop │ └── src │ ├── foo_plugin.cc │ └── log.h └── tools_runner.sh /.clang-format: -------------------------------------------------------------------------------- 1 | # DON'T delete this file as it helps developers format C++ code in 2 | # IDEs such as VSCode. 3 | 4 | BasedOnStyle: Google 5 | -------------------------------------------------------------------------------- /.github/workflows/pull_request_label.yml: -------------------------------------------------------------------------------- 1 | name: Pull Request Labeler 2 | 3 | on: [pull_request_target] 4 | 5 | jobs: 6 | triage: 7 | runs-on: ubuntu-22.04 8 | steps: 9 | - uses: actions/labeler@v4 10 | with: 11 | repo-token: ${{ secrets.GITHUB_TOKEN }} 12 | sync-labels: true 13 | -------------------------------------------------------------------------------- /analysis_options_plus.yaml: -------------------------------------------------------------------------------- 1 | # This file is a copy of analysis_options.yaml from plus_plugins repo 2 | # as of 2023-03-07. 3 | 4 | include: package:flutter_lints/flutter.yaml 5 | 6 | analyzer: 7 | exclude: 8 | # Ignore generated files 9 | - '**/*.g.dart' 10 | - 'lib/src/generated/*.dart' 11 | 12 | linter: 13 | rules: 14 | - prefer_final_in_for_each 15 | - prefer_final_locals 16 | -------------------------------------------------------------------------------- /packages/audioplayers/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/audioplayers/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:flame_lint/analysis_options.yaml 2 | -------------------------------------------------------------------------------- /packages/audioplayers/example/README.md: -------------------------------------------------------------------------------- 1 | # audioplayers_tizen_example 2 | 3 | Demonstrates how to use the audioplayers_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/audioplayers/example/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:flame_lint/analysis_options.yaml 2 | 3 | linter: 4 | rules: 5 | do_not_use_environment: false 6 | -------------------------------------------------------------------------------- /packages/audioplayers/example/assets/ambient_c_motion.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/audioplayers/example/assets/ambient_c_motion.mp3 -------------------------------------------------------------------------------- /packages/audioplayers/example/assets/coins.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/audioplayers/example/assets/coins.wav -------------------------------------------------------------------------------- /packages/audioplayers/example/assets/invalid.txt: -------------------------------------------------------------------------------- 1 | This represents an invalid audio file. 2 | -------------------------------------------------------------------------------- /packages/audioplayers/example/assets/laser.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/audioplayers/example/assets/laser.wav -------------------------------------------------------------------------------- /packages/audioplayers/example/assets/nasa_on_a_mission.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/audioplayers/example/assets/nasa_on_a_mission.mp3 -------------------------------------------------------------------------------- /packages/audioplayers/example/lib/components/cbx.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class Cbx extends StatelessWidget { 4 | final String label; 5 | final bool value; 6 | final void Function({required bool? value}) update; 7 | 8 | const Cbx(this.label, this.update, {required this.value, super.key}); 9 | 10 | @override 11 | Widget build(BuildContext context) { 12 | return CheckboxListTile( 13 | title: Text(label), 14 | value: value, 15 | onChanged: (v) => update(value: v), 16 | ); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /packages/audioplayers/example/lib/components/pad.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class Pad extends StatelessWidget { 4 | final double width; 5 | final double height; 6 | 7 | const Pad({super.key, this.width = 0, this.height = 0}); 8 | 9 | @override 10 | Widget build(BuildContext context) { 11 | return Container(width: width, height: height); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /packages/audioplayers/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/audioplayers/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/audioplayers/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/audioplayers/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/audioplayers/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/audioplayers/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | /.cproject 2 | /.sign 3 | /crash-info/ 4 | /Debug/ 5 | /Release/ 6 | -------------------------------------------------------------------------------- /packages/audioplayers/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = audioplayers_tizen_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/battery_plus/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/battery_plus/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: ../../analysis_options_plus.yaml 2 | -------------------------------------------------------------------------------- /packages/battery_plus/example/README.md: -------------------------------------------------------------------------------- 1 | # battery_plus_example 2 | 3 | Demonstrates how to use the battery_plus_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/battery_plus/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/battery_plus/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/battery_plus/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/battery_plus/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/battery_plus/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/battery_plus/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/battery_plus/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = battery_plus_tizen_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/camera/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/camera/example/README.md: -------------------------------------------------------------------------------- 1 | # camera_tizen_example 2 | 3 | Demonstrates how to use the camera_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/camera/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/camera/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/camera/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/camera/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/camera/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/camera/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = camera_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/connectivity_plus/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/connectivity_plus/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: ../../analysis_options_plus.yaml 2 | -------------------------------------------------------------------------------- /packages/connectivity_plus/example/README.md: -------------------------------------------------------------------------------- 1 | # connectiviy_plus_example 2 | 3 | Demonstrates how to use the connectiviy_plus_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/connectivity_plus/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/connectivity_plus/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/connectivity_plus/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/connectivity_plus/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/connectivity_plus/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/connectivity_plus/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/connectivity_plus/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = connectivity_plus_tizen_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/device_info_plus/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/device_info_plus/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: ../../analysis_options_plus.yaml 2 | -------------------------------------------------------------------------------- /packages/device_info_plus/example/README.md: -------------------------------------------------------------------------------- 1 | # device_info_plus_example 2 | 3 | Demonstrates the `device_info_plus_tizen` plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/device_info_plus/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/device_info_plus/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/device_info_plus/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/device_info_plus/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/device_info_plus/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/device_info_plus/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/device_info_plus/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = device_info_plus_tizen_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/firebase_core/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## NEXT 2 | 3 | * Update minimum Flutter and Dart version to 3.13 and 3.1. 4 | * Fix new lint warnings. 5 | * Update code format. 6 | 7 | ## 0.1.1 8 | 9 | * Update firebase_core to 2.4.0. 10 | * Update firebase_core_platform_interface to 4.5.2. 11 | * Rename `firebase_app_desktop.dart` to `firebase_app_tizen.dart`. 12 | 13 | ## 0.1.0 14 | 15 | * Initial release. 16 | -------------------------------------------------------------------------------- /packages/firebase_core/example/README.md: -------------------------------------------------------------------------------- 1 | # firebase_core_tizen_example 2 | 3 | Demonstrates how to use the firebase_core_tizen plugin. 4 | -------------------------------------------------------------------------------- /packages/firebase_core/example/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: firebase_core_tizen_example 2 | description: An example application demonstrating calls to Firebase Core. 3 | publish_to: "none" 4 | 5 | environment: 6 | sdk: ">=3.1.0 <4.0.0" 7 | flutter: ">=3.13.0" 8 | 9 | dependencies: 10 | firebase_core: ^2.4.0 11 | firebase_core_tizen: 12 | path: ../ 13 | flutter: 14 | sdk: flutter 15 | -------------------------------------------------------------------------------- /packages/firebase_core/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/firebase_core/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/firebase_core/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/firebase_core/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/flutter_app_badger/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.1.1 2 | 3 | * Update minimum Flutter and Dart version to 3.13 and 3.1. 4 | * Update the LICENSE file so that it is recognized by pub.dev. 5 | 6 | ## 0.1.0 7 | 8 | * Initial release. 9 | -------------------------------------------------------------------------------- /packages/flutter_app_badger/example/README.md: -------------------------------------------------------------------------------- 1 | # flutter_app_badger_tizen_example 2 | 3 | Demonstrates how to use the flutter_app_badger_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/flutter_app_badger/example/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:flutter_lints/flutter.yaml 2 | -------------------------------------------------------------------------------- /packages/flutter_app_badger/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/flutter_app_badger/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/flutter_app_badger/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/flutter_app_badger/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/flutter_app_badger/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/flutter_app_badger/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = flutter_app_badger_tizen_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/flutter_secure_storage/example/README.md: -------------------------------------------------------------------------------- 1 | # flutter_secure_storage_tizen_example 2 | 3 | Demonstrates how to use the flutter_secure_storage_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/flutter_secure_storage/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/flutter_secure_storage/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/flutter_secure_storage/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/flutter_secure_storage/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/flutter_secure_storage/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/flutter_secure_storage/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/flutter_secure_storage/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = flutter_secure_storage_tizen_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/flutter_tts/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/flutter_tts/example/README.md: -------------------------------------------------------------------------------- 1 | # flutter_tts_tizen_example 2 | 3 | Demonstrates how to use the flutter_tts_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/flutter_tts/example/integration_test/flutter_tts_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter_test/flutter_test.dart'; 2 | import 'package:flutter_tts/flutter_tts.dart'; 3 | import 'package:integration_test/integration_test.dart'; 4 | 5 | void main() { 6 | IntegrationTestWidgetsFlutterBinding.ensureInitialized(); 7 | 8 | testWidgets('Can speak', (WidgetTester tester) async { 9 | final flutterTts = FlutterTts(); 10 | var result = await flutterTts.speak('Hello, world!'); 11 | expect(result, 1); 12 | }); 13 | } 14 | -------------------------------------------------------------------------------- /packages/flutter_tts/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/flutter_tts/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/flutter_tts/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/flutter_tts/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/flutter_tts/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/flutter_tts/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: flutter_tts_tizen 2 | description: The Tizen implementation of flutter_tts plugin. 3 | homepage: https://github.com/flutter-tizen/plugins 4 | repository: https://github.com/flutter-tizen/plugins/tree/master/packages/flutter_tts 5 | version: 1.5.0 6 | 7 | environment: 8 | sdk: ">=3.1.0 <4.0.0" 9 | flutter: ">=3.13.0" 10 | 11 | dependencies: 12 | flutter: 13 | sdk: flutter 14 | 15 | flutter: 16 | plugin: 17 | platforms: 18 | tizen: 19 | pluginClass: FlutterTtsTizenPlugin 20 | fileName: flutter_tts_tizen_plugin.h 21 | -------------------------------------------------------------------------------- /packages/flutter_tts/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/flutter_tts/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = flutter_tts_tizen_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/flutter_webrtc/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_demo/lib/src/route_item.dart: -------------------------------------------------------------------------------- 1 | import 'dart:core'; 2 | 3 | import 'package:flutter/material.dart'; 4 | 5 | typedef RouteCallback = void Function(BuildContext context); 6 | 7 | class RouteItem { 8 | RouteItem({required this.title, required this.subtitle, required this.push}); 9 | 10 | final String title; 11 | final String subtitle; 12 | final RouteCallback push; 13 | } 14 | -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_demo/lib/src/utils/device_info.dart: -------------------------------------------------------------------------------- 1 | import 'dart:io'; 2 | 3 | class DeviceInfo { 4 | static String get label { 5 | return 'Flutter ${Platform.operatingSystem}(${Platform.localHostname})'; 6 | } 7 | 8 | static String get userAgent { 9 | return 'flutter-webrtc/${Platform.operatingSystem}-plugin 0.0.1'; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_demo/lib/src/utils/device_info_web.dart: -------------------------------------------------------------------------------- 1 | import 'package:web/web.dart' as web; 2 | 3 | class DeviceInfo { 4 | static String get label { 5 | return 'Flutter Web'; 6 | } 7 | 8 | static String get userAgent { 9 | return 'flutter-webrtc/web-plugin 0.0.1 ( ${web.window.navigator.userAgent} )'; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_demo/lib/src/utils/turn_web.dart: -------------------------------------------------------------------------------- 1 | import 'dart:convert'; 2 | import 'package:http/http.dart' as http; 3 | 4 | Future getTurnCredential(String host, int port) async { 5 | var url = 'https://$host:$port/api/turn?service=turn&username=flutter-webrtc'; 6 | final res = await http.get(Uri.parse(url)); 7 | if (res.statusCode == 200) { 8 | var data = json.decode(res.body); 9 | print('getTurnCredential:response => $data.'); 10 | return data; 11 | } 12 | return {}; 13 | } 14 | -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_demo/renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "config:base" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_demo/screenshots/android-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/flutter_webrtc/example/flutter_webrtc_demo/screenshots/android-01.png -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_demo/screenshots/android-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/flutter_webrtc/example/flutter_webrtc_demo/screenshots/android-02.png -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_demo/screenshots/flutter-webrtc-android-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/flutter_webrtc/example/flutter_webrtc_demo/screenshots/flutter-webrtc-android-example.png -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_demo/screenshots/flutter-webrtc-desktop-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/flutter_webrtc/example/flutter_webrtc_demo/screenshots/flutter-webrtc-desktop-01.png -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_demo/screenshots/flutter-webrtc-desktop-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/flutter_webrtc/example/flutter_webrtc_demo/screenshots/flutter-webrtc-desktop-02.png -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_demo/screenshots/flutter-webrtc-desktop-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/flutter_webrtc/example/flutter_webrtc_demo/screenshots/flutter-webrtc-desktop-03.png -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_demo/screenshots/flutter-webrtc-ios-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/flutter_webrtc/example/flutter_webrtc_demo/screenshots/flutter-webrtc-ios-example.png -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_demo/screenshots/ios-01.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/flutter_webrtc/example/flutter_webrtc_demo/screenshots/ios-01.jpeg -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_demo/screenshots/ios-02.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/flutter_webrtc/example/flutter_webrtc_demo/screenshots/ios-02.jpeg -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_demo/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_demo/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_demo/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/flutter_webrtc/example/flutter_webrtc_demo/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_example/README.md: -------------------------------------------------------------------------------- 1 | # flutter_webrtc_example 2 | 3 | Demonstrates how to use the flutter_webrtc plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_example/lib/src/route_item.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | typedef RouteCallback = void Function(BuildContext context); 4 | 5 | class RouteItem { 6 | RouteItem({required this.title, this.subtitle, this.push}); 7 | 8 | final String title; 9 | final String? subtitle; 10 | final RouteCallback? push; 11 | } 12 | -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/flutter_webrtc/example/flutter_webrtc_example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/flutter_webrtc/example/flutter_webrtc_example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/flutter_webrtc/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/flutter_webrtc/tizen/lib/aarch64/libwebrtc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/flutter_webrtc/tizen/lib/aarch64/libwebrtc.so -------------------------------------------------------------------------------- /packages/flutter_webrtc/tizen/lib/armel/libwebrtc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/flutter_webrtc/tizen/lib/armel/libwebrtc.so -------------------------------------------------------------------------------- /packages/flutter_webrtc/tizen/lib/i586/libwebrtc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/flutter_webrtc/tizen/lib/i586/libwebrtc.so -------------------------------------------------------------------------------- /packages/flutter_webrtc/tizen/third_party/libwebrtc/include/helper.h: -------------------------------------------------------------------------------- 1 | #ifndef HELPER_HXX 2 | #define HELPER_HXX 3 | 4 | #include "rtc_types.h" 5 | 6 | namespace libwebrtc { 7 | /** 8 | * @brief A helper class with static methods for generating random UUIDs. 9 | * 10 | */ 11 | class Helper { 12 | public: 13 | /** 14 | * @brief Generates a random UUID string. 15 | * 16 | * @return The generated UUID string. 17 | */ 18 | LIB_WEBRTC_API static string CreateRandomUuid(); 19 | }; 20 | } // namespace libwebrtc 21 | 22 | #endif // HELPER_HXX 23 | -------------------------------------------------------------------------------- /packages/flutter_webrtc/tizen/third_party/libwebrtc/include/rtc_video_renderer.h: -------------------------------------------------------------------------------- 1 | #ifndef LIB_WEBRTC_RTC_VIDEO_RENDERER_HXX 2 | #define LIB_WEBRTC_RTC_VIDEO_RENDERER_HXX 3 | 4 | #include "rtc_types.h" 5 | 6 | namespace libwebrtc { 7 | 8 | template 9 | class RTCVideoRenderer { 10 | public: 11 | virtual ~RTCVideoRenderer() {} 12 | 13 | virtual void OnFrame(VideoFrameT frame) = 0; 14 | }; 15 | 16 | } // namespace libwebrtc 17 | 18 | #endif // LIB_WEBRTC_RTC_VIDEO_RENDERER_HXX 19 | -------------------------------------------------------------------------------- /packages/flutter_webrtc/tizen/third_party/libwebrtc/include/rtc_video_source.h: -------------------------------------------------------------------------------- 1 | #ifndef LIB_WEBRTC_RTC_VIDEO_SOURCE_HXX 2 | #define LIB_WEBRTC_RTC_VIDEO_SOURCE_HXX 3 | 4 | #include "rtc_types.h" 5 | 6 | namespace libwebrtc { 7 | 8 | class RTCVideoSource : public RefCountInterface { 9 | public: 10 | ~RTCVideoSource() {} 11 | }; 12 | } // namespace libwebrtc 13 | 14 | #endif // LIB_WEBRTC_RTC_VIDEO_SOURCE_HXX 15 | -------------------------------------------------------------------------------- /packages/geolocator/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/geolocator/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | # This file was copied from Baseflow/flutter-geolocator/geolocator/analysis_options.yaml. 2 | 3 | include: package:flutter_lints/flutter.yaml 4 | 5 | analyzer: 6 | exclude: 7 | # Ignore generated files 8 | - '**/*.g.dart' 9 | - 'lib/src/generated/*.dart' 10 | linter: 11 | rules: 12 | - public_member_api_docs 13 | -------------------------------------------------------------------------------- /packages/geolocator/example/README.md: -------------------------------------------------------------------------------- 1 | # geolocator_tizen_example 2 | 3 | Demonstrates how to use the geolocator_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/geolocator/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/geolocator/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/geolocator/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/geolocator/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/geolocator/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/geolocator/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/geolocator/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = geolocator_tizen_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/geolocator/tizen/src/app_settings_manager.h: -------------------------------------------------------------------------------- 1 | // Copyright 2021 Samsung Electronics Co., Ltd. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | #ifndef FLUTTER_PLUGIN_APP_SETTINGS_MANAGER_H_ 6 | #define FLUTTER_PLUGIN_APP_SETTINGS_MANAGER_H_ 7 | 8 | class AppSettingsManager { 9 | public: 10 | AppSettingsManager() {} 11 | ~AppSettingsManager() {} 12 | 13 | bool OpenAppSettings(); 14 | bool OpenLocationSettings(); 15 | }; 16 | 17 | #endif // FLUTTER_PLUGIN_APP_SETTINGS_MANAGER_H_ 18 | -------------------------------------------------------------------------------- /packages/google_maps_flutter/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/google_maps_flutter/example/README.md: -------------------------------------------------------------------------------- 1 | # google_maps_flutter_tizen_example 2 | 3 | Demonstrates how to use the google_maps_flutter_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/google_maps_flutter/example/assets/2.0x/red_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/google_maps_flutter/example/assets/2.0x/red_square.png -------------------------------------------------------------------------------- /packages/google_maps_flutter/example/assets/3.0x/red_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/google_maps_flutter/example/assets/3.0x/red_square.png -------------------------------------------------------------------------------- /packages/google_maps_flutter/example/assets/red_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/google_maps_flutter/example/assets/red_square.png -------------------------------------------------------------------------------- /packages/google_maps_flutter/example/integration_test/src/resources/icon_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/google_maps_flutter/example/integration_test/src/resources/icon_image.png -------------------------------------------------------------------------------- /packages/google_maps_flutter/example/lib/page.dart: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Flutter Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | // ignore_for_file: public_member_api_docs 6 | 7 | import 'package:flutter/material.dart'; 8 | 9 | abstract class GoogleMapExampleAppPage extends StatelessWidget { 10 | const GoogleMapExampleAppPage(this.leading, this.title, {super.key}); 11 | 12 | final Widget leading; 13 | final String title; 14 | } 15 | -------------------------------------------------------------------------------- /packages/google_maps_flutter/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/google_maps_flutter/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/google_maps_flutter/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/google_maps_flutter/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/google_maps_flutter/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/google_sign_in/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/google_sign_in/.pubignore: -------------------------------------------------------------------------------- 1 | example/lib/credentials.dart 2 | -------------------------------------------------------------------------------- /packages/google_sign_in/example/README.md: -------------------------------------------------------------------------------- 1 | # google_sign_in_tizen_example 2 | 3 | Demonstrates how to use the google_sign_in_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/google_sign_in/example/lib/credentials.dart: -------------------------------------------------------------------------------- 1 | // ignore_for_file: public_member_api_docs 2 | 3 | // This file is present for example purpose only! 4 | // 5 | // Normally it's expected to be ignored by git to not expose credentials 6 | // on source respositories. 7 | // 8 | // Developers should fill their own credentials to run the app. 9 | const String cliendId = 10 | '87599666314-cobrkfg77lk98a6c8l3o2ntn8d9g6s6l.apps.googleusercontent.com'; 11 | const String clientSecret = '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'; 12 | -------------------------------------------------------------------------------- /packages/google_sign_in/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/google_sign_in/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/google_sign_in/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/google_sign_in/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/image_picker/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/image_picker/example/README.md: -------------------------------------------------------------------------------- 1 | # image_picker_tizen_example 2 | 3 | Demonstrates how to use the image_picker_tizen plugin. 4 | -------------------------------------------------------------------------------- /packages/image_picker/example/integration_test/image_picker_test.dart: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Flutter Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | import 'package:flutter_test/flutter_test.dart'; 6 | import 'package:integration_test/integration_test.dart'; 7 | 8 | void main() { 9 | IntegrationTestWidgetsFlutterBinding.ensureInitialized(); 10 | 11 | testWidgets('placeholder test', (WidgetTester tester) async {}); 12 | } 13 | -------------------------------------------------------------------------------- /packages/image_picker/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/image_picker/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/image_picker/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/image_picker/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/image_picker/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/image_picker/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/image_picker/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = image_picker_tizen_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/in_app_purchase/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/in_app_purchase/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## NEXT 2 | 3 | * Update code format. 4 | 5 | ## 0.1.2 6 | 7 | * Update the LICENSE file so that it is recognized by pub.dev. 8 | 9 | ## 0.1.1 10 | 11 | * Fix new lint warnings. 12 | * Update minimum Flutter and Dart version to 3.13 and 3.1. 13 | * Update in_app_purchase_platform_interface to 1.4.0. 14 | * Add countryCode API. 15 | 16 | ## 0.1.0 17 | 18 | * Initial release. -------------------------------------------------------------------------------- /packages/in_app_purchase/example/README.md: -------------------------------------------------------------------------------- 1 | # in_app_purchase_tizen_example 2 | 3 | Demonstrates how to use the in_app_purchase_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/in_app_purchase/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Flutter Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | import 'package:integration_test/integration_test_driver.dart'; 6 | 7 | Future main() => integrationDriver(); 8 | -------------------------------------------------------------------------------- /packages/in_app_purchase/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/in_app_purchase/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/in_app_purchase/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/in_app_purchase/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/in_app_purchase/lib/in_app_purchase_tizen.dart: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Flutter Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | export 'src/billing_manager.dart'; 6 | export 'src/in_app_purchase_tizen_platform.dart'; 7 | export 'src/in_app_purchase_tizen_platform_addition.dart'; 8 | -------------------------------------------------------------------------------- /packages/in_app_purchase/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/in_app_purchase/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = in_app_purchase_tizen_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/integration_test/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/integration_test/example/README.md: -------------------------------------------------------------------------------- 1 | # integration_test_example 2 | 3 | Demonstrates how to use the integration_test_tizen plugin. 4 | 5 | To run `integration_test/example_test.dart` on your Tizen device, 6 | 7 | ```sh 8 | flutter-tizen drive \ 9 | --driver=test_driver/integration_test.dart \ 10 | --target=integration_test/example_test.dart 11 | ``` 12 | -------------------------------------------------------------------------------- /packages/integration_test/example/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: integration_test_example 2 | description: Demonstrates how to use the integration_test_tizen plugin. 3 | publish_to: "none" 4 | 5 | environment: 6 | sdk: ">=3.1.0 <4.0.0" 7 | flutter: ">=3.13.0" 8 | 9 | dependencies: 10 | flutter: 11 | sdk: flutter 12 | 13 | dev_dependencies: 14 | flutter_driver: 15 | sdk: flutter 16 | flutter_test: 17 | sdk: flutter 18 | integration_test: 19 | sdk: flutter 20 | integration_test_tizen: 21 | path: ../ 22 | test: 23 | 24 | flutter: 25 | uses-material-design: true 26 | -------------------------------------------------------------------------------- /packages/integration_test/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/integration_test/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/integration_test/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/integration_test/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/integration_test/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/integration_test/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/integration_test/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = integration_test_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/messageport/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/messageport/example/README.md: -------------------------------------------------------------------------------- 1 | # messageport_tizen_example 2 | 3 | Demonstrates how to use the messageport_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/messageport/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/messageport/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/messageport/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/messageport/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/messageport/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/messageport/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/messageport/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = messageport_tizen_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/network_info_plus/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/network_info_plus/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: ../../analysis_options_plus.yaml 2 | -------------------------------------------------------------------------------- /packages/network_info_plus/example/README.md: -------------------------------------------------------------------------------- 1 | # network_info_plus_example 2 | 3 | Demonstrates how to use the network_info_plus_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/network_info_plus/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/network_info_plus/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/network_info_plus/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/network_info_plus/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/network_info_plus/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/network_info_plus/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/network_info_plus/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = network_info_plus_tizen_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/package_info_plus/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/package_info_plus/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: ../../analysis_options_plus.yaml 2 | -------------------------------------------------------------------------------- /packages/package_info_plus/example/README.md: -------------------------------------------------------------------------------- 1 | # package_info_plus_example 2 | 3 | Demonstrates how to use the package_info_plus_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/package_info_plus/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/package_info_plus/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/package_info_plus/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/package_info_plus/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/package_info_plus/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/package_info_plus/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/package_info_plus/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = package_info_plus_tizen_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/path_provider/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/path_provider/example/README.md: -------------------------------------------------------------------------------- 1 | # path_provider_tizen_example 2 | 3 | Demonstrates how to use the path_provider_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/path_provider/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/path_provider/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/path_provider/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/path_provider/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/path_provider/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/permission_handler/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/permission_handler/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:flutter_lints/flutter.yaml 2 | 3 | linter: 4 | rules: 5 | - public_member_api_docs 6 | -------------------------------------------------------------------------------- /packages/permission_handler/example/README.md: -------------------------------------------------------------------------------- 1 | # permission_handler_example 2 | 3 | Demonstrates the permission_handler plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/permission_handler/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/permission_handler/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/permission_handler/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/permission_handler/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/permission_handler/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/permission_handler/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | /.cproject 2 | /.sign 3 | /crash-info/ 4 | /Debug/ 5 | /Release/ 6 | -------------------------------------------------------------------------------- /packages/permission_handler/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = permission_handler_tizen_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/permission_handler/tizen/src/app_settings_manager.h: -------------------------------------------------------------------------------- 1 | // Copyright 2021 Samsung Electronics Co., Ltd. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | #ifndef FLUTTER_PLUGIN_APP_SETTINGS_MANAGER_H_ 6 | #define FLUTTER_PLUGIN_APP_SETTINGS_MANAGER_H_ 7 | 8 | class AppSettingsManager { 9 | public: 10 | AppSettingsManager() {} 11 | ~AppSettingsManager() {} 12 | 13 | bool OpenAppSettings(); 14 | }; 15 | 16 | #endif // FLUTTER_PLUGIN_APP_SETTINGS_MANAGER_H_ 17 | -------------------------------------------------------------------------------- /packages/sensors_plus/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/sensors_plus/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: ../../analysis_options_plus.yaml 2 | -------------------------------------------------------------------------------- /packages/sensors_plus/example/README.md: -------------------------------------------------------------------------------- 1 | # sensors_plus_example 2 | 3 | Demonstrates how to use the sensors_plus_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/sensors_plus/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/sensors_plus/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/sensors_plus/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/sensors_plus/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/sensors_plus/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/sensors_plus/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/sensors_plus/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = sensors_plus_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/shared_preferences/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/shared_preferences/example/README.md: -------------------------------------------------------------------------------- 1 | # shared_preferences_tizen_example 2 | 3 | Demonstrates how to use the shared_preferences_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/shared_preferences/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/shared_preferences/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/shared_preferences/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/shared_preferences/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/shared_preferences/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/shared_preferences/lib/shared_preferences_tizen.dart: -------------------------------------------------------------------------------- 1 | // Copyright 2024 Samsung Electronics Co., Ltd. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | export 'src/shared_preferences_async_tizen.dart'; 6 | export 'src/shared_preferences_tizen.dart'; 7 | -------------------------------------------------------------------------------- /packages/sqflite/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/sqflite/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## NEXT 2 | 3 | * Update minimum Flutter and Dart version to 3.13 and 3.1. 4 | * Update code format. 5 | 6 | ## 0.1.3 7 | 8 | * Update sqflite to 2.3.0. 9 | * Increase the minimum Flutter version to 3.3. 10 | * Increase the minimum SDK version to 3.0.0. 11 | 12 | ## 0.1.2 13 | 14 | * Add sqflite dependency. 15 | * Fix the `databaseFactory` not initialized error. 16 | 17 | ## 0.1.1 18 | 19 | * Resolve linter warnings. 20 | * Implement the `databaseExists` method. 21 | 22 | ## 0.1.0 23 | 24 | * Initial release. 25 | -------------------------------------------------------------------------------- /packages/sqflite/example/README.md: -------------------------------------------------------------------------------- 1 | # sqflite_tizen_example 2 | 3 | Demonstrates how to use the sqflite_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/sqflite/example/assets/example.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/sqflite/example/assets/example.db -------------------------------------------------------------------------------- /packages/sqflite/example/assets/issue_64.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/sqflite/example/assets/issue_64.db -------------------------------------------------------------------------------- /packages/sqflite/example/lib/database/database.dart: -------------------------------------------------------------------------------- 1 | export 'database_impl.dart'; 2 | export 'database_io.dart' if (dart.library.html) 'database_web.dart'; 3 | -------------------------------------------------------------------------------- /packages/sqflite/example/lib/database/database_web.dart: -------------------------------------------------------------------------------- 1 | import 'package:sqflite_tizen_example/database/database.dart'; 2 | 3 | /// platform handler io not supported on the web. 4 | PlatformHandler get platformHandlerIo => 5 | throw UnsupportedError('platform handler io not supported on the web'); 6 | -------------------------------------------------------------------------------- /packages/sqflite/example/lib/deprecated_test_page.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/foundation.dart'; 2 | 3 | import 'test_page.dart'; 4 | 5 | /// Deprecated test page. 6 | class DeprecatedTestPage extends TestPage { 7 | /// Deprecated test page. 8 | DeprecatedTestPage({Key? key}) : super('Deprecated tests', key: key) { 9 | test('None', () async {}); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /packages/sqflite/example/lib/model/test.dart: -------------------------------------------------------------------------------- 1 | import 'dart:async'; 2 | 3 | /// Test definition. 4 | class Test { 5 | /// Test definition. 6 | Test(this.name, this.fn, {bool? solo, bool? skip}) 7 | : solo = solo == true, 8 | skip = skip == true; 9 | 10 | /// Only run this test. 11 | final bool solo; 12 | 13 | /// Skip this test. 14 | final bool skip; 15 | 16 | /// Test name. 17 | String name; 18 | 19 | /// Test body. 20 | FutureOr Function() fn; 21 | } 22 | -------------------------------------------------------------------------------- /packages/sqflite/example/lib/src/common_import.dart: -------------------------------------------------------------------------------- 1 | export 'dart:async'; 2 | export 'dart:convert'; 3 | 4 | export 'package:collection/collection.dart'; 5 | export 'package:sqflite_common/src/internals.dart'; 6 | export 'package:sqflite_common/src/platform/platform.dart'; 7 | 8 | export 'dev_utils.dart'; 9 | -------------------------------------------------------------------------------- /packages/sqflite/example/lib/src/dev_utils.dart: -------------------------------------------------------------------------------- 1 | export 'dart:async'; 2 | 3 | // ignore_for_file: avoid_print 4 | 5 | /// Deprecated to prevent keeping the code used. 6 | @Deprecated('Dev only') 7 | void devPrint(Object object) { 8 | print(object); 9 | } 10 | 11 | /// Deprecated to prevent keeping the code used. 12 | /// 13 | /// Can be use as a todo for weird code. int value = devWarning(myFunction()); 14 | /// The function is always called 15 | @Deprecated('Dev only') 16 | T devWarning(T value) => value; 17 | -------------------------------------------------------------------------------- /packages/sqflite/example/lib/utils.dart: -------------------------------------------------------------------------------- 1 | import 'package:sqflite/sqflite.dart'; 2 | import 'package:sqflite/sqflite_dev.dart'; 3 | 4 | /// Usage: await sleep(500); 5 | Future sleep([int milliseconds = 0]) => 6 | Future.delayed(Duration(milliseconds: milliseconds)); 7 | 8 | /// Supports compat mode (devSetDebugModeOn, queryAsMap, fts4, some error handled - missing parameter, bad file) 9 | bool get supportsCompatMode { 10 | // ignore: invalid_use_of_visible_for_testing_member 11 | return databaseFactory == sqfliteDatabaseFactoryDefault; 12 | } 13 | -------------------------------------------------------------------------------- /packages/sqflite/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/sqflite/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/sqflite/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/sqflite/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/sqflite/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/sqflite/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/sqflite/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = sqflite_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/sqflite/tizen/src/errors.h: -------------------------------------------------------------------------------- 1 | #ifndef SQFLITE_ERRORS_H_ 2 | #define SQFLITE_ERRORS_H_ 3 | 4 | #include 5 | 6 | namespace sqflite_errors { 7 | 8 | const int kUnknownErrorCode = -1; 9 | 10 | struct DatabaseError : public std::runtime_error { 11 | DatabaseError(int code, const char *msg) 12 | : std::runtime_error(std::string(msg) + " (code " + std::to_string(code) + 13 | ")") {} 14 | }; 15 | } // namespace sqflite_errors 16 | 17 | #endif // SQFLITE_ERRORS_H_ 18 | -------------------------------------------------------------------------------- /packages/sqflite/tizen/src/log_level.h: -------------------------------------------------------------------------------- 1 | #ifndef SQFLITE_LOG_LEVEL_H_ 2 | #define SQFLITE_LOG_LEVEL_H_ 3 | 4 | namespace sqflite_log_level { 5 | 6 | enum LogLevel { kNone, kSql, kVerbose }; 7 | 8 | inline int HasSqlLevel(int level) { return level >= kSql; } 9 | 10 | inline int HasVerboseLevel(int level) { return level >= kVerbose; } 11 | 12 | }; // namespace sqflite_log_level 13 | 14 | #endif // SQFLITE_LOG_LEVEL_H_ 15 | -------------------------------------------------------------------------------- /packages/tizen_app_control/example/README.md: -------------------------------------------------------------------------------- 1 | # tizen_app_control_example 2 | 3 | Demonstrates how to use the tizen_app_control plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/tizen_app_control/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/tizen_app_control/example/tizen/service/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | -------------------------------------------------------------------------------- /packages/tizen_app_control/example/tizen/service/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterServiceApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.DartEntrypoint = "serviceMain"; 18 | app.Run(args); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /packages/tizen_app_control/example/tizen/service/RunnerService.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Exe 5 | tizen80 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /packages/tizen_app_control/example/tizen/ui/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/tizen_app_control/example/tizen/ui/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/tizen_app_control/example/tizen/ui/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/tizen_app_control/example/tizen/ui/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/tizen_app_control/lib/tizen_app_control.dart: -------------------------------------------------------------------------------- 1 | // Copyright 2022 Samsung Electronics Co., Ltd. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | export 'src/app_control.dart'; 6 | -------------------------------------------------------------------------------- /packages/tizen_app_control/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: tizen_app_control 2 | description: Tizen application control APIs. Used to launch apps on a Tizen device. 3 | homepage: https://github.com/flutter-tizen/plugins 4 | repository: https://github.com/flutter-tizen/plugins/tree/master/packages/tizen_app_control 5 | version: 0.2.3 6 | 7 | environment: 8 | sdk: ">=3.1.0 <4.0.0" 9 | flutter: ">=3.13.0" 10 | 11 | dependencies: 12 | ffi: ">=1.1.2 <3.0.0" 13 | flutter: 14 | sdk: flutter 15 | -------------------------------------------------------------------------------- /packages/tizen_app_manager/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/tizen_app_manager/example/README.md: -------------------------------------------------------------------------------- 1 | # tizen_app_manager_example 2 | 3 | Demonstrates how to use the tizen_app_manager plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/tizen_app_manager/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/tizen_app_manager/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/tizen_app_manager/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/tizen_app_manager/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/tizen_app_manager/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/tizen_app_manager/lib/tizen_app_manager.dart: -------------------------------------------------------------------------------- 1 | // Copyright 2022 Samsung Electronics Co., Ltd. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | export 'src/app_manager.dart'; 6 | -------------------------------------------------------------------------------- /packages/tizen_app_manager/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/tizen_app_manager/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = tizen_app_manager_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/tizen_audio_manager/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## NEXT 2 | 3 | * Fix new lint warnings. 4 | * Update minimum Flutter and Dart version to 3.13 and 3.1. 5 | * Update code format. 6 | 7 | ## 0.1.1 8 | 9 | * Code refactoring. 10 | 11 | ## 0.1.0 12 | 13 | * Initial release. 14 | -------------------------------------------------------------------------------- /packages/tizen_audio_manager/example/README.md: -------------------------------------------------------------------------------- 1 | # tizen_audio_manager_example 2 | 3 | Demonstrates how to use the tizen_audio_manager plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/tizen_audio_manager/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/tizen_audio_manager/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/tizen_audio_manager/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/tizen_audio_manager/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/tizen_audio_manager/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/tizen_audio_manager/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = tizen_audio_manager_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/tizen_bundle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## NEXT 2 | 3 | * Update code format. 4 | 5 | ## 0.1.2 6 | 7 | * Update minimum Flutter and Dart version to 3.13 and 3.1. 8 | * Fix token in finalizer to be different from value. 9 | * Update tizen_interop to 0.3.0. 10 | 11 | ## 0.1.1 12 | 13 | * General cleanups. 14 | 15 | ## 0.1.0 16 | 17 | * Initial release. 18 | -------------------------------------------------------------------------------- /packages/tizen_bundle/example/README.md: -------------------------------------------------------------------------------- 1 | # tizen_bundle_example 2 | 3 | Demonstrates how to use the tizen_bundle plugin. 4 | -------------------------------------------------------------------------------- /packages/tizen_bundle/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/tizen_bundle/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/tizen_bundle/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/tizen_bundle/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/tizen_bundle/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/tizen_bundle/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: tizen_bundle 2 | description: Tizen data bundle APIs. 3 | homepage: https://github.com/flutter-tizen/plugins 4 | repository: https://github.com/flutter-tizen/plugins/tree/master/packages/tizen_bundle 5 | version: 0.1.2 6 | 7 | environment: 8 | sdk: ">=3.1.0 <4.0.0" 9 | flutter: ">=3.13.0" 10 | 11 | dependencies: 12 | ffi: ^2.0.1 13 | flutter: 14 | sdk: flutter 15 | tizen_interop: ^0.3.0 16 | -------------------------------------------------------------------------------- /packages/tizen_log/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## NEXT 2 | 3 | * Update minimum Flutter and Dart version to 3.13 and 3.1. 4 | * Fix new lint warnings. 5 | * Update code format. 6 | 7 | ## 0.1.2 8 | 9 | * Bump ffi dependency. 10 | 11 | ## 0.1.1 12 | 13 | * Remove Flutter dependency. 14 | * Update README. 15 | 16 | ## 0.1.0 17 | 18 | * Initial release. 19 | -------------------------------------------------------------------------------- /packages/tizen_log/example/README.md: -------------------------------------------------------------------------------- 1 | # tizen_log_example 2 | 3 | Demonstrates how to use the tizen_log plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/tizen_log/example/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: tizen_log_example 2 | description: Demonstrates how to use the tizen_log plugin. 3 | publish_to: "none" 4 | 5 | environment: 6 | sdk: ">=3.1.0 <4.0.0" 7 | flutter: ">=3.13.0" 8 | 9 | dependencies: 10 | flutter: 11 | sdk: flutter 12 | tizen_log: 13 | path: ../ 14 | 15 | flutter: 16 | uses-material-design: true 17 | -------------------------------------------------------------------------------- /packages/tizen_log/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/tizen_log/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/tizen_log/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/tizen_log/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/tizen_log/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: tizen_log 2 | description: A Flutter plugin which provides the ability to use Tizen dlog logging service. 3 | homepage: https://github.com/flutter-tizen/plugins 4 | repository: https://github.com/flutter-tizen/plugins/tree/master/packages/tizen_log 5 | version: 0.1.2 6 | 7 | environment: 8 | sdk: ">=3.1.0 <4.0.0" 9 | flutter: ">=3.13.0" 10 | 11 | dependencies: 12 | ffi: ">=1.1.2 <3.0.0" 13 | -------------------------------------------------------------------------------- /packages/tizen_notification/example/README.md: -------------------------------------------------------------------------------- 1 | # tizen_notification_example 2 | 3 | Demonstrates how to use the tizen_notification plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/tizen_notification/example/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: tizen_notification_example 2 | description: Demonstrates how to use the tizen_notification plugin. 3 | publish_to: "none" 4 | 5 | environment: 6 | sdk: ">=3.1.0 <4.0.0" 7 | flutter: ">=3.13.0" 8 | 9 | dependencies: 10 | flutter: 11 | sdk: flutter 12 | tizen_notification: 13 | path: ../ 14 | 15 | flutter: 16 | uses-material-design: true 17 | -------------------------------------------------------------------------------- /packages/tizen_notification/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/tizen_notification/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/tizen_notification/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/tizen_notification/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/tizen_notification/example/tizen/shared/res/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/tizen_notification/example/tizen/shared/res/test.png -------------------------------------------------------------------------------- /packages/tizen_notification/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/tizen_notification/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = tizen_notification_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/tizen_package_manager/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/tizen_package_manager/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## NEXT 2 | 3 | * Update minimum Flutter and Dart version to 3.13 and 3.1. 4 | * Update code format. 5 | 6 | ## 0.2.1 7 | 8 | * Add threading to `PackageManager.getPackagesInfo` to prevent app freezing. 9 | 10 | ## 0.2.0 11 | 12 | * Rename `package_manager.dart` to `tizen_package_manager.dart`. 13 | * Create an enum type `StorageType` for `PackageInfo.installedStorageType`. 14 | * Refactor the C++ code. 15 | * Revise the example app. 16 | * General cleanups. 17 | 18 | ## 0.1.0 19 | 20 | * Initial release. 21 | -------------------------------------------------------------------------------- /packages/tizen_package_manager/example/README.md: -------------------------------------------------------------------------------- 1 | # tizen_package_manager_example 2 | 3 | Demonstrates how to use the tizen_package_manager plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/tizen_package_manager/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/tizen_package_manager/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/tizen_package_manager/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/tizen_package_manager/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/tizen_package_manager/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/tizen_package_manager/example/tizen/shared/res/org.example.simplehome.tpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/tizen_package_manager/example/tizen/shared/res/org.example.simplehome.tpk -------------------------------------------------------------------------------- /packages/tizen_package_manager/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/tizen_package_manager/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = tizen_package_manager_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/tizen_rpc_port/example/client/README.md: -------------------------------------------------------------------------------- 1 | # tizen_rpc_port_client_example 2 | 3 | Demonstrates how to use the tizen_rpc_port client API. 4 | -------------------------------------------------------------------------------- /packages/tizen_rpc_port/example/client/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: ../../../../analysis_options.yaml 2 | 3 | analyzer: 4 | linter: 5 | rules: 6 | unawaited_futures: false 7 | -------------------------------------------------------------------------------- /packages/tizen_rpc_port/example/client/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/tizen_rpc_port/example/client/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/tizen_rpc_port/example/client/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/tizen_rpc_port/example/client/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/tizen_rpc_port/example/message.tidl: -------------------------------------------------------------------------------- 1 | interface Message { 2 | void NotifyCallback(string sender, string message) delegate; 3 | 4 | int Register(string name, NotifyCallback callback); 5 | void Unregister() async; 6 | int Send(string message); 7 | } 8 | -------------------------------------------------------------------------------- /packages/tizen_rpc_port/example/server/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | -------------------------------------------------------------------------------- /packages/tizen_rpc_port/example/server/README.md: -------------------------------------------------------------------------------- 1 | # tizen_rpc_port_server_example 2 | 3 | Demonstrates how to use the tizen_rpc_port server API. 4 | -------------------------------------------------------------------------------- /packages/tizen_rpc_port/example/server/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: ../../../../analysis_options.yaml 2 | 3 | analyzer: 4 | linter: 5 | rules: 6 | unawaited_futures: false 7 | -------------------------------------------------------------------------------- /packages/tizen_rpc_port/example/server/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/tizen_rpc_port/example/server/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/tizen_rpc_port/example/server/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/tizen_rpc_port/example/server/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/tizen_rpc_port/lib/tizen_rpc_port.dart: -------------------------------------------------------------------------------- 1 | // Copyright 2022 Samsung Electronics Co., Ltd. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file 4 | 5 | export 'src/parcel.dart'; 6 | export 'src/port.dart'; 7 | export 'src/proxy_base.dart'; 8 | export 'src/stub_base.dart'; 9 | -------------------------------------------------------------------------------- /packages/tizen_rpc_port/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/tizen_rpc_port/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = tizen_rpc_port_plugin 5 | type = staticLib 6 | profile = common-6.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/url_launcher/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/url_launcher/example/README.md: -------------------------------------------------------------------------------- 1 | # url_launcher_tizen_example 2 | 3 | Demonstrates how to use the url_launcher_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/url_launcher/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/url_launcher/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/url_launcher/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/url_launcher/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/url_launcher/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/video_player/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/video_player/example/README.md: -------------------------------------------------------------------------------- 1 | # video_player_example 2 | 3 | Demonstrates how to use the video_player plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/video_player/example/assets/Audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player/example/assets/Audio.mp3 -------------------------------------------------------------------------------- /packages/video_player/example/assets/Butterfly-209.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player/example/assets/Butterfly-209.mp4 -------------------------------------------------------------------------------- /packages/video_player/example/assets/bumble_bee_captions.vtt: -------------------------------------------------------------------------------- 1 | WEBVTT 2 | 3 | 00:00:00.200 --> 00:00:01.750 4 | [ Birds chirping ] 5 | 6 | 00:00:02.300 --> 00:00:05.000 7 | [ Buzzing ] 8 | -------------------------------------------------------------------------------- /packages/video_player/example/assets/flutter-mark-square-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player/example/assets/flutter-mark-square-64.png -------------------------------------------------------------------------------- /packages/video_player/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Flutter Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | import 'package:integration_test/integration_test_driver.dart'; 6 | 7 | Future main() => integrationDriver(); 8 | -------------------------------------------------------------------------------- /packages/video_player/example/test_driver/video_player.dart: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Flutter Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | import 'package:flutter_driver/driver_extension.dart'; 6 | import 'package:video_player_example/main.dart' as app; 7 | 8 | void main() { 9 | enableFlutterDriverExtension(); 10 | app.main(); 11 | } 12 | -------------------------------------------------------------------------------- /packages/video_player/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/video_player/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/video_player/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/video_player/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | /.cproject 2 | /.sign 3 | /crash-info/ 4 | /Debug/ 5 | /Release/ 6 | -------------------------------------------------------------------------------- /packages/video_player/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = video_player_tizen_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/video_player_avplay/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/video_player_avplay/example/README.md: -------------------------------------------------------------------------------- 1 | # video_player_avplay_example 2 | 3 | Demonstrates how to use the video_player_avplay plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/video_player_avplay/example/assets/Audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/example/assets/Audio.mp3 -------------------------------------------------------------------------------- /packages/video_player_avplay/example/assets/Butterfly-209.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/example/assets/Butterfly-209.mp4 -------------------------------------------------------------------------------- /packages/video_player_avplay/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/video_player_avplay/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/video_player_avplay/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/video_player_avplay/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | /.cproject 2 | /.sign 3 | /crash-info/ 4 | /Debug/ 5 | /Release/ 6 | -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libavcodec_common.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libavcodec_common.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libavformat_mmdash.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libavformat_mmdash.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libavformat_mmhls.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libavformat_mmhls.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libavformat_mmhttp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libavformat_mmhttp.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libavutil_common.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libavutil_common.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libdash.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libdash.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libdashplusplayer_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libdashplusplayer_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libgstdash.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libgstdash.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libgsthls.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libgsthls.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libgsthttpdemux.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libgsthttpdemux.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libgstmmhttpsrc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libgstmmhttpsrc.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libgstsubtitle_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libgstsubtitle_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libgstsubtitleparse_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libgstsubtitleparse_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libhls.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libhls.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libplusplayer-wrapper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libplusplayer-wrapper.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libplusplayer_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libplusplayer_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libplusplayercore_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libplusplayercore_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libslive-jsoncpp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libslive-jsoncpp.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.0/libtracksource_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.0/libtracksource_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libavcodec_common.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libavcodec_common.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libavformat_mmdash.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libavformat_mmdash.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libavformat_mmhls.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libavformat_mmhls.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libavformat_mmhttp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libavformat_mmhttp.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libavutil_common.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libavutil_common.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libdash.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libdash.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libdashplusplayer_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libdashplusplayer_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libgstdash.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libgstdash.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libgsthls.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libgsthls.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libgsthttpdemux.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libgsthttpdemux.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libgstmmhttpsrc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libgstmmhttpsrc.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libgstsubtitle_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libgstsubtitle_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libgstsubtitleparse_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libgstsubtitleparse_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libhls.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libhls.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libplusplayer-wrapper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libplusplayer-wrapper.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libplusplayer_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libplusplayer_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libplusplayercore_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libplusplayercore_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libslive-jsoncpp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libslive-jsoncpp.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/6.5/libtracksource_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/6.5/libtracksource_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libavcodec_common.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libavcodec_common.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libavformat_mmdash.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libavformat_mmdash.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libavformat_mmhls.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libavformat_mmhls.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libavformat_mmhttp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libavformat_mmhttp.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libavutil_common.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libavutil_common.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libdash.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libdash.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libdashplusplayer_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libdashplusplayer_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libgstdash.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libgstdash.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libgsthls.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libgsthls.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libgsthttpdemux.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libgsthttpdemux.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libgstmmhttpsrc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libgstmmhttpsrc.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libgstsubtitle_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libgstsubtitle_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libgstsubtitleparse_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libgstsubtitleparse_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libhls.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libhls.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libplusplayer-wrapper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libplusplayer-wrapper.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libplusplayer_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libplusplayer_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libplusplayercore_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libplusplayercore_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libslive-jsoncpp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libslive-jsoncpp.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/7.0/libtracksource_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/7.0/libtracksource_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libavcodec_common.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libavcodec_common.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libavformat_mmdash.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libavformat_mmdash.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libavformat_mmhls.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libavformat_mmhls.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libavformat_mmhttp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libavformat_mmhttp.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libavutil_common.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libavutil_common.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libdash.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libdash.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libdashplusplayer_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libdashplusplayer_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libgstdash.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libgstdash.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libgsthls.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libgsthls.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libgsthttpdemux.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libgsthttpdemux.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libgstmmhttpsrc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libgstmmhttpsrc.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libgstsubtitle_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libgstsubtitle_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libgstsubtitleparse_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libgstsubtitleparse_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libhls.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libhls.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libplusplayer-wrapper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libplusplayer-wrapper.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libplusplayer_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libplusplayer_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libplusplayercore_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libplusplayercore_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libslive-jsoncpp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libslive-jsoncpp.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/8.0/libtracksource_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/8.0/libtracksource_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libavcodec_common.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libavcodec_common.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libavformat_mmdash.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libavformat_mmdash.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libavformat_mmhls.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libavformat_mmhls.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libavformat_mmhttp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libavformat_mmhttp.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libavutil_common.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libavutil_common.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libdash.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libdash.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libdashplusplayer_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libdashplusplayer_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libgstdash.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libgstdash.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libgsthls.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libgsthls.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libgsthttpdemux.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libgsthttpdemux.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libgstmmhttpsrc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libgstmmhttpsrc.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libgstsubtitle_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libgstsubtitle_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libgstsubtitleparse_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libgstsubtitleparse_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libhls.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libhls.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libplusplayer-wrapper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libplusplayer-wrapper.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libplusplayer_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libplusplayer_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libplusplayercore_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libplusplayercore_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libslive-jsoncpp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libslive-jsoncpp.so -------------------------------------------------------------------------------- /packages/video_player_avplay/tizen/lib/armel/9.0/libtracksource_tvplus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_avplay/tizen/lib/armel/9.0/libtracksource_tvplus.so -------------------------------------------------------------------------------- /packages/video_player_videohole/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/video_player_videohole/example/README.md: -------------------------------------------------------------------------------- 1 | # video_player_videohole_example 2 | 3 | Demonstrates how to use the video_player_videohole plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/video_player_videohole/example/assets/Audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_videohole/example/assets/Audio.mp3 -------------------------------------------------------------------------------- /packages/video_player_videohole/example/assets/Butterfly-209.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_videohole/example/assets/Butterfly-209.mp4 -------------------------------------------------------------------------------- /packages/video_player_videohole/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/video_player_videohole/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/video_player_videohole/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/video_player_videohole/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/video_player_videohole/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/video_player_videohole/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | /.cproject 2 | /.sign 3 | /crash-info/ 4 | /Debug/ 5 | /Release/ 6 | -------------------------------------------------------------------------------- /packages/video_player_videohole/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = video_player_tizen_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/wakelock_plus/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/wakelock_plus/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:flutter_lints/flutter.yaml 2 | 3 | linter: 4 | rules: 5 | public_member_api_docs: true 6 | -------------------------------------------------------------------------------- /packages/wakelock_plus/example/README.md: -------------------------------------------------------------------------------- 1 | # wakelock_plus_tizen_example 2 | 3 | Demonstrates how to use the wakelock_plus_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/wakelock_plus/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:integration_test/integration_test_driver.dart'; 2 | 3 | Future main() => integrationDriver(); 4 | -------------------------------------------------------------------------------- /packages/wakelock_plus/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/wakelock_plus/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/wakelock_plus/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/wakelock_plus/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/wakelock_plus/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/wakelock_plus/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = wakelock_plus_tizen_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/wearable_rotary/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/wearable_rotary/android/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .cxx 10 | -------------------------------------------------------------------------------- /packages/wearable_rotary/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'wearable_rotary' 2 | -------------------------------------------------------------------------------- /packages/wearable_rotary/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /packages/wearable_rotary/example/README.md: -------------------------------------------------------------------------------- 1 | # wearable_rotary_example 2 | 3 | Demonstrates how to use the wearable_rotary plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). 8 | -------------------------------------------------------------------------------- /packages/wearable_rotary/example/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | 9 | # Remember to never publicly share your keystore. 10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app 11 | key.properties 12 | **/*.keystore 13 | **/*.jks 14 | -------------------------------------------------------------------------------- /packages/wearable_rotary/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packages/wearable_rotary/example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /packages/wearable_rotary/example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /packages/wearable_rotary/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/wearable_rotary/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/wearable_rotary/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/wearable_rotary/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/wearable_rotary/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/wearable_rotary/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/wearable_rotary/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/wearable_rotary/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/wearable_rotary/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/wearable_rotary/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/wearable_rotary/example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packages/wearable_rotary/example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /packages/wearable_rotary/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip 6 | -------------------------------------------------------------------------------- /packages/wearable_rotary/example/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties") 4 | def properties = new Properties() 5 | 6 | assert localPropertiesFile.exists() 7 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } 8 | 9 | def flutterSdkPath = properties.getProperty("flutter.sdk") 10 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties" 11 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" 12 | -------------------------------------------------------------------------------- /packages/wearable_rotary/example/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: wearable_rotary_example 2 | description: Demonstrates how to use the wearable_rotary plugin. 3 | publish_to: "none" 4 | 5 | environment: 6 | sdk: ">=3.1.0 <4.0.0" 7 | flutter: ">=3.13.0" 8 | 9 | dependencies: 10 | flutter: 11 | sdk: flutter 12 | wearable_rotary: 13 | path: ../ 14 | 15 | flutter: 16 | uses-material-design: true 17 | -------------------------------------------------------------------------------- /packages/wearable_rotary/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/wearable_rotary/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/wearable_rotary/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/wearable_rotary/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/wearable_rotary/lib/wearable_rotary.dart: -------------------------------------------------------------------------------- 1 | export 'src/rotary_scroll_controller.dart'; 2 | export 'src/wearable_rotary_base.dart'; 3 | -------------------------------------------------------------------------------- /packages/wearable_rotary/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/wearable_rotary/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = wearable_rotary_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/webview_flutter/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/webview_flutter/example/README.md: -------------------------------------------------------------------------------- 1 | # webview_flutter_tizen_example 2 | 3 | Demonstrates how to use the webview_flutter_tizen plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). -------------------------------------------------------------------------------- /packages/webview_flutter/example/assets/sample_audio.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter/example/assets/sample_audio.ogg -------------------------------------------------------------------------------- /packages/webview_flutter/example/assets/sample_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter/example/assets/sample_video.mp4 -------------------------------------------------------------------------------- /packages/webview_flutter/example/assets/www/styles/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: blue; 3 | } -------------------------------------------------------------------------------- /packages/webview_flutter/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Flutter Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | import 'package:integration_test/integration_test_driver.dart'; 6 | 7 | Future main() => integrationDriver(); 8 | -------------------------------------------------------------------------------- /packages/webview_flutter/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/webview_flutter/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/webview_flutter/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/webview_flutter/lib/webview_flutter_tizen.dart: -------------------------------------------------------------------------------- 1 | // Copyright 2023 Samsung Electronics Co., Ltd. All rights reserved. 2 | // Copyright 2013 The Flutter Authors. All rights reserved. 3 | // Use of this source code is governed by a BSD-style license that can be 4 | // found in the LICENSE file. 5 | 6 | export 'src/tizen_webview_controller.dart'; 7 | export 'src/tizen_webview_cookie_manager.dart'; 8 | export 'src/tizen_webview_platform.dart'; 9 | -------------------------------------------------------------------------------- /packages/webview_flutter/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/webview_flutter/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = webview_flutter_tizen_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/example/README.md: -------------------------------------------------------------------------------- 1 | # webview_flutter_lwe_example 2 | 3 | Demonstrates how to use the webview_flutter_lwe plugin. 4 | 5 | ## Getting Started 6 | 7 | To run this app on your Tizen device, use [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen). -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/example/assets/sample_audio.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/example/assets/sample_audio.ogg -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/example/assets/sample_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/example/assets/sample_video.mp4 -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/example/assets/www/styles/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: blue; 3 | } -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Flutter Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | import 'package:integration_test/integration_test_driver.dart'; 6 | 7 | Future main() => integrationDriver(); 8 | -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/lib/webview_flutter_lwe.dart: -------------------------------------------------------------------------------- 1 | // Copyright 2023 Samsung Electronics Co., Ltd. All rights reserved. 2 | // Copyright 2013 The Flutter Authors. All rights reserved. 3 | // Use of this source code is governed by a BSD-style license that can be 4 | // found in the LICENSE file. 5 | 6 | export 'src/lwe_webview_controller.dart'; 7 | export 'src/lwe_webview_cookie_manager.dart'; 8 | export 'src/lwe_webview_platform.dart'; 9 | -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/aarch64/libclipper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/aarch64/libclipper.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/aarch64/liblightweight-web-engine.flutter-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/aarch64/liblightweight-web-engine.flutter-impl.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/aarch64/liblightweight-web-engine.flutter.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/aarch64/liblightweight-web-engine.flutter.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/aarch64/libmp4parse.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/aarch64/libmp4parse.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/aarch64/libskia_matrix.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/aarch64/libskia_matrix.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/aarch64/libtuv.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/aarch64/libtuv.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/aarch64/libwebm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/aarch64/libwebm.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/aarch64/libwebp_lwe.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/aarch64/libwebp_lwe.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/armel/libclipper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/armel/libclipper.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/armel/liblightweight-web-engine.flutter-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/armel/liblightweight-web-engine.flutter-impl.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/armel/liblightweight-web-engine.flutter.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/armel/liblightweight-web-engine.flutter.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/armel/libmp4parse.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/armel/libmp4parse.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/armel/libskia_matrix.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/armel/libskia_matrix.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/armel/libtuv.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/armel/libtuv.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/armel/libwebm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/armel/libwebm.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/armel/libwebp_lwe.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/armel/libwebp_lwe.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/i586/libclipper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/i586/libclipper.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/i586/liblightweight-web-engine.flutter-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/i586/liblightweight-web-engine.flutter-impl.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/i586/liblightweight-web-engine.flutter.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/i586/liblightweight-web-engine.flutter.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/i586/libmp4parse.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/i586/libmp4parse.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/i586/libskia_matrix.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/i586/libskia_matrix.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/i586/libtuv.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/i586/libtuv.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/i586/libwebm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/i586/libwebm.so -------------------------------------------------------------------------------- /packages/webview_flutter_lwe/tizen/lib/i586/libwebp_lwe.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/packages/webview_flutter_lwe/tizen/lib/i586/libwebp_lwe.so -------------------------------------------------------------------------------- /tools/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: ../analysis_options.yaml 2 | 3 | linter: 4 | rules: 5 | avoid_print: false 6 | implementation_imports: false 7 | -------------------------------------------------------------------------------- /tools/bin/flutter_tizen_plugin_tools.dart: -------------------------------------------------------------------------------- 1 | // Copyright 2021 Samsung Electronics Co., Ltd. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | export 'package:flutter_tizen_plugin_tools/src/main.dart'; 6 | -------------------------------------------------------------------------------- /tools/test_data/foo/example/integration_test/foo_test.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter_test/flutter_test.dart'; 2 | import 'package:foo/foo.dart'; 3 | import 'package:integration_test/integration_test.dart'; 4 | 5 | void main() { 6 | IntegrationTestWidgetsFlutterBinding.ensureInitialized(); 7 | 8 | testWidgets('Can get platform version', (WidgetTester tester) async { 9 | final String platformVersion = await Foo.platformVersion ?? ''; 10 | expect(platformVersion, 'Tizen'); 11 | }); 12 | } 13 | -------------------------------------------------------------------------------- /tools/test_data/foo/example/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: foo_example 2 | description: Demonstrates how to use the foo plugin. 3 | publish_to: "none" 4 | 5 | environment: 6 | sdk: ">=3.1.0 <4.0.0" 7 | flutter: ">=3.13.0" 8 | 9 | dependencies: 10 | flutter: 11 | sdk: flutter 12 | foo: 13 | path: ../ 14 | 15 | dev_dependencies: 16 | flutter_test: 17 | sdk: flutter 18 | integration_test: 19 | sdk: flutter 20 | integration_test_tizen: ^2.0.1 21 | -------------------------------------------------------------------------------- /tools/test_data/foo/example/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ 2 | .vs/ 3 | *.user 4 | bin/ 5 | obj/ 6 | 7 | # Tizen Core CLI (tz) related files 8 | tizen_dotnet_project.yaml 9 | *.csproj.backup 10 | 11 | # Flutter-tizen dependency information file 12 | .app.deps.json 13 | -------------------------------------------------------------------------------- /tools/test_data/foo/example/tizen/App.cs: -------------------------------------------------------------------------------- 1 | using Tizen.Flutter.Embedding; 2 | 3 | namespace Runner 4 | { 5 | public class App : FlutterApplication 6 | { 7 | protected override void OnCreate() 8 | { 9 | base.OnCreate(); 10 | 11 | GeneratedPluginRegistrant.RegisterPlugins(this); 12 | } 13 | 14 | static void Main(string[] args) 15 | { 16 | var app = new App(); 17 | app.Run(args); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /tools/test_data/foo/example/tizen/shared/res/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-tizen/plugins/d5af905ec08d3784768789d5be271aaf81ce8fab/tools/test_data/foo/example/tizen/shared/res/ic_launcher.png -------------------------------------------------------------------------------- /tools/test_data/foo/lib/foo.dart: -------------------------------------------------------------------------------- 1 | // ignore_for_file: public_member_api_docs, avoid_classes_with_only_static_members 2 | 3 | import 'dart:async'; 4 | 5 | import 'package:flutter/services.dart'; 6 | 7 | class Foo { 8 | static const MethodChannel _channel = MethodChannel('foo'); 9 | 10 | static Future get platformVersion async { 11 | final String? version = await _channel.invokeMethod('getPlatformVersion'); 12 | return version; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /tools/test_data/foo/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: foo 2 | description: A new flutter plugin project. 3 | publish_to: "none" 4 | 5 | environment: 6 | sdk: ">=3.1.0 <4.0.0" 7 | flutter: ">=3.13.0" 8 | 9 | dependencies: 10 | flutter: 11 | sdk: flutter 12 | 13 | dev_dependencies: 14 | flutter_lints: ^1.0.0 15 | flutter_test: 16 | sdk: flutter 17 | 18 | flutter: 19 | plugin: 20 | platforms: 21 | tizen: 22 | pluginClass: FooPlugin 23 | fileName: foo_plugin.h 24 | -------------------------------------------------------------------------------- /tools/test_data/foo/tizen/.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .sign 3 | crash-info/ 4 | Debug/ 5 | Release/ 6 | -------------------------------------------------------------------------------- /tools/test_data/foo/tizen/project_def.prop: -------------------------------------------------------------------------------- 1 | # See https://docs.tizen.org/application/tizen-studio/native-tools/project-conversion 2 | # for details. 3 | 4 | APPNAME = foo_plugin 5 | type = staticLib 6 | profile = common-5.5 7 | 8 | # Source files 9 | USER_SRCS += src/*.cc 10 | 11 | # User defines 12 | USER_DEFS = 13 | USER_UNDEFS = 14 | USER_CPP_DEFS = FLUTTER_PLUGIN_IMPL 15 | USER_CPP_UNDEFS = 16 | 17 | # User includes 18 | USER_INC_DIRS = inc src 19 | USER_INC_FILES = 20 | USER_CPP_INC_FILES = 21 | --------------------------------------------------------------------------------