Commit 6612bbc8 authored by 林生雨's avatar 林生雨

commit

parent 774942a5
......@@ -32,12 +32,9 @@ TODO: Add long description of the pod here.
s.source_files = 'flutter-lib/Classes/**/*'
s.ios.vendored_frameworks = 'ios_frameworks/App.framework','ios_frameworks/Flutter.framework'
,'ios_frameworks/flutter_boost.framework','ios_frameworks/FlutterPluginRegistrant.framework'
,'ios_frameworks/fluttertoast.framework','ios_frameworks/FMDB.framework'
,'ios_frameworks/path_provider.framework','ios_frameworks/sqflite.framework'
s.ios.vendored_frameworks = 'ios_frameworks/App.framework','ios_frameworks/Flutter.framework','ios_frameworks/flutter_boost.framework','ios_frameworks/FlutterPluginRegistrant.framework','ios_frameworks/fluttertoast.framework','ios_frameworks/FMDB.framework','ios_frameworks/path_provider.framework','ios_frameworks/sqflite.framework','ios_frameworks/url_launcher.framework'
# ,
# 'ios_frameworks/url_launcher.framework'
#
# s.resource_bundles = {
# 'flutter-lib' => ['flutter-lib/Assets/*.png']
......
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import <Flutter/Flutter.h>
@interface FLTURLLauncherPlugin : NSObject <FlutterPlugin>
@end
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#else
#ifndef FOUNDATION_EXPORT
#if defined(__cplusplus)
#define FOUNDATION_EXPORT extern "C"
#else
#define FOUNDATION_EXPORT extern
#endif
#endif
#endif
#import "FLTURLLauncherPlugin.h"
FOUNDATION_EXPORT double url_launcherVersionNumber;
FOUNDATION_EXPORT const unsigned char url_launcherVersionString[];
framework module url_launcher {
umbrella header "url_launcher-umbrella.h"
export *
module * { export * }
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment