-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Filipp Kosenko
committed
Sep 3, 2024
1 parent
2fa212c
commit 52ffdd5
Showing
6 changed files
with
618 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "SimpleDropdown" | ||
s.version = "1.0.0" | ||
s.swift_version = "5.5" | ||
s.summary = "Simple dropdown view" | ||
s.description = "А simple dropdown that can be easily integrated into your app layout and customize to suit your design." | ||
s.homepage = "https://github.com/idapgroup/SimpleDropdown" | ||
s.license = { :type => "New BSD", :file => "LICENSE" } | ||
s.author = { "IDAP Group" => "[email protected]" } | ||
s.source = { :git => "https://github.com/idapgroup/SimpleDropdown.git", | ||
:tag => s.version.to_s } | ||
|
||
# Platform setup | ||
s.requires_arc = true | ||
s.ios.deployment_target = '15.0' | ||
|
||
# Preserve the layout of headers in the Module directory | ||
s.header_mappings_dir = 'Source' | ||
s.source_files = 'Source/**/*.{swift,h,m,c,cpp}' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,373 @@ | ||
// !$*UTF8*$! | ||
{ | ||
archiveVersion = 1; | ||
classes = { | ||
}; | ||
objectVersion = 56; | ||
objects = { | ||
|
||
/* Begin PBXBuildFile section */ | ||
22D8824F2C874C1F002C6127 /* SimpleDropdown.h in Headers */ = {isa = PBXBuildFile; fileRef = 22D8824E2C874C1F002C6127 /* SimpleDropdown.h */; settings = {ATTRIBUTES = (Public, ); }; }; | ||
22D882592C874D54002C6127 /* SimpleDropdown.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22D882582C874D54002C6127 /* SimpleDropdown.swift */; }; | ||
22D8825B2C874E21002C6127 /* SimpleDropdown.podspec in Resources */ = {isa = PBXBuildFile; fileRef = 22D8825A2C874E21002C6127 /* SimpleDropdown.podspec */; }; | ||
/* End PBXBuildFile section */ | ||
|
||
/* Begin PBXFileReference section */ | ||
22D8824B2C874C1F002C6127 /* SimpleDropdown.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SimpleDropdown.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | ||
22D8824E2C874C1F002C6127 /* SimpleDropdown.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimpleDropdown.h; sourceTree = "<group>"; }; | ||
22D882582C874D54002C6127 /* SimpleDropdown.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SimpleDropdown.swift; sourceTree = "<group>"; }; | ||
22D8825A2C874E21002C6127 /* SimpleDropdown.podspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SimpleDropdown.podspec; sourceTree = "<group>"; }; | ||
/* End PBXFileReference section */ | ||
|
||
/* Begin PBXFrameworksBuildPhase section */ | ||
22D882482C874C1F002C6127 /* Frameworks */ = { | ||
isa = PBXFrameworksBuildPhase; | ||
buildActionMask = 2147483647; | ||
files = ( | ||
); | ||
runOnlyForDeploymentPostprocessing = 0; | ||
}; | ||
/* End PBXFrameworksBuildPhase section */ | ||
|
||
/* Begin PBXGroup section */ | ||
22D882412C874C1F002C6127 = { | ||
isa = PBXGroup; | ||
children = ( | ||
22D882552C874C8D002C6127 /* Source */, | ||
22D8825A2C874E21002C6127 /* SimpleDropdown.podspec */, | ||
22D8824D2C874C1F002C6127 /* SimpleDropdown */, | ||
22D8824C2C874C1F002C6127 /* Products */, | ||
); | ||
sourceTree = "<group>"; | ||
}; | ||
22D8824C2C874C1F002C6127 /* Products */ = { | ||
isa = PBXGroup; | ||
children = ( | ||
22D8824B2C874C1F002C6127 /* SimpleDropdown.framework */, | ||
); | ||
name = Products; | ||
sourceTree = "<group>"; | ||
}; | ||
22D8824D2C874C1F002C6127 /* SimpleDropdown */ = { | ||
isa = PBXGroup; | ||
children = ( | ||
22D8824E2C874C1F002C6127 /* SimpleDropdown.h */, | ||
); | ||
path = SimpleDropdown; | ||
sourceTree = "<group>"; | ||
}; | ||
22D882552C874C8D002C6127 /* Source */ = { | ||
isa = PBXGroup; | ||
children = ( | ||
22D882582C874D54002C6127 /* SimpleDropdown.swift */, | ||
); | ||
path = Source; | ||
sourceTree = "<group>"; | ||
}; | ||
/* End PBXGroup section */ | ||
|
||
/* Begin PBXHeadersBuildPhase section */ | ||
22D882462C874C1F002C6127 /* Headers */ = { | ||
isa = PBXHeadersBuildPhase; | ||
buildActionMask = 2147483647; | ||
files = ( | ||
22D8824F2C874C1F002C6127 /* SimpleDropdown.h in Headers */, | ||
); | ||
runOnlyForDeploymentPostprocessing = 0; | ||
}; | ||
/* End PBXHeadersBuildPhase section */ | ||
|
||
/* Begin PBXNativeTarget section */ | ||
22D8824A2C874C1F002C6127 /* SimpleDropdown */ = { | ||
isa = PBXNativeTarget; | ||
buildConfigurationList = 22D882522C874C1F002C6127 /* Build configuration list for PBXNativeTarget "SimpleDropdown" */; | ||
buildPhases = ( | ||
22D882462C874C1F002C6127 /* Headers */, | ||
22D882472C874C1F002C6127 /* Sources */, | ||
22D882482C874C1F002C6127 /* Frameworks */, | ||
22D882492C874C1F002C6127 /* Resources */, | ||
); | ||
buildRules = ( | ||
); | ||
dependencies = ( | ||
); | ||
name = SimpleDropdown; | ||
productName = SimpleDropdown; | ||
productReference = 22D8824B2C874C1F002C6127 /* SimpleDropdown.framework */; | ||
productType = "com.apple.product-type.framework"; | ||
}; | ||
/* End PBXNativeTarget section */ | ||
|
||
/* Begin PBXProject section */ | ||
22D882422C874C1F002C6127 /* Project object */ = { | ||
isa = PBXProject; | ||
attributes = { | ||
BuildIndependentTargetsInParallel = 1; | ||
LastUpgradeCheck = 1540; | ||
TargetAttributes = { | ||
22D8824A2C874C1F002C6127 = { | ||
CreatedOnToolsVersion = 15.4; | ||
LastSwiftMigration = 1540; | ||
}; | ||
}; | ||
}; | ||
buildConfigurationList = 22D882452C874C1F002C6127 /* Build configuration list for PBXProject "SimpleDropdown" */; | ||
compatibilityVersion = "Xcode 14.0"; | ||
developmentRegion = en; | ||
hasScannedForEncodings = 0; | ||
knownRegions = ( | ||
en, | ||
Base, | ||
); | ||
mainGroup = 22D882412C874C1F002C6127; | ||
productRefGroup = 22D8824C2C874C1F002C6127 /* Products */; | ||
projectDirPath = ""; | ||
projectRoot = ""; | ||
targets = ( | ||
22D8824A2C874C1F002C6127 /* SimpleDropdown */, | ||
); | ||
}; | ||
/* End PBXProject section */ | ||
|
||
/* Begin PBXResourcesBuildPhase section */ | ||
22D882492C874C1F002C6127 /* Resources */ = { | ||
isa = PBXResourcesBuildPhase; | ||
buildActionMask = 2147483647; | ||
files = ( | ||
22D8825B2C874E21002C6127 /* SimpleDropdown.podspec in Resources */, | ||
); | ||
runOnlyForDeploymentPostprocessing = 0; | ||
}; | ||
/* End PBXResourcesBuildPhase section */ | ||
|
||
/* Begin PBXSourcesBuildPhase section */ | ||
22D882472C874C1F002C6127 /* Sources */ = { | ||
isa = PBXSourcesBuildPhase; | ||
buildActionMask = 2147483647; | ||
files = ( | ||
22D882592C874D54002C6127 /* SimpleDropdown.swift in Sources */, | ||
); | ||
runOnlyForDeploymentPostprocessing = 0; | ||
}; | ||
/* End PBXSourcesBuildPhase section */ | ||
|
||
/* Begin XCBuildConfiguration section */ | ||
22D882502C874C1F002C6127 /* Debug */ = { | ||
isa = XCBuildConfiguration; | ||
buildSettings = { | ||
ALWAYS_SEARCH_USER_PATHS = NO; | ||
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; | ||
CLANG_ANALYZER_NONNULL = YES; | ||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; | ||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; | ||
CLANG_ENABLE_MODULES = YES; | ||
CLANG_ENABLE_OBJC_ARC = YES; | ||
CLANG_ENABLE_OBJC_WEAK = YES; | ||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; | ||
CLANG_WARN_BOOL_CONVERSION = YES; | ||
CLANG_WARN_COMMA = YES; | ||
CLANG_WARN_CONSTANT_CONVERSION = YES; | ||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | ||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | ||
CLANG_WARN_DOCUMENTATION_COMMENTS = YES; | ||
CLANG_WARN_EMPTY_BODY = YES; | ||
CLANG_WARN_ENUM_CONVERSION = YES; | ||
CLANG_WARN_INFINITE_RECURSION = YES; | ||
CLANG_WARN_INT_CONVERSION = YES; | ||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; | ||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | ||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | ||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | ||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; | ||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | ||
CLANG_WARN_STRICT_PROTOTYPES = YES; | ||
CLANG_WARN_SUSPICIOUS_MOVE = YES; | ||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; | ||
CLANG_WARN_UNREACHABLE_CODE = YES; | ||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | ||
COPY_PHASE_STRIP = NO; | ||
CURRENT_PROJECT_VERSION = 1; | ||
DEBUG_INFORMATION_FORMAT = dwarf; | ||
ENABLE_STRICT_OBJC_MSGSEND = YES; | ||
ENABLE_TESTABILITY = YES; | ||
ENABLE_USER_SCRIPT_SANDBOXING = YES; | ||
GCC_C_LANGUAGE_STANDARD = gnu17; | ||
GCC_DYNAMIC_NO_PIC = NO; | ||
GCC_NO_COMMON_BLOCKS = YES; | ||
GCC_OPTIMIZATION_LEVEL = 0; | ||
GCC_PREPROCESSOR_DEFINITIONS = ( | ||
"DEBUG=1", | ||
"$(inherited)", | ||
); | ||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES; | ||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; | ||
GCC_WARN_UNDECLARED_SELECTOR = YES; | ||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | ||
GCC_WARN_UNUSED_FUNCTION = YES; | ||
GCC_WARN_UNUSED_VARIABLE = YES; | ||
IPHONEOS_DEPLOYMENT_TARGET = 17.5; | ||
LOCALIZATION_PREFERS_STRING_CATALOGS = YES; | ||
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; | ||
MTL_FAST_MATH = YES; | ||
ONLY_ACTIVE_ARCH = YES; | ||
SDKROOT = iphoneos; | ||
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; | ||
SWIFT_OPTIMIZATION_LEVEL = "-Onone"; | ||
VERSIONING_SYSTEM = "apple-generic"; | ||
VERSION_INFO_PREFIX = ""; | ||
}; | ||
name = Debug; | ||
}; | ||
22D882512C874C1F002C6127 /* Release */ = { | ||
isa = XCBuildConfiguration; | ||
buildSettings = { | ||
ALWAYS_SEARCH_USER_PATHS = NO; | ||
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; | ||
CLANG_ANALYZER_NONNULL = YES; | ||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; | ||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; | ||
CLANG_ENABLE_MODULES = YES; | ||
CLANG_ENABLE_OBJC_ARC = YES; | ||
CLANG_ENABLE_OBJC_WEAK = YES; | ||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; | ||
CLANG_WARN_BOOL_CONVERSION = YES; | ||
CLANG_WARN_COMMA = YES; | ||
CLANG_WARN_CONSTANT_CONVERSION = YES; | ||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | ||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | ||
CLANG_WARN_DOCUMENTATION_COMMENTS = YES; | ||
CLANG_WARN_EMPTY_BODY = YES; | ||
CLANG_WARN_ENUM_CONVERSION = YES; | ||
CLANG_WARN_INFINITE_RECURSION = YES; | ||
CLANG_WARN_INT_CONVERSION = YES; | ||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; | ||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | ||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | ||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | ||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; | ||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | ||
CLANG_WARN_STRICT_PROTOTYPES = YES; | ||
CLANG_WARN_SUSPICIOUS_MOVE = YES; | ||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; | ||
CLANG_WARN_UNREACHABLE_CODE = YES; | ||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | ||
COPY_PHASE_STRIP = NO; | ||
CURRENT_PROJECT_VERSION = 1; | ||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; | ||
ENABLE_NS_ASSERTIONS = NO; | ||
ENABLE_STRICT_OBJC_MSGSEND = YES; | ||
ENABLE_USER_SCRIPT_SANDBOXING = YES; | ||
GCC_C_LANGUAGE_STANDARD = gnu17; | ||
GCC_NO_COMMON_BLOCKS = YES; | ||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES; | ||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; | ||
GCC_WARN_UNDECLARED_SELECTOR = YES; | ||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | ||
GCC_WARN_UNUSED_FUNCTION = YES; | ||
GCC_WARN_UNUSED_VARIABLE = YES; | ||
IPHONEOS_DEPLOYMENT_TARGET = 17.5; | ||
LOCALIZATION_PREFERS_STRING_CATALOGS = YES; | ||
MTL_ENABLE_DEBUG_INFO = NO; | ||
MTL_FAST_MATH = YES; | ||
SDKROOT = iphoneos; | ||
SWIFT_COMPILATION_MODE = wholemodule; | ||
VALIDATE_PRODUCT = YES; | ||
VERSIONING_SYSTEM = "apple-generic"; | ||
VERSION_INFO_PREFIX = ""; | ||
}; | ||
name = Release; | ||
}; | ||
22D882532C874C1F002C6127 /* Debug */ = { | ||
isa = XCBuildConfiguration; | ||
buildSettings = { | ||
BUILD_LIBRARY_FOR_DISTRIBUTION = YES; | ||
CLANG_ENABLE_MODULES = YES; | ||
CODE_SIGN_STYLE = Automatic; | ||
CURRENT_PROJECT_VERSION = 1; | ||
DEFINES_MODULE = YES; | ||
DYLIB_COMPATIBILITY_VERSION = 1; | ||
DYLIB_CURRENT_VERSION = 1; | ||
DYLIB_INSTALL_NAME_BASE = "@rpath"; | ||
ENABLE_MODULE_VERIFIER = YES; | ||
GENERATE_INFOPLIST_FILE = YES; | ||
INFOPLIST_KEY_NSHumanReadableCopyright = ""; | ||
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | ||
IPHONEOS_DEPLOYMENT_TARGET = 15.0; | ||
LD_RUNPATH_SEARCH_PATHS = ( | ||
"$(inherited)", | ||
"@executable_path/Frameworks", | ||
"@loader_path/Frameworks", | ||
); | ||
MARKETING_VERSION = 1.0; | ||
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; | ||
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20"; | ||
PRODUCT_BUNDLE_IDENTIFIER = idap.SimpleDropdown; | ||
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; | ||
SKIP_INSTALL = YES; | ||
SWIFT_EMIT_LOC_STRINGS = YES; | ||
SWIFT_INSTALL_OBJC_HEADER = NO; | ||
SWIFT_OPTIMIZATION_LEVEL = "-Onone"; | ||
SWIFT_VERSION = 5.0; | ||
TARGETED_DEVICE_FAMILY = "1,2"; | ||
}; | ||
name = Debug; | ||
}; | ||
22D882542C874C1F002C6127 /* Release */ = { | ||
isa = XCBuildConfiguration; | ||
buildSettings = { | ||
BUILD_LIBRARY_FOR_DISTRIBUTION = YES; | ||
CLANG_ENABLE_MODULES = YES; | ||
CODE_SIGN_STYLE = Automatic; | ||
CURRENT_PROJECT_VERSION = 1; | ||
DEFINES_MODULE = YES; | ||
DYLIB_COMPATIBILITY_VERSION = 1; | ||
DYLIB_CURRENT_VERSION = 1; | ||
DYLIB_INSTALL_NAME_BASE = "@rpath"; | ||
ENABLE_MODULE_VERIFIER = YES; | ||
GENERATE_INFOPLIST_FILE = YES; | ||
INFOPLIST_KEY_NSHumanReadableCopyright = ""; | ||
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | ||
IPHONEOS_DEPLOYMENT_TARGET = 15.0; | ||
LD_RUNPATH_SEARCH_PATHS = ( | ||
"$(inherited)", | ||
"@executable_path/Frameworks", | ||
"@loader_path/Frameworks", | ||
); | ||
MARKETING_VERSION = 1.0; | ||
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; | ||
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++20"; | ||
PRODUCT_BUNDLE_IDENTIFIER = idap.SimpleDropdown; | ||
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; | ||
SKIP_INSTALL = YES; | ||
SWIFT_EMIT_LOC_STRINGS = YES; | ||
SWIFT_INSTALL_OBJC_HEADER = NO; | ||
SWIFT_VERSION = 5.0; | ||
TARGETED_DEVICE_FAMILY = "1,2"; | ||
}; | ||
name = Release; | ||
}; | ||
/* End XCBuildConfiguration section */ | ||
|
||
/* Begin XCConfigurationList section */ | ||
22D882452C874C1F002C6127 /* Build configuration list for PBXProject "SimpleDropdown" */ = { | ||
isa = XCConfigurationList; | ||
buildConfigurations = ( | ||
22D882502C874C1F002C6127 /* Debug */, | ||
22D882512C874C1F002C6127 /* Release */, | ||
); | ||
defaultConfigurationIsVisible = 0; | ||
defaultConfigurationName = Release; | ||
}; | ||
22D882522C874C1F002C6127 /* Build configuration list for PBXNativeTarget "SimpleDropdown" */ = { | ||
isa = XCConfigurationList; | ||
buildConfigurations = ( | ||
22D882532C874C1F002C6127 /* Debug */, | ||
22D882542C874C1F002C6127 /* Release */, | ||
); | ||
defaultConfigurationIsVisible = 0; | ||
defaultConfigurationName = Release; | ||
}; | ||
/* End XCConfigurationList section */ | ||
}; | ||
rootObject = 22D882422C874C1F002C6127 /* Project object */; | ||
} |
Oops, something went wrong.