Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[video_player] Black screen on iOS simulator #76674

Closed
mulieli opened this issue Feb 24, 2021 · 24 comments
Closed

[video_player] Black screen on iOS simulator #76674

mulieli opened this issue Feb 24, 2021 · 24 comments
Labels
r: timeout Issue is closed due to author not providing the requested details in time

Comments

@mulieli
Copy link

mulieli commented Feb 24, 2021

ios模拟器上黑屏

@iapicca
Copy link
Contributor

iapicca commented Feb 24, 2021

Black screen on ios simulator

@mulieli
can you provide your flutter doctor -v, your flutter run -v and a minimal reproducible code sample

@TahaTesser TahaTesser added the in triage Presently being triaged by the triage team label Feb 24, 2021
@TahaTesser TahaTesser changed the title [video_player] ios模拟器上黑屏 [video_player] Black screen on iOS simulator Feb 24, 2021
@TahaTesser
Copy link
Member

Hi @mulieli
Can you please provide your flutter doctor -v your flutter run --verbose and a complete reproducible minimal code sample
Thank you

@TahaTesser TahaTesser added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Feb 24, 2021
@mulieli
Copy link
Author

mulieli commented Feb 26, 2021

Hi @mulieli
Can you please provide your flutter doctor -v your flutter run --verbose and a complete reproducible minimal code sample
Thank you

https://github.com/mulieli/video-player-demo
See if this project can run?
Need to provide an MP4 video address by yourself

@no-response no-response bot removed the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Feb 26, 2021
@TahaTesser
Copy link
Member

Hi @mulieli
To better address the issue, Can you please provide your flutter doctor -v your flutter run --verbose
Thank you

@TahaTesser TahaTesser added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Feb 26, 2021
@mulieli
Copy link
Author

mulieli commented Feb 26, 2021

@mulieli
为了更好地解决这个问题,能否请您提供您flutter doctor -vflutter run --verbose
谢谢

image

@no-response no-response bot removed the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Feb 26, 2021
@mulieli
Copy link
Author

mulieli commented Feb 26, 2021

Hi @mulieli
To better address the issue, Can you please provide your flutter doctor -v your flutter run --verbose
Thank you

run.txt

@TahaTesser
Copy link
Member

TahaTesser commented Feb 26, 2021

Hi @mulieli
I just tried your code sample on iOS 14.4 simulator with example video link using video_player: ^1.0.1. Which version of the video player are using?

Preview

Screen.Recording.2021-02-26.at.4.53.25.PM.mov
code sample
import 'package:flutter/material.dart';
import 'package:triage/video_check.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Video player demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: VideoCheck(),
    );
  }
}
import 'package:flutter/material.dart';
import 'package:video_player/video_player.dart';

class VideoCheck extends StatefulWidget {
  @override
  _VideoCheckState createState() => _VideoCheckState();
}

class _VideoCheckState extends State<VideoCheck> {
  VideoPlayerController _playerController;

  @override
  void initState() {
    super.initState();

    /// Need an mp4 address
    _playerController = VideoPlayerController.network(
        "https://flutter.github.io/assets-for-api-docs/assets/videos/bee.mp4")
      ..initialize().then((_) {
        setState(() {});
      });

    _playerController.addListener(() {
      print(_playerController?.value?.isPlaying);
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text("video player"),
      ),
      body: Column(
        children: [
          Container(
            child: Stack(
              children: [
                GestureDetector(
                  behavior: HitTestBehavior.opaque,
                  child: Container(
                    width: MediaQuery.of(context).size.width,
                    height: 400,
                    color: Colors.black,
                    alignment: Alignment.center,
                    child: AspectRatio(
                      aspectRatio: _playerController?.value?.aspectRatio,
                      child: VideoPlayer(_playerController),
                    ),
                  ),
                  onTap: () {
                    if (_playerController.value.isPlaying) {
                      _playerController.pause();
                    } else {
                      _playerController.play();
                    }
                  },
                ),
              ],
            ),
          ),
          TextButton(
            child: Text("play"),
            onPressed: () {
              _playerController.play();
            },
          ),
          TextButton(
            child: Text("pause"),
            onPressed: () {
              _playerController.pause();
            },
          ),
          TextButton(
            child: Text("reset play"),
            onPressed: () {
              _playerController.seekTo(Duration.zero);
              _playerController.play();
            },
          )
        ],
      ),
    );
  }

  @override
  void dispose() {
    super.dispose();
    _playerController.dispose();
  }
}
flutter doctor -v
[✓] Flutter (Channel stable, 1.22.6, on macOS 11.2.2 20D80 darwin-x64, locale
    en-GB)
    • Flutter version 1.22.6 at /Users/tahatesser/Code/flutter_stable
    • Framework revision 9b2d32b605 (5 weeks ago), 2021-01-22 14:36:39 -0800
    • Engine revision 2f0af37152
    • Dart version 2.10.5

 
[✓] Android toolchain - develop for Android devices (Android SDK version 30.0.3)
    • Android SDK at /Volumes/Extreme/SDK
    • Platform android-30, build-tools 30.0.3
    • ANDROID_HOME = /Volumes/Extreme/SDK
    • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6915495)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS (Xcode 12.4)
    • Xcode at /Volumes/Extreme/Xcode.app/Contents/Developer
    • Xcode 12.4, Build version 12D4e
    • CocoaPods version 1.10.1

[!] Android Studio (version 4.1)
    • Android Studio at /Applications/Android Studio.app/Contents
    ✗ Flutter plugin not installed; this adds Flutter specific functionality.
    ✗ Dart plugin not installed; this adds Dart specific functionality.
    • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6915495)

[✓] VS Code (version 1.53.2)
    • VS Code at /Applications/Visual Studio Code.app/Contents
    • Flutter extension version 3.19.0

[!] Connected device
    ! No devices available

! Doctor found issues in 2 categories.

Thank you

@TahaTesser TahaTesser added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Feb 26, 2021
@mulieli
Copy link
Author

mulieli commented Feb 26, 2021

Hi @mulieli
I just tried your code sample on iOS 14.4 simulator with example video link using video_player: ^1.0.1. Which version of the video player are using?

Preview

Screen.Recording.2021-02-26.at.4.53.25.PM.mov
code sample
flutter doctor -v
Thank you

The video_player I used: ^1.0.1

I also recorded a video,Only the log video cannot be displayed

QQ20210226-193425-HD.mp4

@no-response no-response bot removed the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Feb 26, 2021
@mulieli
Copy link
Author

mulieli commented Feb 26, 2021

Hi @mulieli
I just tried your code sample on iOS 14.4 simulator with example video link using video_player: ^1.0.1. Which version of the video player are using?

Preview

Screen.Recording.2021-02-26.at.4.53.25.PM.mov
code sample
flutter doctor -v
Thank you

Could it be a problem with my simulator?

@nt4f04uNd
Copy link
Member

nt4f04uNd commented Feb 27, 2021

@TahaTesser afaik textures were not supported on simulators for a while. for me it is black on simulator as well

@nt4f04uNd
Copy link
Member

logs actually warn about that

@TahaTesser
Copy link
Member

Hi @mulieli @nt4f04uNd
I tried to reproduce again with a new project on the stable channel flutter create stabe_flutter
Added code sample and video_player: ^1.0.1, run the app iOS 14.4 simulator, video plays with no issues

code sample
import 'package:flutter/material.dart';
import 'package:triage/video_check.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Video player demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: VideoCheck(),
    );
  }
}
import 'package:flutter/material.dart';
import 'package:video_player/video_player.dart';

class VideoCheck extends StatefulWidget {
  @override
  _VideoCheckState createState() => _VideoCheckState();
}

class _VideoCheckState extends State<VideoCheck> {
  VideoPlayerController _playerController;

