Файл 'audioplayers / AudioplayersPlugin.h' не найден во флаттере - PullRequest
0 голосов
/ 28 января 2019

Невозможно использовать звук во флаттере для разработки ios

Это мой код: pubspec.yaml (с использованием аудиоплеера: плагин ^ 0.7.8 для воспроизведения аудио)

name: play_audio
    dependencies:
  flutter:
    sdk: flutter

  # The following adds the Cupertino Icons font to your application.
  # Use with the CupertinoIcons class for iOS style icons.
  cupertino_icons: ^0.1.2
  # lib for adding sound
  audioplayers: ^0.7.8

dev_dependencies:
  flutter_test:
    sdk: flutter

flutter:

  # the material Icons class.
  uses-material-design: true

  # To add assets to your application, add an assets section, like this:
  assets:
    - assets/sound/correct_answer.mp3
    - assets/sound/wrong_answer.mp3

play_audio.файл дартса Импорт файла audio_cache.dart для воспроизведения звука.Я импортировал аудиофайлы в папку ресурсов проекта.Тот же код отлично работает на устройствах Android.

import 'package:audioplayers/audio_cache.dart';
import "package:flutter/material.dart";

// audio file path
const correctSoundPath = "sound/correct_answer.mp3";
const inCorrectSoundPath = "sound/wrong_answer.mp3";

class PlayAudio extends StatefulWidget {
  _PlayAudioState createState() => _PlayAudioState();
}

class _PlayAudioState extends State<PlayAudio> {
  AudioCache player;

  @override
  void initState() {
    // TODO: implement initState
    super.initState();
    player = AudioCache(); // initialising audio cache
    debugPrint("inside initState");
  }

  Future _playCorrect() async {
    player.play(correctSoundPath);
    debugPrint("inside _playCorrect()");
  }

  Future _playIncorrect() async {
    player.play(inCorrectSoundPath);
    debugPrint("inside _playIncorrect()");
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Column(
        mainAxisAlignment: MainAxisAlignment.center,
        crossAxisAlignment: CrossAxisAlignment.center,
        children: <Widget>[
          // correct button
          MaterialButton(
            child: Text("Correct"),
            onPressed: () {
              _playCorrect();
            },
          ),

          // incorrect button
          MaterialButton(
            child: Text("Incorrect"),
            onPressed: () {
              _playIncorrect();
            },
          )
        ],
      ),
    );
  }
}

Получение следующей ошибки при запуске этого проекта на устройстве iOS с использованием прогона флаттера:

    Error output from Xcode build:
    ** BUILD FAILED **

Xcode's output:

    === BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug ===
    Debug.xcconfig line 1: Unable to find included file "Pods/Target Support
    Files/Pods-Runner/Pods-Runner.debug.xcconfig"
    Debug.xcconfig line 1: Unable to find included file "Pods/Target Support
    Files/Pods-Runner/Pods-Runner.debug.xcconfig"
    === BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug ===
    /Users/quiz/Documents/Project/Flutter_Project/TODO_Flutter_Projects/Quiz/multiple_choice_ios/ios/Runner/Genera
    tedPluginRegistrant.m:6:9: fatal error: 'audioplayers/AudioplayersPlugin.h' file not found
    #import <audioplayers/AudioplayersPlugin.h>

Приведенный выше код работает без использования аудиофайл.Если есть что-то, что я не могу добавить, скажите, пожалуйста, и я использую Microsoft Visual Studio Code в качестве своей IDE

1 Ответ

0 голосов
/ 02 марта 2019

У меня тоже была эта проблема, и мне просто нужно было установить CocoaPods.

brew install cocoapods
pod setup

Есть ошибка, которая указывает, что вам нужно это сделать, но она скрыта в выводе сборки.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...