### Setting up .env file Source: https://github.com/bitmovin/bitmovin-player-flutter/blob/main/CONTRIBUTING.md Example of the content for the .env file to store the Bitmovin Player license key. ```dotenv BITMOVIN_PLAYER_LICENSE_KEY=YOUR_LICENSE_KEY ``` -------------------------------- ### Installing Dependencies in player_testing Source: https://github.com/bitmovin/bitmovin-player-flutter/blob/main/CONTRIBUTING.md Command to install Dart dependencies within the player_testing directory. ```bash dart pub get ``` -------------------------------- ### Running Integration Tests Source: https://github.com/bitmovin/bitmovin-player-flutter/blob/main/CONTRIBUTING.md Command to execute integration tests from the example directory. ```bash flutter test integration_test ``` -------------------------------- ### Clean and Get Dependencies Source: https://github.com/bitmovin/bitmovin-player-flutter/blob/main/CONTRIBUTING.md Commands to clean the Flutter project and fetch dependencies, useful if JSON part file generation fails. ```bash flutter clean && flutter pub get ``` -------------------------------- ### Building Generated Files Source: https://github.com/bitmovin/bitmovin-player-flutter/blob/main/CONTRIBUTING.md Command to build generated files, including env.g.dart, within the player_testing directory. ```bash dart run build_runner build ``` -------------------------------- ### Generate JSON Serializable Part Files Source: https://github.com/bitmovin/bitmovin-player-flutter/blob/main/CONTRIBUTING.md Command to generate or update JSON part files using build_runner. ```bash dart run build_runner build --delete-conflicting-outputs ``` -------------------------------- ### iOS Development Configuration Source: https://github.com/bitmovin/bitmovin-player-flutter/blob/main/CONTRIBUTING.md Configuration file for iOS development to specify the development team ID. ```yml DEVELOPMENT_TEAM = YOUR_TEAM_ID ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.