  @override
  void initState() {
    super.initState();

    /// Need an mp4 address
    _playerController = VideoPlayerController.network(
        "https://flutter.github.io/assets-for-api-docs/assets/videos/bee.mp4")
      ..initialize().then((_) {
        setState(() {});
      });

    _playerController.addListener(() {
      print(_playerController?.value?.isPlaying);
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text("video player"),
      ),
      body: Column(
        children: [
          Container(
            child: Stack(
              children: [
                GestureDetector(
                  behavior: HitTestBehavior.opaque,
                  child: Container(
                    width: MediaQuery.of(context).size.width,
                    height: 400,
                    color: Colors.black,
                    alignment: Alignment.center,
                    child: AspectRatio(
                      aspectRatio: _playerController?.value?.aspectRatio,
                      child: VideoPlayer(_playerController),
                    ),
                  ),
                  onTap: () {
                    if (_playerController.value.isPlaying) {
                      _playerController.pause();
                    } else {
                      _playerController.play();
                    }
                  },
                ),
              ],
            ),
          ),
          TextButton(
            child: Text("play"),
            onPressed: () {
              _playerController.play();
            },
          ),
          TextButton(
            child: Text("pause"),
            onPressed: () {
              _playerController.pause();
            },
          ),
          TextButton(
            child: Text("reset play"),
            onPressed: () {
              _playerController.seekTo(Duration.zero);
              _playerController.play();
            },
          )
        ],
      ),
    );
  }

  @override
  void dispose() {
    super.dispose();
    _playerController.dispose();
  }
}
logs
                    meworks/libswiftCoreFoundation.dylib
                    /Volumes/Extreme/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_str
                    ip
                    /Volumes/Extreme/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-5.0/i
                    phonesimulator/libswiftCoreFoundation.dylib -r -o
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreFoundation.dylib
                    Copying
                    /Volumes/Extreme/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-5.0/i
                    phonesimulator/libswiftCore.dylib to
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCore.dylib
                    /Volumes/Extreme/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_str
                    ip
                    /Volumes/Extreme/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-5.0/i
                    phonesimulator/libswiftCore.dylib -r -o
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCore.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftUIKit.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftUIKit.dylib
                    Codesigning
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftUIKit.dylib
                    /usr/bin/codesign --force --sign - --verbose
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftUIKit.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftUIKit.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftUIKit.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreImage.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftObjectiveC.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftMetal.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftos.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreAudio.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftDispatch.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreGraphics.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftQuartzCore.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreImage.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftObjectiveC.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftMetal.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftos.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreAudio.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftDispatch.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreGraphics.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftQuartzCore.dylib
                    Codesigning
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftObjectiveC.dylib
                    /usr/bin/codesign --force --sign - --verbose
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftObjectiveC.dylib
                    Codesigning
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftMetal.dylib
                    /usr/bin/codesign --force --sign - --verbose
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftMetal.dylib
                    Codesigning
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreImage.dylib
                    /usr/bin/codesign --force --sign - --verbose
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreImage.dylib
                    Codesigning
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftos.dylib
                    /usr/bin/codesign --force --sign - --verbose
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftos.dylib
                    Codesigning
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftQuartzCore.dylib
                    /usr/bin/codesign --force --sign - --verbose
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftQuartzCore.dylib
                    Codesigning
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftDispatch.dylib
                    /usr/bin/codesign --force --sign - --verbose
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftDispatch.dylib
                    Codesigning
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreAudio.dylib
                    /usr/bin/codesign --force --sign - --verbose
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreAudio.dylib
                    Codesigning
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreGraphics.dylib
                    /usr/bin/codesign --force --sign - --verbose
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreGraphics.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftObjectiveC.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftObjectiveC.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftMetal.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftMetal.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftos.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftos.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreImage.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreImage.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftQuartzCore.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftQuartzCore.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftFoundation.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftFoundation.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreAudio.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreMedia.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreAudio.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreMedia.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftDarwin.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftDarwin.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreFoundation.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreFoundation.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCore.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCore.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreGraphics.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreGraphics.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftDispatch.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftDispatch.dylib
                    Codesigning
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftFoundation.dylib
                    /usr/bin/codesign --force --sign - --verbose
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftFoundation.dylib
                    Codesigning
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreMedia.dylib
                    /usr/bin/codesign --force --sign - --verbose
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreMedia.dylib
                    Codesigning
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreFoundation.dylib
                    /usr/bin/codesign --force --sign - --verbose
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreFoundation.dylib
                    Codesigning
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftDarwin.dylib
                    /usr/bin/codesign --force --sign - --verbose
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftDarwin.dylib
                    Codesigning
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCore.dylib
                    /usr/bin/codesign --force --sign - --verbose
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCore.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreMedia.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreMedia.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreFoundation.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCoreFoundation.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftDarwin.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftDarwin.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftFoundation.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftFoundation.dylib
                    Probing signature of
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCore.dylib
                    /usr/bin/codesign -r- --display
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app/Fra
                    meworks/libswiftCore.dylib

                    CodeSign
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app (in
                    target 'Runner' from project 'Runner')
                        cd /Users/tahatesser/AndroidStudioProjects/stable_flutter/ios
                        export
                        CODESIGN_ALLOCATE\=/Volumes/Extreme/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolch
                        ain/usr/bin/codesign_allocate

                    Signing Identity:     "-"

                        /usr/bin/codesign --force --sign - --entitlements
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent
                        --timestamp\=none
                        /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app

                    RegisterExecutionPolicyException
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app (in
                    target 'Runner' from project 'Runner')
                        cd /Users/tahatesser/AndroidStudioProjects/stable_flutter/ios
                        builtin-RegisterExecutionPolicyException
                        /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app

                    Touch
                    /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app (in
                    target 'Runner' from project 'Runner')
                        cd /Users/tahatesser/AndroidStudioProjects/stable_flutter/ios
                        /usr/bin/touch -c
                        /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app

                    ** BUILD SUCCEEDED **
