Skip to content

Commit

Permalink
First release
Browse files Browse the repository at this point in the history
  • Loading branch information
Filipp Kosenko committed Mar 21, 2024
1 parent f8ed332 commit 2b05701
Show file tree
Hide file tree
Showing 6 changed files with 584 additions and 0 deletions.
20 changes: 20 additions & 0 deletions FlyingViewsAnimation.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Pod::Spec.new do |s|
s.name = "FlyingViewsAnimation"
s.version = "1.0.0"
s.swift_version = "5.5"
s.summary = "Customizable animated view."
s.description = "FlyingViewsAnimation is a customizable view that will allow you to decorate your iOS application with animation with a continuous stream of flying views distributed randomly throughout the background."
s.homepage = "https://github.com/idapgroup/FlyingViewsAnimation.git"
s.license = { :type => "New BSD", :file => "LICENSE" }
s.author = { "IDAP Group" => "hello@idapgroup.com" }
s.source = { :git => "https://github.com/idapgroup/FlyingViewsAnimation.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
358 changes: 358 additions & 0 deletions FlyingViewsAnimation.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,358 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 56;
objects = {

/* Begin PBXBuildFile section */
22C62A412BAB6A5000B968EA /* FlyingViewsAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 22C62A402BAB6A5000B968EA /* FlyingViewsAnimation.h */; settings = {ATTRIBUTES = (Public, ); }; };
22C62A492BAB6B2A00B968EA /* FlyingViewsAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22C62A482BAB6B2A00B968EA /* FlyingViewsAnimationView.swift */; };
22C62A4B2BAB6C0B00B968EA /* FlyingViewsAnimation.podspec in Resources */ = {isa = PBXBuildFile; fileRef = 22C62A4A2BAB6C0B00B968EA /* FlyingViewsAnimation.podspec */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
22C62A3D2BAB6A5000B968EA /* FlyingViewsAnimation.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FlyingViewsAnimation.framework; sourceTree = BUILT_PRODUCTS_DIR; };
22C62A402BAB6A5000B968EA /* FlyingViewsAnimation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FlyingViewsAnimation.h; sourceTree = "<group>"; };
22C62A482BAB6B2A00B968EA /* FlyingViewsAnimationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FlyingViewsAnimationView.swift; sourceTree = "<group>"; };
22C62A4A2BAB6C0B00B968EA /* FlyingViewsAnimation.podspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FlyingViewsAnimation.podspec; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
22C62A3A2BAB6A5000B968EA /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
22C62A332BAB6A5000B968EA = {
isa = PBXGroup;
children = (
22C62A4A2BAB6C0B00B968EA /* FlyingViewsAnimation.podspec */,
22C62A472BAB6AB500B968EA /* Source */,
22C62A3F2BAB6A5000B968EA /* FlyingViewsAnimation */,
22C62A3E2BAB6A5000B968EA /* Products */,
);
sourceTree = "<group>";
};
22C62A3E2BAB6A5000B968EA /* Products */ = {
isa = PBXGroup;
children = (
22C62A3D2BAB6A5000B968EA /* FlyingViewsAnimation.framework */,
);
name = Products;
sourceTree = "<group>";
};
22C62A3F2BAB6A5000B968EA /* FlyingViewsAnimation */ = {
isa = PBXGroup;
children = (
22C62A402BAB6A5000B968EA /* FlyingViewsAnimation.h */,
);
path = FlyingViewsAnimation;
sourceTree = "<group>";
};
22C62A472BAB6AB500B968EA /* Source */ = {
isa = PBXGroup;
children = (
22C62A482BAB6B2A00B968EA /* FlyingViewsAnimationView.swift */,
);
path = Source;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
22C62A382BAB6A5000B968EA /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
22C62A412BAB6A5000B968EA /* FlyingViewsAnimation.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
22C62A3C2BAB6A5000B968EA /* FlyingViewsAnimation */ = {
isa = PBXNativeTarget;
buildConfigurationList = 22C62A442BAB6A5000B968EA /* Build configuration list for PBXNativeTarget "FlyingViewsAnimation" */;
buildPhases = (
22C62A382BAB6A5000B968EA /* Headers */,
22C62A392BAB6A5000B968EA /* Sources */,
22C62A3A2BAB6A5000B968EA /* Frameworks */,
22C62A3B2BAB6A5000B968EA /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = FlyingViewsAnimation;
productName = FlyingViewsAnimation;
productReference = 22C62A3D2BAB6A5000B968EA /* FlyingViewsAnimation.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
22C62A342BAB6A5000B968EA /* Project object */ = {
isa = PBXProject;
attributes = {
BuildIndependentTargetsInParallel = 1;
LastUpgradeCheck = 1420;
TargetAttributes = {
22C62A3C2BAB6A5000B968EA = {
CreatedOnToolsVersion = 14.2;
LastSwiftMigration = 1420;
};
};
};
buildConfigurationList = 22C62A372BAB6A5000B968EA /* Build configuration list for PBXProject "FlyingViewsAnimation" */;
compatibilityVersion = "Xcode 14.0";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 22C62A332BAB6A5000B968EA;
productRefGroup = 22C62A3E2BAB6A5000B968EA /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
22C62A3C2BAB6A5000B968EA /* FlyingViewsAnimation */,
);
};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
22C62A3B2BAB6A5000B968EA /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
22C62A4B2BAB6C0B00B968EA /* FlyingViewsAnimation.podspec in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
22C62A392BAB6A5000B968EA /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
22C62A492BAB6B2A00B968EA /* FlyingViewsAnimationView.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */

/* Begin XCBuildConfiguration section */
22C62A422BAB6A5000B968EA /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
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;
GCC_C_LANGUAGE_STANDARD = gnu11;
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 = 16.2;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
22C62A432BAB6A5000B968EA /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
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;
GCC_C_LANGUAGE_STANDARD = gnu11;
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 = 16.2;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SDKROOT = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_OPTIMIZATION_LEVEL = "-O";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
22C62A452BAB6A5000B968EA /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
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";
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;
PRODUCT_BUNDLE_IDENTIFIER = idap.FlyingViewsAnimation;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
22C62A462BAB6A5000B968EA /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
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";
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;
PRODUCT_BUNDLE_IDENTIFIER = idap.FlyingViewsAnimation;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
22C62A372BAB6A5000B968EA /* Build configuration list for PBXProject "FlyingViewsAnimation" */ = {
isa = XCConfigurationList;
buildConfigurations = (
22C62A422BAB6A5000B968EA /* Debug */,
22C62A432BAB6A5000B968EA /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
22C62A442BAB6A5000B968EA /* Build configuration list for PBXNativeTarget "FlyingViewsAnimation" */ = {
isa = XCConfigurationList;
buildConfigurations = (
22C62A452BAB6A5000B968EA /* Debug */,
22C62A462BAB6A5000B968EA /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 22C62A342BAB6A5000B968EA /* Project object */;
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
Loading

0 comments on commit 2b05701

Please sign in to comment.