Build Android (FCM) / build-android-fcm (push) Canceled after 0s
Build Android / build-android (push) Canceled after 0s
Build iOS / build-ios (push) Canceled after 0s
Build Linux / build-linux (push) Canceled after 0s
Build macOS / build-macos (push) Canceled after 0s
Build Windows / build-windows (push) Canceled after 0s
Release (main) / android (oneme) (push) Canceled after 0s
Release (main) / android (qlyra) (push) Canceled after 0s
Release (main) / windows (push) Canceled after 0s
Release (main) / linux (push) Canceled after 0s
Release (main) / macos (push) Canceled after 0s
Release (main) / ios (push) Canceled after 0s
Release (main) / release (push) Canceled after 0s
46 lines
2.0 KiB
Ruby
46 lines
2.0 KiB
Ruby
#
|
|
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
|
|
# Run `pod lib lint kolibri_dart.podspec` to validate before publishing.
|
|
#
|
|
Pod::Spec.new do |s|
|
|
s.name = 'kolibri'
|
|
s.version = '0.0.1'
|
|
s.summary = 'A new Flutter FFI plugin project.'
|
|
s.description = <<-DESC
|
|
A new Flutter FFI plugin project.
|
|
DESC
|
|
s.homepage = 'http://example.com'
|
|
s.license = { :file => '../LICENSE' }
|
|
s.author = { 'Your Company' => 'email@example.com' }
|
|
s.module_name = 'kolibri_dart'
|
|
|
|
# This will ensure the source files in Classes/ are included in the native
|
|
# builds of apps using this FFI plugin. Podspec does not support relative
|
|
# paths, so Classes contains a forwarder C file that relatively imports
|
|
# `../src/*` so that the C sources can be shared among all target platforms.
|
|
s.source = { :path => '.' }
|
|
s.source_files = 'Classes/**/*'
|
|
s.dependency 'Flutter'
|
|
s.platform = :ios, '11.0'
|
|
|
|
# Flutter.framework does not contain a i386 slice.
|
|
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
|
|
s.swift_version = '5.0'
|
|
|
|
s.script_phase = {
|
|
:name => 'Build Rust library',
|
|
# First argument is relative path to the `rust` folder, second is name of rust library
|
|
:script => 'sh "$PODS_TARGET_SRCROOT/../cargokit/build_pod.sh" ../rust kolibri_dart',
|
|
:execution_position => :before_compile,
|
|
:input_files => ['${BUILT_PRODUCTS_DIR}/cargokit_phony'],
|
|
# Let XCode know that the static library referenced in -force_load below is
|
|
# created by this build step.
|
|
:output_files => ["${PODS_CONFIGURATION_BUILD_DIR}/kolibri_dart/libkolibri_dart.a"],
|
|
}
|
|
s.pod_target_xcconfig = {
|
|
'DEFINES_MODULE' => 'YES',
|
|
# Flutter.framework does not contain a i386 slice.
|
|
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386',
|
|
'OTHER_LDFLAGS' => '-force_load ${PODS_CONFIGURATION_BUILD_DIR}/kolibri_dart/libkolibri_dart.a',
|
|
}
|
|
end |