[ +166 ms]  └─Compiling, linking and signing... (completed in 8.8s)
[        ] Xcode build done.                                           29.8s
[   +1 ms] executing: [/Users/tahatesser/AndroidStudioProjects/stable_flutter/ios/] xcrun xcodebuild -configuration Debug
VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner
BUILD_DIR=/Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios -sdk iphonesimulator -arch x86_64
SCRIPT_OUTPUT_STREAM_FILE=/var/folders/37/jzy2jdc16sb3p89cn_6g967c0000gn/T/flutter_tools.lpHcXk/flutter_build_log_pipe.mQ
1wcZ/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings
[        ] executing: [/Users/tahatesser/AndroidStudioProjects/stable_flutter/ios/] xcrun xcodebuild -configuration Debug
VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner
BUILD_DIR=/Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios -sdk iphonesimulator -arch x86_64
SCRIPT_OUTPUT_STREAM_FILE=/var/folders/37/jzy2jdc16sb3p89cn_6g967c0000gn/T/flutter_tools.lpHcXk/flutter_build_log_pipe.mQ
1wcZ/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings
[+1622 ms] Command line invocation:
                        /Volumes/Extreme/Xcode.app/Contents/Developer/usr/bin/xcodebuild -configuration Debug
                        VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner
                        BUILD_DIR=/Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios -sdk iphonesimulator
                        -arch x86_64
                        SCRIPT_OUTPUT_STREAM_FILE=/var/folders/37/jzy2jdc16sb3p89cn_6g967c0000gn/T/flutter_tools.lpHcXk/f
                        lutter_build_log_pipe.mQ1wcZ/pipe_to_stdout FLUTTER_SUPPRESS_ANALYTICS=true
                        COMPILER_INDEX_STORE_ENABLE=NO -showBuildSettings

                    Build settings from command line:
                        ARCHS = x86_64
                        BUILD_DIR = /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios
                        COMPILER_INDEX_STORE_ENABLE = NO
                        FLUTTER_SUPPRESS_ANALYTICS = true
                        SCRIPT_OUTPUT_STREAM_FILE =
                        /var/folders/37/jzy2jdc16sb3p89cn_6g967c0000gn/T/flutter_tools.lpHcXk/flutter_build_log_pipe.mQ1w
                        cZ/pipe_to_stdout
                        SDKROOT = iphonesimulator14.4
                        VERBOSE_SCRIPT_LOGGING = YES

                    Build settings for action build and target Runner:
                        ACTION = build
                        AD_HOC_CODE_SIGNING_ALLOWED = YES
                        ALTERNATE_GROUP = staff
                        ALTERNATE_MODE = u+w,go-w,a+rX
                        ALTERNATE_OWNER = tahatesser
                        ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
                        ALWAYS_SEARCH_USER_PATHS = NO
                        ALWAYS_USE_SEPARATE_HEADERMAPS = NO
                        APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
                        APPLE_INTERNAL_DIR = /AppleInternal
                        APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
                        APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
                        APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
                        APPLICATION_EXTENSION_API_ONLY = NO
                        APPLY_RULES_IN_COPY_FILES = NO
                        APPLY_RULES_IN_COPY_HEADERS = NO
                        ARCHS = x86_64
                        ARCHS_STANDARD = arm64 x86_64 i386
                        ARCHS_STANDARD_32_64_BIT = arm64 i386 x86_64
                        ARCHS_STANDARD_32_BIT = i386
                        ARCHS_STANDARD_64_BIT = arm64 x86_64
                        ARCHS_STANDARD_INCLUDING_64_BIT = arm64 x86_64 i386
                        ARCHS_UNIVERSAL_IPHONE_OS = arm64 i386 x86_64
                        ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
                        AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos
                        watchsimulator
                        BITCODE_GENERATION_MODE = marker
                        BUILD_ACTIVE_RESOURCES_ONLY = NO
                        BUILD_COMPONENTS = headers build
                        BUILD_DIR = /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios
                        BUILD_LIBRARY_FOR_DISTRIBUTION = NO
                        BUILD_ROOT =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/P
                        roducts
                        BUILD_STYLE = 
                        BUILD_VARIANTS = normal
                        BUILT_PRODUCTS_DIR =
                        /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator
                        BUNDLE_CONTENTS_FOLDER_PATH_deep = Contents/
                        BUNDLE_EXECUTABLE_FOLDER_NAME_deep = MacOS
                        BUNDLE_FORMAT = shallow
                        BUNDLE_FRAMEWORKS_FOLDER_PATH = Frameworks
                        BUNDLE_PLUGINS_FOLDER_PATH = PlugIns
                        BUNDLE_PRIVATE_HEADERS_FOLDER_PATH = PrivateHeaders
                        BUNDLE_PUBLIC_HEADERS_FOLDER_PATH = Headers
                        CACHE_ROOT =
                        /var/folders/37/jzy2jdc16sb3p89cn_6g967c0000gn/C/com.apple.DeveloperTools/12.4-12D4e/Xcode
                        CCHROOT =
                        /var/folders/37/jzy2jdc16sb3p89cn_6g967c0000gn/C/com.apple.DeveloperTools/12.4-12D4e/Xcode
                        CHMOD = /bin/chmod
                        CHOWN = /usr/sbin/chown
                        CLANG_ANALYZER_NONNULL = YES
                        CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
                        CLANG_CXX_LIBRARY = libc++
                        CLANG_ENABLE_MODULES = YES
                        CLANG_ENABLE_OBJC_ARC = YES
                        CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
                        CLANG_WARN_BOOL_CONVERSION = YES
                        CLANG_WARN_COMMA = YES
                        CLANG_WARN_CONSTANT_CONVERSION = YES
                        CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES
                        CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
                        CLANG_WARN_EMPTY_BODY = YES
                        CLANG_WARN_ENUM_CONVERSION = YES
                        CLANG_WARN_INFINITE_RECURSION = YES
                        CLANG_WARN_INT_CONVERSION = YES
                        CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
                        CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES
                        CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
                        CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
                        CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO
                        CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
                        CLANG_WARN_STRICT_PROTOTYPES = YES
                        CLANG_WARN_SUSPICIOUS_MOVE = YES
                        CLANG_WARN_UNREACHABLE_CODE = YES
                        CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
                        CLASS_FILE_DIR =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
                        CLEAN_PRECOMPS = YES
                        CLONE_HEADERS = NO
                        CODESIGNING_FOLDER_PATH =
                        /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app
                        CODE_SIGNING_ALLOWED = YES
                        CODE_SIGNING_REQUIRED = YES
                        CODE_SIGN_CONTEXT_CLASS = XCiPhoneSimulatorCodeSignContext
                        CODE_SIGN_IDENTITY = -
                        CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
                        COLOR_DIAGNOSTICS = NO
                        COMBINE_HIDPI_IMAGES = NO
                        COMPILER_INDEX_STORE_ENABLE = NO
                        COMPOSITE_SDK_DIRS =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/CompositeSDKs
                        COMPRESS_PNG_FILES = YES
                        CONFIGURATION = Debug
                        CONFIGURATION_BUILD_DIR =
                        /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator
                        CONFIGURATION_TEMP_DIR =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator
                        CONTENTS_FOLDER_PATH = Runner.app
                        COPYING_PRESERVES_HFS_DATA = NO
                        COPY_HEADERS_RUN_UNIFDEF = NO
                        COPY_PHASE_STRIP = NO
                        COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
                        CORRESPONDING_DEVICE_PLATFORM_DIR =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
                        CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos
                        CORRESPONDING_DEVICE_SDK_DIR =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS
                        14.4.sdk
                        CORRESPONDING_DEVICE_SDK_NAME = iphoneos14.4
                        CP = /bin/cp
                        CREATE_INFOPLIST_SECTION_IN_BINARY = NO
                        CURRENT_ARCH = x86_64
                        CURRENT_PROJECT_VERSION = 1
                        CURRENT_VARIANT = normal
                        DART_OBFUSCATION = false
                        DEAD_CODE_STRIPPING = YES
                        DEBUGGING_SYMBOLS = YES
                        DEBUG_INFORMATION_FORMAT = dwarf
                        DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
                        DEFAULT_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
                        DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
                        DEFINES_MODULE = NO
                        DEPLOYMENT_LOCATION = NO
                        DEPLOYMENT_POSTPROCESSING = NO
                        DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
                        DEPLOYMENT_TARGET_CLANG_FLAG_NAME = mios-simulator-version-min
                        DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -mios-simulator-version-min=
                        DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
                        DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_simulator_version_min
                        DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
                        DEPLOYMENT_TARGET_SUGGESTED_VALUES = 9.0 9.2 10.0 10.2 11.0 11.2 11.4 12.1 12.3 13.0 13.2 13.4
                        13.6 14.1 14.3 14.4
                        DERIVED_FILES_DIR =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
                        DERIVED_FILE_DIR =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
                        DERIVED_SOURCES_DIR =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
                        DEVELOPER_APPLICATIONS_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer/Applications
                        DEVELOPER_BIN_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer/usr/bin
                        DEVELOPER_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer
                        DEVELOPER_FRAMEWORKS_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer/Library/Frameworks
                        DEVELOPER_FRAMEWORKS_DIR_QUOTED =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Library/Frameworks
                        DEVELOPER_LIBRARY_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer/Library
                        DEVELOPER_SDK_DIR =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
                        DEVELOPER_TOOLS_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer/Tools
                        DEVELOPER_USR_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer/usr
                        DEVELOPMENT_LANGUAGE = en
                        DEVELOPMENT_TEAM = X8NNQ9CYL2
                        DOCUMENTATION_FOLDER_PATH = Runner.app/en.lproj/Documentation
                        DONT_GENERATE_INFOPLIST_FILE = NO
                        DO_HEADER_SCANNING_IN_JAM = NO
                        DSTROOT = /tmp/Runner.dst
                        DT_TOOLCHAIN_DIR =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
                        DWARF_DSYM_FILE_NAME = Runner.app.dSYM
                        DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
                        DWARF_DSYM_FOLDER_PATH =
                        /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator
                        EFFECTIVE_PLATFORM_NAME = -iphonesimulator
                        EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
                        EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
                        ENABLE_BITCODE = NO
                        ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
                        ENABLE_HARDENED_RUNTIME = NO
                        ENABLE_HEADER_DEPENDENCIES = YES
                        ENABLE_ON_DEMAND_RESOURCES = YES
                        ENABLE_STRICT_OBJC_MSGSEND = YES
                        ENABLE_TESTABILITY = YES
                        ENABLE_TESTING_SEARCH_PATHS = NO
                        ENTITLEMENTS_DESTINATION = __entitlements
                        ENTITLEMENTS_REQUIRED = YES
                        EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
                        EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode*
                        *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
                        EXECUTABLES_FOLDER_PATH = Runner.app/Executables
                        EXECUTABLE_FOLDER_PATH = Runner.app
                        EXECUTABLE_NAME = Runner
                        EXECUTABLE_PATH = Runner.app/Runner
                        EXPANDED_CODE_SIGN_IDENTITY = 
                        EXPANDED_CODE_SIGN_IDENTITY_NAME = 
                        EXPANDED_PROVISIONING_PROFILE = 
                        FILE_LIST =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
                        FIXED_FILES_DIR =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
                        FLUTTER_APPLICATION_PATH = /Users/tahatesser/AndroidStudioProjects/stable_flutter
                        FLUTTER_BUILD_DIR = build
                        FLUTTER_BUILD_NAME = 1.0.0
                        FLUTTER_BUILD_NUMBER = 1
                        FLUTTER_ROOT = /Users/tahatesser/Code/flutter_beta
                        FLUTTER_SUPPRESS_ANALYTICS = true
                        FLUTTER_TARGET = /Users/tahatesser/AndroidStudioProjects/stable_flutter/lib/main.dart
                        FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
                        FRAMEWORK_FLAG_PREFIX = -framework
                        FRAMEWORK_SEARCH_PATHS =
                        "/Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/video_pla
                        yer" /Users/tahatesser/AndroidStudioProjects/stable_flutter/ios/Flutter
                        FRAMEWORK_VERSION = A
                        FULL_PRODUCT_NAME = Runner.app
                        GCC3_VERSION = 3.3
                        GCC_C_LANGUAGE_STANDARD = gnu99
                        GCC_DYNAMIC_NO_PIC = NO
                        GCC_INLINES_ARE_PRIVATE_EXTERN = YES
                        GCC_NO_COMMON_BLOCKS = YES
                        GCC_OBJC_LEGACY_DISPATCH = YES
                        GCC_OPTIMIZATION_LEVEL = 0
                        GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
                        GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1  COCOAPODS=1
                        GCC_SYMBOLS_PRIVATE_EXTERN = NO
                        GCC_TREAT_WARNINGS_AS_ERRORS = NO
                        GCC_VERSION = com.apple.compilers.llvm.clang.1_0
                        GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
                        GCC_WARN_64_TO_32_BIT_CONVERSION = YES
                        GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
                        GCC_WARN_UNDECLARED_SELECTOR = YES
                        GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
                        GCC_WARN_UNUSED_FUNCTION = YES
                        GCC_WARN_UNUSED_VARIABLE = YES
                        GENERATED_MODULEMAP_DIR =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/GeneratedModuleMaps-iphonesimulator
                        GENERATE_MASTER_OBJECT_FILE = NO
                        GENERATE_PKGINFO_FILE = YES
                        GENERATE_PROFILING_CODE = NO
                        GENERATE_TEXT_BASED_STUBS = NO
                        GID = 20
                        GROUP = staff
                        HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
                        HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
                        HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
                        HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
                        HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
                        HEADERMAP_USES_VFS = NO
                        HEADER_SEARCH_PATHS =
                        "/Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/video_pla
                        yer/video_player.framework/Headers"
                        HIDE_BITCODE_SYMBOLS = YES
                        HOME = /Users/tahatesser
                        ICONV = /usr/bin/iconv
                        INFOPLIST_EXPAND_BUILD_SETTINGS = YES
                        INFOPLIST_FILE = Runner/Info.plist
                        INFOPLIST_OUTPUT_FORMAT = binary
                        INFOPLIST_PATH = Runner.app/Info.plist
                        INFOPLIST_PREPROCESS = NO
                        INFOSTRINGS_PATH = Runner.app/en.lproj/InfoPlist.strings
                        INLINE_PRIVATE_FRAMEWORKS = NO
                        INSTALLHDRS_COPY_PHASE = NO
                        INSTALLHDRS_SCRIPT_PHASE = NO
                        INSTALL_DIR = /tmp/Runner.dst/Applications
                        INSTALL_GROUP = staff
                        INSTALL_MODE_FLAG = u+w,go-w,a+rX
                        INSTALL_OWNER = tahatesser
                        INSTALL_PATH = /Applications
                        INSTALL_ROOT = /tmp/Runner.dst
                        IPHONEOS_DEPLOYMENT_TARGET = 9.0
                        JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
                        JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
                        JAVA_ARCHIVE_CLASSES = YES
                        JAVA_ARCHIVE_TYPE = JAR
                        JAVA_COMPILER = /usr/bin/javac
                        JAVA_FOLDER_PATH = Runner.app/Java
                        JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
                        JAVA_JAR_FLAGS = cv
                        JAVA_SOURCE_SUBDIR = .
                        JAVA_USE_DEPENDENCIES = YES
                        JAVA_ZIP_FLAGS = -urg
                        JIKES_DEFAULT_FLAGS = +E +OLDCSO
                        KEEP_PRIVATE_EXTERNS = NO
                        LD_DEPENDENCY_INFO_FILE =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner
                        _dependency_info.dat
                        LD_GENERATE_MAP_FILE = NO
                        LD_MAP_FILE_PATH =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64
                        .txt
                        LD_NO_PIE = NO
                        LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
                        LD_RUNPATH_SEARCH_PATHS =  '@executable_path/Frameworks' '@loader_path/Frameworks'
                        @executable_path/Frameworks
                        LEGACY_DEVELOPER_DIR =
                        /Volumes/Extreme/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
                        LEX = lex
                        LIBRARY_DEXT_INSTALL_PATH = /Library/DriverExtensions
                        LIBRARY_FLAG_NOSPACE = YES
                        LIBRARY_FLAG_PREFIX = -l
                        LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
                        LIBRARY_SEARCH_PATHS =  /Users/tahatesser/AndroidStudioProjects/stable_flutter/ios/Flutter
                        LINKER_DISPLAYS_MANGLED_NAMES = NO
                        LINK_FILE_LIST_normal_x86_64 = 
                        LINK_WITH_STANDARD_LIBRARIES = YES
                        LLVM_TARGET_TRIPLE_OS_VERSION = ios9.0
                        LLVM_TARGET_TRIPLE_SUFFIX = -simulator
                        LLVM_TARGET_TRIPLE_VENDOR = apple
                        LOCALIZABLE_CONTENT_DIR = 
                        LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/en.lproj
                        LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFCopyLocalizedString
                        LOCALIZED_STRING_SWIFTUI_SUPPORT = YES
                        LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
                        LOCAL_APPS_DIR = /Applications
                        LOCAL_DEVELOPER_DIR = /Library/Developer
                        LOCAL_LIBRARY_DIR = /Library
                        LOCROOT = 
                        LOCSYMROOT = 
                        MACH_O_TYPE = mh_execute
                        MAC_OS_X_PRODUCT_BUILD_VERSION = 20D80
                        MAC_OS_X_VERSION_ACTUAL = 110202
                        MAC_OS_X_VERSION_MAJOR = 110000
                        MAC_OS_X_VERSION_MINOR = 110200
                        METAL_LIBRARY_FILE_BASE = default
                        METAL_LIBRARY_OUTPUT_DIR =
                        /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/Runner.app
                        MODULES_FOLDER_PATH = Runner.app/Modules
                        MODULE_CACHE_DIR = /Users/tahatesser/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
                        MTL_ENABLE_DEBUG_INFO = YES
                        NATIVE_ARCH = x86_64
                        NATIVE_ARCH_32_BIT = i386
                        NATIVE_ARCH_64_BIT = x86_64
                        NATIVE_ARCH_ACTUAL = x86_64
                        NO_COMMON = YES
                        OBJC_ABI_VERSION = 2
                        OBJECT_FILE_DIR =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
                        OBJECT_FILE_DIR_normal =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
                        OBJROOT =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex
                        ONLY_ACTIVE_ARCH = YES
                        OS = MACOS
                        OSAC = /usr/bin/osacompile
                        OTHER_LDFLAGS =  -framework "video_player"
                        PACKAGE_CONFIG =
                        /Users/tahatesser/AndroidStudioProjects/stable_flutter/.dart_tool/package_config.json
                        PACKAGE_TYPE = com.apple.package-type.wrapper.application
                        PASCAL_STRINGS = YES
                        PATH =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/usr/bin:/Volumes/Extreme/engine/src/flutter/lib/web
                        _ui/dev:/Volumes/Extreme/depot_tools:/Library/Frameworks/Python.framework/Versions/3.9/bin:/Volum
                        es/Extreme/SDK/platform-tools:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin
                        :/Volumes/Extreme/engine/src/flutter/lib/web_ui/dev:/Volumes/Extreme/depot_tools:/Library/Framewo
                        rks/Python.framework/Versions/3.9/bin:/Volumes/Extreme/SDK/platform-tools:/Volumes/Extreme/flutte
                        r/bin:/Users/tahatesser/.pub-cache/bin:/Users/tahatesser/Code/flutter_beta/bin/cache/dart-sdk/bin
                        :/Users/tahatesser/triagemagic/bin/:/Volumes/Extreme/flutter/bin:/Users/tahatesser/.pub-cache/bin
                        :/Users/tahatesser/Code/flutter_beta/bin/cache/dart-sdk/bin:/Users/tahatesser/triagemagic/bin/
                        PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include
                        /System/Library/Frameworks /System/Library/PrivateFrameworks
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Headers
                        /Volumes/Extreme/Xcode.app/Contents/Developer/SDKs
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Platforms
                        PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
                        PFE_FILE_C_DIALECTS = objective-c
                        PKGINFO_FILE_PATH =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
                        PKGINFO_PATH = Runner.app/PkgInfo
                        PLATFORM_DEVELOPER_APPLICATIONS_DIR =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applic
                        ations
                        PLATFORM_DEVELOPER_BIN_DIR =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bi
                        n
                        PLATFORM_DEVELOPER_LIBRARY_DIR =
                        /Volumes/Extreme/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
                        /Library
                        PLATFORM_DEVELOPER_SDK_DIR =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
                        PLATFORM_DEVELOPER_TOOLS_DIR =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
                        PLATFORM_DEVELOPER_USR_DIR =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
                        PLATFORM_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
                        PLATFORM_DISPLAY_NAME = iOS Simulator
                        PLATFORM_NAME = iphonesimulator
                        PLATFORM_PREFERRED_ARCH = x86_64
                        PLATFORM_PRODUCT_BUILD_VERSION = 18D46
                        PLIST_FILE_OUTPUT_FORMAT = binary
                        PLUGINS_FOLDER_PATH = Runner.app/PlugIns
                        PODS_BUILD_DIR = /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios
                        PODS_CONFIGURATION_BUILD_DIR =
                        /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator
                        PODS_PODFILE_DIR_PATH = /Users/tahatesser/AndroidStudioProjects/stable_flutter/ios/.
                        PODS_ROOT = /Users/tahatesser/AndroidStudioProjects/stable_flutter/ios/Pods
                        PODS_XCFRAMEWORKS_BUILD_DIR =
                        /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/XCFramewor
                        kIntermediates
                        PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
                        PRECOMP_DESTINATION_DIR =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
                        PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
                        PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
                        PRODUCT_BUNDLE_IDENTIFIER = com.nevercode.triage
                        PRODUCT_BUNDLE_PACKAGE_TYPE = APPL
                        PRODUCT_MODULE_NAME = Runner
                        PRODUCT_NAME = Runner
                        PRODUCT_SETTINGS_PATH =
                        /Users/tahatesser/AndroidStudioProjects/stable_flutter/ios/Runner/Info.plist
                        PRODUCT_TYPE = com.apple.product-type.application
                        PROFILING_CODE = NO
                        PROJECT = Runner
                        PROJECT_DERIVED_FILE_DIR =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/DerivedSources
                        PROJECT_DIR = /Users/tahatesser/AndroidStudioProjects/stable_flutter/ios
                        PROJECT_FILE_PATH = /Users/tahatesser/AndroidStudioProjects/stable_flutter/ios/Runner.xcodeproj
                        PROJECT_NAME = Runner
                        PROJECT_TEMP_DIR =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build
                        PROJECT_TEMP_ROOT =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex
                        PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
                        RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
                        REMOVE_CVS_FROM_RESOURCES = YES
                        REMOVE_GIT_FROM_RESOURCES = YES
                        REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
                        REMOVE_HG_FROM_RESOURCES = YES
                        REMOVE_SVN_FROM_RESOURCES = YES
                        REZ_COLLECTOR_DIR =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
                        REZ_OBJECTS_DIR =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Obj
                        ects
                        SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
                        SCRIPTS_FOLDER_PATH = Runner.app/Scripts
                        SCRIPT_OUTPUT_STREAM_FILE =
                        /var/folders/37/jzy2jdc16sb3p89cn_6g967c0000gn/T/flutter_tools.lpHcXk/flutter_build_log_pipe.mQ1w
                        cZ/pipe_to_stdout
                        SDKROOT =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/i
                        PhoneSimulator14.4.sdk
                        SDK_DIR =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/i
                        PhoneSimulator14.4.sdk
                        SDK_DIR_iphonesimulator14_4 =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/i
                        PhoneSimulator14.4.sdk
                        SDK_NAME = iphonesimulator14.4
                        SDK_NAMES = iphonesimulator14.4
                        SDK_PRODUCT_BUILD_VERSION = 18D46
                        SDK_VERSION = 14.4
                        SDK_VERSION_ACTUAL = 140400
                        SDK_VERSION_MAJOR = 140000
                        SDK_VERSION_MINOR = 140400
                        SED = /usr/bin/sed
                        SEPARATE_STRIP = NO
                        SEPARATE_SYMBOL_EDIT = NO
                        SET_DIR_MODE_OWNER_GROUP = YES
                        SET_FILE_MODE_OWNER_GROUP = NO
                        SHALLOW_BUNDLE = YES
                        SHARED_DERIVED_FILE_DIR =
                        /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator/DerivedSou
                        rces
                        SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
                        SHARED_PRECOMPS_DIR =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/PrecompiledHeaders
                        SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
                        SKIP_INSTALL = NO
                        SOURCE_ROOT = /Users/tahatesser/AndroidStudioProjects/stable_flutter/ios
                        SRCROOT = /Users/tahatesser/AndroidStudioProjects/stable_flutter/ios
                        STRINGS_FILE_OUTPUT_ENCODING = binary
                        STRIP_BITCODE_FROM_COPIED_FILES = NO
                        STRIP_INSTALLED_PRODUCT = YES
                        STRIP_STYLE = all
                        STRIP_SWIFT_SYMBOLS = YES
                        SUPPORTED_DEVICE_FAMILIES = 1,2
                        SUPPORTED_PLATFORMS = iphonesimulator iphoneos
                        SUPPORTS_TEXT_BASED_API = NO
                        SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
                        SWIFT_OPTIMIZATION_LEVEL = -Onone
                        SWIFT_PLATFORM_TARGET_PREFIX = ios
                        SWIFT_VERSION = 5.0
                        SYMROOT =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/P
                        roducts
                        SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
                        SYSTEM_APPS_DIR = /Applications
                        SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
                        SYSTEM_DEMOS_DIR = /Applications/Extras
                        SYSTEM_DEVELOPER_APPS_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer/Applications
                        SYSTEM_DEVELOPER_BIN_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer/usr/bin
                        SYSTEM_DEVELOPER_DEMOS_DIR =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
                        SYSTEM_DEVELOPER_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer
                        SYSTEM_DEVELOPER_DOC_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer/ADC Reference Library
                        SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Applications/Graphics Tools
                        SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer/Applications/Java
                        Tools
                        SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Applications/Performance Tools
                        SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer/ADC Reference
                        Library/releasenotes
                        SYSTEM_DEVELOPER_TOOLS = /Volumes/Extreme/Xcode.app/Contents/Developer/Tools
                        SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer/ADC Reference
                        Library/documentation/DeveloperTools
                        SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer/ADC
                        Reference Library/releasenotes/DeveloperTools
                        SYSTEM_DEVELOPER_USR_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer/usr
                        SYSTEM_DEVELOPER_UTILITIES_DIR =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Applications/Utilities
                        SYSTEM_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
                        SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
                        SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
                        SYSTEM_LIBRARY_DIR = /System/Library
                        TAPI_VERIFY_MODE = ErrorsOnly
                        TARGETED_DEVICE_FAMILY = 1,2
                        TARGETNAME = Runner
                        TARGET_BUILD_DIR =
                        /Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/Debug-iphonesimulator
                        TARGET_NAME = Runner
                        TARGET_TEMP_DIR =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
                        TEMP_DIR =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
                        TEMP_FILES_DIR =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
                        TEMP_FILE_DIR =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
                        TEMP_ROOT =
                        /Users/tahatesser/Library/Developer/Xcode/DerivedData/Runner-gmggbctziltjdkegoqwduoauknhh/Build/I
                        ntermediates.noindex
                        TEST_FRAMEWORK_SEARCH_PATHS =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Librar
                        y/Frameworks
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/i
                        PhoneSimulator14.4.sdk/Developer/Library/Frameworks
                        TEST_LIBRARY_SEARCH_PATHS =
                        /Volumes/Extreme/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/li
                        b
                        TOOLCHAIN_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
                        TRACK_WIDGET_CREATION = true
                        TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
                        TREE_SHAKE_ICONS = false
                        UID = 501
                        UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
                        UNSTRIPPED_PRODUCT = NO
                        USER = tahatesser
                        USER_APPS_DIR = /Users/tahatesser/Applications
                        USER_LIBRARY_DIR = /Users/tahatesser/Library
                        USE_DYNAMIC_NO_PIC = YES
                        USE_HEADERMAP = YES
                        USE_HEADER_SYMLINKS = NO
                        USE_LLVM_TARGET_TRIPLES = YES
                        USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES
                        USE_LLVM_TARGET_TRIPLES_FOR_LD = YES
                        USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES
                        USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
                        VALIDATE_PRODUCT = NO
                        VALIDATE_WORKSPACE = NO
                        VALID_ARCHS = arm64 arm64e i386 x86_64
                        VERBOSE_PBXCP = NO
                        VERBOSE_SCRIPT_LOGGING = YES
                        VERSIONING_SYSTEM = apple-generic
                        VERSIONPLIST_PATH = Runner.app/version.plist
                        VERSION_INFO_BUILDER = tahatesser
                        VERSION_INFO_FILE = Runner_vers.c
                        VERSION_INFO_STRING = "@(#)PROGRAM:Runner  PROJECT:Runner-1"
                        WRAPPER_EXTENSION = app
                        WRAPPER_NAME = Runner.app
                        WRAPPER_SUFFIX = .app
                        WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
                        XCODE_APP_SUPPORT_DIR = /Volumes/Extreme/Xcode.app/Contents/Developer/Library/Xcode
                        XCODE_PRODUCT_BUILD_VERSION = 12D4e
                        XCODE_VERSION_ACTUAL = 1240
                        XCODE_VERSION_MAJOR = 1200
                        XCODE_VERSION_MINOR = 1240
                        XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
                        YACC = yacc
                        arch = x86_64
                        variant = normal


                    2021-03-01 12:54:30.081 xcodebuild[16215:308266]  DVTAssertions: Warning in
                    /Library/Caches/com.apple.xbs/Sources/DVTiOSFrameworks/DVTiOSFrameworks-17705/DTDeviceKitBase/DTDKRem
                    oteDeviceData.m:371
                    Details:  (null) deviceType from 00008020-000255113EE8402E was NULL when -platform called.
                    Object:   <DTDKMobileDeviceToken: 0x7fa145d5faf0>
                    Method:   -platform
                    Thread:   <NSThread: 0x7fa14185c220>{number = 3, name = (null)}
                    Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful
                    information you can provide.
