From b296cbf61523787a37cef097c8ac3524a3bb45fa Mon Sep 17 00:00:00 2001 From: Chinmay Garde Date: Mon, 24 Aug 2015 12:36:15 -0700 Subject: [PATCH] Add media service implementation for iOS --- engine/src/flutter/build/config/ios/rules.gni | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/engine/src/flutter/build/config/ios/rules.gni b/engine/src/flutter/build/config/ios/rules.gni index 8902da070f..92e4b0b96a 100644 --- a/engine/src/flutter/build/config/ios/rules.gni +++ b/engine/src/flutter/build/config/ios/rules.gni @@ -145,7 +145,12 @@ template("ios_app") { bin_gen_target_name = target_name + "_bin" executable(bin_gen_target_name) { - libs = [ "UIKit.framework", "QuartzCore.framework", "OpenGLES.framework" ] + libs = [ + "UIKit.framework", + "AVFoundation.framework", + "QuartzCore.framework", + "OpenGLES.framework" + ] deps = invoker.deps output_name = app_name }