Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 9 additions & 11 deletions ios/native_glass_navbar.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,24 @@
#
Pod::Spec.new do |s|
s.name = 'native_glass_navbar'
s.version = '0.0.1'
s.summary = 'A new Flutter plugin project.'
s.version = '1.0.2'
s.summary = 'A Flutter plugin that brings the native iOS Liquid Glass style navigation bar to your Flutter apps.'
s.description = <<-DESC
A new Flutter plugin project.
A Flutter plugin that brings the native iOS Liquid Glass style navigation bar to your Flutter apps.
DESC
s.homepage = 'http://example.com'
s.homepage = 'https://github.com/TechSupportz/native_glass_navbar'
s.license = { :file => '../LICENSE' }
s.author = { 'Your Company' => 'email@example.com' }
s.author = { 'TechSupportz' => 'https://github.com/TechSupportz' }
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.source_files = 'native_glass_navbar/Sources/native_glass_navbar/**/*.swift'
s.dependency 'Flutter'
s.platform = :ios, '13.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'

# If your plugin requires a privacy manifest, for example if it uses any
# required reason APIs, update the PrivacyInfo.xcprivacy file to describe your
# plugin's privacy impact, and then uncomment this line. For more information,
# see https://developer.apple.com/documentation/bundleresources/privacy_manifest_files
# s.resource_bundles = {'native_glass_navbar_privacy' => ['Resources/PrivacyInfo.xcprivacy']}
# Privacy manifest, shared with the Swift Package Manager target.
# See https://developer.apple.com/documentation/bundleresources/privacy_manifest_files
s.resource_bundles = {'native_glass_navbar_privacy' => ['native_glass_navbar/Sources/native_glass_navbar/PrivacyInfo.xcprivacy']}
end
24 changes: 24 additions & 0 deletions ios/native_glass_navbar/Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "native_glass_navbar",
platforms: [
.iOS("13.0")
],
products: [
.library(name: "native-glass-navbar", targets: ["native_glass_navbar"])
],
dependencies: [],
targets: [
.target(
name: "native_glass_navbar",
dependencies: [],
resources: [
.process("PrivacyInfo.xcprivacy")
]
)
]
)