[ +220 ms] executing: xcrun simctl install 948EC106-78EE-4A69-8D31-83C00E6419DE
/Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/iphonesimulator/Runner.app
[+2981 ms] executing: /usr/bin/plutil -convert json -o -
/Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/iphonesimulator/Runner.app/Info.plist
[  +11 ms] Exit code 0 from: /usr/bin/plutil -convert json -o -
/Users/tahatesser/AndroidStudioProjects/stable_flutter/build/ios/iphonesimulator/Runner.app/Info.plist
[        ]
{"CFBundleName":"triage","DTXcode":"1240","DTSDKName":"iphonesimulator14.4","UILaunchStoryboardName":"LaunchScreen","CFBu
ndleIcons~ipad":{"CFBundlePrimaryIcon":{"CFBundleIconFiles":["AppIcon20x20","AppIcon29x29","AppIcon40x40","AppIcon60x60",
"AppIcon76x76","AppIcon83.5x83.5"],"CFBundleIconName":"AppIcon"}},"DTSDKBuild":"18D46","CFBundleDevelopmentRegion":"en","
CFBundleVersion":"1","BuildMachineOSBuild":"20D80","DTPlatformName":"iphonesimulator","CFBundlePackageType":"APPL","UIMai
nStoryboardFile":"Main","CFBundleSupportedPlatforms":["iPhoneSimulator"],"CFBundleShortVersionString":"1.0.0","CFBundleIn
foDictionaryVersion":"6.0","CFBundleExecutable":"Runner","DTCompiler":"com.apple.compilers.llvm.clang.1_0","UISupportedIn
terfaceOrientations~ipad":["UIInterfaceOrientationPortrait","UIInterfaceOrientationPortraitUpsideDown","UIInterfaceOrient
ationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"MinimumOSVersion":"9.0","CFBundleIdentifier":"com.nevercode.
triage","UIDeviceFamily":[1,2],"DTPlatformVersion":"14.4","CFBundleSignature":"????","CFBundleIcons":{"CFBundlePrimaryIco
n":{"CFBundleIconFiles":["AppIcon20x20","AppIcon29x29","AppIcon40x40","AppIcon60x60"],"CFBundleIconName":"AppIcon"}},"DTX
codeBuild":"12D4e","LSRequiresIPhoneOS":true,"UISupportedInterfaceOrientations":["UIInterfaceOrientationPortrait","UIInte
rfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"UIViewControllerBasedStatusBarAppearance":false,"
NSBonjourServices":["_dartobservatory._tcp"],"DTPlatformBuild":"18D46","NSLocalNetworkUsageDescription":"Allow Flutter
tools on your computer to connect and debug your application. This prompt will not appear on release builds."}
[   +3 ms] executing: xcrun simctl launch 948EC106-78EE-4A69-8D31-83C00E6419DE com.nevercode.triage
--enable-dart-profiling --enable-checked-mode --verify-entry-points --observatory-port=0
[ +223 ms] com.nevercode.triage: 16243
[        ] Waiting for observatory port to be available...
[ +537 ms] Observatory URL on device: http://127.0.0.1:54076/tlrOQxddr18=/
[   +6 ms] Caching compiled dill
[ +118 ms] Connecting to service protocol: http://127.0.0.1:54076/tlrOQxddr18=/
[ +231 ms] Launching a Dart Developer Service (DDS) instance at http://127.0.0.1:0, connecting to VM service at
http://127.0.0.1:54076/tlrOQxddr18=/.
[  +86 ms] DDS is listening at http://127.0.0.1:54081/RAra8eIIKvg=/.
[  +79 ms] Successfully connected to service protocol: http://127.0.0.1:54076/tlrOQxddr18=/
[ +135 ms] Activating Dart DevTools...
[+1409 ms] flutter: false
[  +18 ms] flutter: false
[   +6 ms] flutter: false
[  +19 ms] flutter: false
[   +6 ms] flutter: false
[  +87 ms] flutter: false
[        ] flutter: false
[        ] flutter: false
[+1377 ms] Activating Dart DevTools... (completed in 2,925ms)
[ +648 ms] DevFS: Creating new filesystem on the device (null)
[  +15 ms] DevFS: Created new filesystem on the device
(file:///Users/tahatesser/Library/Developer/CoreSimulator/Devices/948EC106-78EE-4A69-8D31-83C00E6419DE/data/Containers/Da
ta/Application/4C2C0445-4382-480A-8DF9-C7DE8D41D82B/tmp/stable_flutterJJqI4F/stable_flutter/)
[   +4 ms] Updating assets
[  +95 ms] Syncing files to device iPhone 12...
[   +1 ms] <- reset
[        ] Compiling dart to kernel with 0 updated files
[   +2 ms] <- recompile package:triage/main.dart 13cb2f44-c423-4cbd-883a-3218f7317962
[        ] <- 13cb2f44-c423-4cbd-883a-3218f7317962
[ +136 ms] Updating files.
[        ] DevFS: Sync finished
[        ] Syncing files to device iPhone 12... (completed in 141ms)
[        ] Synced 0.0MB.
[   +1 ms] <- accept
[   +5 ms] Connected to _flutterView/0x7faad2818220.
[   +2 ms] Flutter run key commands.
[   +1 ms] r Hot reload. 🔥🔥🔥
[   +1 ms] R Hot restart.
[        ] h Repeat this help message.
[        ] d Detach (terminate "flutter run" but leave application running).
[        ] c Clear the screen
[        ] q Quit (terminate the application on the device).
[        ] An Observatory debugger and profiler on iPhone 12 is available at: http://127.0.0.1:54081/RAra8eIIKvg=/
[   +1 ms] 
           Flutter DevTools, a Flutter debugger and profiler, on iPhone 12 is available at:
           http://127.0.0.1:9100?uri=http%3A%2F%2F127.0.0.1%3A54081%2FRAra8eIIKvg%3D%2F
[        ] Running with unsound null safety
[        ] For more information see https://dart.dev/null-safety/unsound-null-safety
[+54183 ms] flutter: true
[ +514 ms] flutter: true
[        ] flutter: true
[ +497 ms] flutter: true
[        ] flutter: true
[ +497 ms] flutter: true
[        ] flutter: true
[ +501 ms] flutter: true
[        ] flutter: true
[ +497 ms] flutter: false
flutter doctor -v
[✓] Flutter (Channel stable, 1.22.6, on macOS 11.2.2 20D80 darwin-x64, locale
    en-GB)
    • Flutter version 1.22.6 at /Users/tahatesser/Code/flutter_stable
    • Framework revision 9b2d32b605 (5 weeks ago), 2021-01-22 14:36:39 -0800
    • Engine revision 2f0af37152
    • Dart version 2.10.5

 
[✓] Android toolchain - develop for Android devices (Android SDK version 30.0.3)
    • Android SDK at /Volumes/Extreme/SDK
    • Platform android-30, build-tools 30.0.3
    • ANDROID_HOME = /Volumes/Extreme/SDK
    • Java binary at: /Applications/Android
      Studio.app/Contents/jre/jdk/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build
      1.8.0_242-release-1644-b3-6915495)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS (Xcode 12.4)
    • Xcode at /Volumes/Extreme/Xcode.app/Contents/Developer
    • Xcode 12.4, Build version 12D4e
    • CocoaPods version 1.10.1

[!] Android Studio (version 4.1)
    • Android Studio at /Applications/Android Studio.app/Contents
    ✗ Flutter plugin not installed; this adds Flutter specific functionality.
    ✗ Dart plugin not installed; this adds Dart specific functionality.
    • Java version OpenJDK Runtime Environment (build
      1.8.0_242-release-1644-b3-6915495)

[✓] VS Code (version 1.53.2)
    • VS Code at /Applications/Visual Studio Code.app/Contents
    • Flutter extension version 3.19.0

[✓] Connected device (2 available)
    • Taha’s iPad (mobile) • 00008020-000255113EE8402E            • ios • iOS
      14.4
    • iPhone 12 (mobile)   • 948EC106-78EE-4A69-8D31-83C00E6419DE • ios •
      com.apple.CoreSimulator.SimRuntime.iOS-14-4 (simulator)

! Doctor found issues in 1 category.

@TahaTesser TahaTesser added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Mar 1, 2021
@mulieli

This comment has been minimized.

@no-response no-response bot removed the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Mar 1, 2021
@TahaTesser
Copy link
Member

@mulieli @nt4f04uNd
Please provide the logs with a warning as I'm unable to reproduce it #76674 (comment)

@TahaTesser TahaTesser added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Mar 1, 2021
@gazialankus
Copy link
Contributor

gazialankus commented Mar 11, 2021

This started happening for us after upgrading video_player from 1.0.1 to 2.0.1, FWIW
I don't see anything suspicious in Flutter logs, but XCode had an error at the last line below that should be useful:

XCode logs with error
2021-03-11 16:33:44.598658+0300 Runner[37711:2539970] Metal API Validation Enabled
2021-03-11 16:33:44.738898+0300 Runner[37711:2540873] flutter: Observatory listening on http://127.0.0.1:55591/vYolN3lULfs=/
2021-03-11 16:33:54.897832+0300 Runner[37711:2539970]  HALDefaultDevice::Initialize: couldn't add the default input device listener, Error: 1102 ()
2021-03-11 16:33:54.898032+0300 Runner[37711:2539970]  HALDefaultDevice::Initialize: couldn't add the default output device listener, Error: 1102 ()
2021-03-11 16:33:54.898188+0300 Runner[37711:2539970]  HALDefaultDevice::Initialize: couldn't add the default system output device listener, Error: 1102 ()
2021-03-11 16:33:54.898353+0300 Runner[37711:2539970]  HALDefaultDevice::Initialize: couldn't add the default shared output device listener, Error: 1102 ()
2021-03-11 16:33:54.900056+0300 Runner[37711:2539970] [plugin] AddInstanceForFactory: No factory registered for id <CFUUID 0x600003de7e60> F8BB1C28-BAE8-11D6-9C31-00039315CD46
2021-03-11 16:33:54.903146+0300 Runner[37711:2539970]  AudioObjectSetPropertyData: no object with given ID 0
2021-03-11 16:33:54.903264+0300 Runner[37711:2539970] AudioSessionSimulatorClientManager.cpp:83:SimulatorUpdateHALForPrimaySession_Priv: Failed to set processVolumeScalar on device. Error: 560947818
2021-03-11 16:33:55.303422+0300 Runner[37711:2540830] TX and TY are 0. Rotation: 0. Natural width,height: 1100.000000, 1000.000000
2021-03-11 16:33:55.307962+0300 Runner[37711:2541261]  HALCADClient::GetPropertyData: unknown property
2021-03-11 16:33:55.308100+0300 Runner[37711:2541261] [ddagg]        AggregateDevice.mm:820   couldn't get default output device, ID = 0, err = 0!
2021-03-11 16:33:55.308386+0300 Runner[37711:2541261]  HALCADClient::GetPropertyData: unknown property
2021-03-11 16:33:55.308462+0300 Runner[37711:2541261] [ddagg]        AggregateDevice.mm:820   couldn't get default input device, ID = 0, err = 0!
2021-03-11 16:33:55.308607+0300 Runner[37711:2541261] [aqme] AQMEIO.cpp:352:AQMEIOManager_FindIOUnit: error -66680 finding/initializing Device.AQDefaultDevice
2021-03-11 16:33:55.308756+0300 Runner[37711:2541266] [aqme] AQMEIO.cpp:352:AQMEIOManager_FindIOUnit: error -66680 finding/initializing Device.AQDefaultDevice
2021-03-11 16:33:55.308906+0300 Runner[37711:2541266]  AudioDeviceStop: no device with given ID
2021-03-11 16:33:55.309013+0300 Runner[37711:2541266] [aqme] AQMEIO.cpp:352:AQMEIOManager_FindIOUnit: error -66680 finding/initializing Device.AQDefaultDevice
2021-03-11 16:33:55.308728+0300 Runner[37711:2541261] CA_UISoundClient.cpp:111:CA_UISoundClientBase: * * * NULL AQIONode object
2021-03-11 16:33:55.309162+0300 Runner[37711:2541266] [aqme] AQMEIO.cpp:352:AQMEIOManager_FindIOUnit: error -66680 finding/initializing Device.AQDefaultDevice
2021-03-11 16:33:55.309324+0300 Runner[37711:2541266] [aqme] AQMEIO.cpp:352:AQMEIOManager_FindIOUnit: error -66680 finding/initializing Device.AQDefaultDevice
2021-03-11 16:33:55.309383+0300 Runner[37711:2541261] CA_UISoundClient.cpp:848:UISoundNewRenderer: Can't make UISound Renderer
2021-03-11 16:33:55.309450+0300 Runner[37711:2541266] [aqme] AQMEIO.cpp:352:AQMEIOManager_FindIOUnit: error -66680 finding/initializing Device.AQDefaultDevice
2021-03-11 16:33:55.309599+0300 Runner[37711:2541266]  AudioObjectRemovePropertyListener: no object with given ID 0
2021-03-11 16:33:55.309680+0300 Runner[37711:2541266]  AudioObjectRemovePropertyListener: no object with given ID 0
2021-03-11 16:33:55.309754+0300 Runner[37711:2541266]  AudioObjectRemovePropertyListener: no object with given ID 0
2021-03-11 16:33:55.310408+0300 Runner[37711:2541266] [] [16:33:55.310] faqrp_buildAudioQueue signalled err=-12746 (err) (FigAudioQueueCreate failed) at /Library/Caches/com.apple.xbs/Sources/EmbeddedCoreMedia_Sim/EmbeddedCoreMedia-2765.6/Prototypes/RenderPipelines/FigAudioQueueRenderPipeline.c:1016
2021-03-11 16:33:55.328300+0300 Runner[37711:2540852] [VERBOSE-2:ui_dart_state.cc(186)] Unhandled Exception: PlatformException(VideoError, Failed to load video: The operation could not be completed, null, null)
flutter doctor -v
~ % flutter doctor -v
[✓] Flutter (Channel stable, 2.0.0, on macOS 11.1 20C69 darwin-x64, locale en)
    • Flutter version 2.0.0 at /Users/gazihan/Installs/Flutter/flutter_stable
    • Framework revision 60bd88df91 (8 days ago), 2021-03-03 09:13:17 -0800
    • Engine revision 40441def69
    • Dart version 2.12.0

[✓] Android toolchain - develop for Android devices (Android SDK version 30.0.0)
    • Android SDK at /Users/gazihan/Library/Android/sdk
    • Platform android-30, build-tools 30.0.0
    • ANDROID_HOME = /Users/gazihan/Library/Android/sdk
    • Java binary at: /Users/gazihan/Library/Application
      Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/201.7042882/Android
      Studio.app/Contents/jre/jdk/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build
      1.8.0_242-release-1644-b3-6915495)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Xcode 12.4, Build version 12D4e
    • CocoaPods version 1.10.1

[✓] Chrome - develop for the web
    • CHROME_EXECUTABLE =
      /Users/gazihan/Installs/Chrome_Unsafe/google-chrome-unsafe

[✓] Android Studio (version 4.1)
    • Android Studio at /Users/gazihan/Library/Application
      Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/201.7042882/Android
      Studio.app/Contents
    • Flutter plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/6351-dart
    • Java version OpenJDK Runtime Environment (build
      1.8.0_242-release-1644-b3-6915495)

[✓] IntelliJ IDEA Ultimate Edition (version 2020.3.2)
    • IntelliJ at /Users/gazihan/Applications/JetBrains Toolbox/IntelliJ IDEA
      Ultimate.app
    • Flutter plugin version 54.0.3
    • Dart plugin version 203.7759

[✓] VS Code (version 1.49.0)
    • VS Code at /Applications/Visual Studio Code.app/Contents
    • Flutter extension version 3.14.1

[✓] Connected device (3 available)
    • Erhan’s iPhone (mobile)    • c1216314e896f2946350f5098c6ba9371fe91500 •
      ios            • iOS 14.4
    • iPhone 12 Pro Max (mobile) • CF95E55A-0032-4D65-9392-78C5C05CC428     •
      ios            • com.apple.CoreSimulator.SimRuntime.iOS-14-4 (simulator)
    • Chrome (web)               • chrome                                   •
      web-javascript • Google Chrome 88.0.4324.192

• No issues found!

It plays fine on an iPhone device. Does not play and has this error on the simulator (iOS 14.4).

@dan-sel-tx
Copy link

I'm on video_player 2.0.1 as well, deploying as a PWA. Works fine on Web and Android. On iOS, physical device, the video never initializes, hence, just a black screen.

Flutter 2.0.4 Stable.

plist has:
NSAppTransportSecurity

NSAllowsArbitraryLoads

@no-response
Copy link

no-response bot commented Apr 6, 2021

Without additional information, we are unfortunately not sure how to resolve this issue. We are therefore reluctantly going to close this bug for now. Please don't hesitate to comment on the bug if you have any more information for us; we will reopen it right away!
Thanks for your contribution.

@no-response no-response bot closed this as completed Apr 6, 2021
@pedromassangocode pedromassangocode added the r: timeout Issue is closed due to author not providing the requested details in time label Apr 7, 2021
@pedromassangocode pedromassangocode removed the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Apr 7, 2021
@TahaTesser TahaTesser reopened this Apr 7, 2021
@TahaTesser TahaTesser removed the r: timeout Issue is closed due to author not providing the requested details in time label Apr 7, 2021
@TahaTesser
Copy link
Member

@gazialankus @superdantx
Can you please provide steps to reproduce the issue and a minimal complete reproducible code sample
Thank you

@TahaTesser TahaTesser added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Apr 8, 2021
@dan-sel-tx
Copy link

https://github.com/SuperdanTX/video_test_flutter

Can also run from themobileguys.com on web, Android and iOS from the browser.
iOS, seems to never initialize the video.

@TahaTesser
Copy link
Member

Hi @superdantx
I can load your project on both simulator and device, video plays, no black screen

@dan-sel-tx
Copy link

Correct. The issue only occurs on iPhone, running from the deployed website. On iPhone, physical or simulator, the deployed website will not initialize the video.
Steps: Open Safari on Mac, go to themobileguys.com, video initializes and plays fine. In the iPhone Simulator, open Safari, do the same, video will not initialize.
I am not sure this is an issue with the package. It works fine on Web and Android, so don't know if I'm missing something on the iOS side.
I am targeting PWA, not the native device.

The black screen issue, at least in my case, was related to the a test video that had the first frame in black, so it was loading, just black. Having changed to our favorite butteryfly video, that is what uncovered the video not initializing issue.

@TahaTesser
Copy link
Member

@superdantx
This issue is for simulator, the one you describing for safari #47030

@pedromassangocode
Copy link

Without additional information, we are unfortunately not sure how to resolve this issue.
We are therefore reluctantly going to close this bug for now.
Please don't hesitate to comment on the bug if you have any more information for us; we will reopen it right away!
Thanks for your contribution.

Could everyone who still has this problem please file a new issue with the exact description of what happens, logs, and the output of flutter doctor -v.
All system setups can be slightly different, so it's always better to open new issues and reference related issues.

@pedromassangocode pedromassangocode added r: timeout Issue is closed due to author not providing the requested details in time and removed in triage Presently being triaged by the triage team waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds labels May 7, 2021
@github-actions
Copy link

github-actions bot commented Aug 2, 2021

This thread has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar issue, please open a new bug, including the output of flutter doctor -v and a minimal reproduction of the issue.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Aug 2, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
r: timeout Issue is closed due to author not providing the requested details in time
Projects
None yet
Development

No branches or pull requests

7 participants