Skip to content

Commit 002463b

Browse files
authored
Merge pull request #1 from Stylitics/Hrithik/DataSDKPush
Pushed Data SDK and package
2 parents 002675c + ec425bc commit 002463b

32 files changed

+56770
-1
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>AvailableLibraries</key>
6+
<array>
7+
<dict>
8+
<key>LibraryIdentifier</key>
9+
<string>ios-arm64_x86_64-simulator</string>
10+
<key>LibraryPath</key>
11+
<string>StyliticsData.framework</string>
12+
<key>SupportedArchitectures</key>
13+
<array>
14+
<string>arm64</string>
15+
<string>x86_64</string>
16+
</array>
17+
<key>SupportedPlatform</key>
18+
<string>ios</string>
19+
<key>SupportedPlatformVariant</key>
20+
<string>simulator</string>
21+
</dict>
22+
<dict>
23+
<key>LibraryIdentifier</key>
24+
<string>ios-arm64</string>
25+
<key>LibraryPath</key>
26+
<string>StyliticsData.framework</string>
27+
<key>SupportedArchitectures</key>
28+
<array>
29+
<string>arm64</string>
30+
</array>
31+
<key>SupportedPlatform</key>
32+
<string>ios</string>
33+
</dict>
34+
</array>
35+
<key>CFBundlePackageType</key>
36+
<string>XFWK</string>
37+
<key>XCFrameworkFormatVersion</key>
38+
<string>1.0</string>
39+
</dict>
40+
</plist>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
disabled_rules:
2+
- line_length
3+
- function_body_length
4+
identifier_name:
5+
allowed_symbols: "_"
Lines changed: 298 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,298 @@
1+
#if 0
2+
#elif defined(__arm64__) && __arm64__
3+
// Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100)
4+
#ifndef STYLITICSDATA_SWIFT_H
5+
#define STYLITICSDATA_SWIFT_H
6+
#pragma clang diagnostic push
7+
#pragma clang diagnostic ignored "-Wgcc-compat"
8+
9+
#if !defined(__has_include)
10+
# define __has_include(x) 0
11+
#endif
12+
#if !defined(__has_attribute)
13+
# define __has_attribute(x) 0
14+
#endif
15+
#if !defined(__has_feature)
16+
# define __has_feature(x) 0
17+
#endif
18+
#if !defined(__has_warning)
19+
# define __has_warning(x) 0
20+
#endif
21+
22+
#if __has_include(<swift/objc-prologue.h>)
23+
# include <swift/objc-prologue.h>
24+
#endif
25+
26+
#pragma clang diagnostic ignored "-Wauto-import"
27+
#if defined(__OBJC__)
28+
#include <Foundation/Foundation.h>
29+
#endif
30+
#if defined(__cplusplus)
31+
#include <cstdint>
32+
#include <cstddef>
33+
#include <cstdbool>
34+
#include <cstring>
35+
#include <stdlib.h>
36+
#include <new>
37+
#include <type_traits>
38+
#else
39+
#include <stdint.h>
40+
#include <stddef.h>
41+
#include <stdbool.h>
42+
#include <string.h>
43+
#endif
44+
#if defined(__cplusplus)
45+
#if __has_include(<ptrauth.h>)
46+
# include <ptrauth.h>
47+
#else
48+
# ifndef __ptrauth_swift_value_witness_function_pointer
49+
# define __ptrauth_swift_value_witness_function_pointer(x)
50+
# endif
51+
#endif
52+
#endif
53+
54+
#if !defined(SWIFT_TYPEDEFS)
55+
# define SWIFT_TYPEDEFS 1
56+
# if __has_include(<uchar.h>)
57+
# include <uchar.h>
58+
# elif !defined(__cplusplus)
59+
typedef uint_least16_t char16_t;
60+
typedef uint_least32_t char32_t;
61+
# endif
62+
typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
63+
typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
64+
typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
65+
typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
66+
typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
67+
typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
68+
typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
69+
typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
70+
typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
71+
typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
72+
typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
73+
typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
74+
#endif
75+
76+
#if !defined(SWIFT_PASTE)
77+
# define SWIFT_PASTE_HELPER(x, y) x##y
78+
# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
79+
#endif
80+
#if !defined(SWIFT_METATYPE)
81+
# define SWIFT_METATYPE(X) Class
82+
#endif
83+
#if !defined(SWIFT_CLASS_PROPERTY)
84+
# if __has_feature(objc_class_property)
85+
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
86+
# else
87+
# define SWIFT_CLASS_PROPERTY(...)
88+
# endif
89+
#endif
90+
#if !defined(SWIFT_RUNTIME_NAME)
91+
# if __has_attribute(objc_runtime_name)
92+
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
93+
# else
94+
# define SWIFT_RUNTIME_NAME(X)
95+
# endif
96+
#endif
97+
#if !defined(SWIFT_COMPILE_NAME)
98+
# if __has_attribute(swift_name)
99+
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
100+
# else
101+
# define SWIFT_COMPILE_NAME(X)
102+
# endif
103+
#endif
104+
#if !defined(SWIFT_METHOD_FAMILY)
105+
# if __has_attribute(objc_method_family)
106+
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
107+
# else
108+
# define SWIFT_METHOD_FAMILY(X)
109+
# endif
110+
#endif
111+
#if !defined(SWIFT_NOESCAPE)
112+
# if __has_attribute(noescape)
113+
# define SWIFT_NOESCAPE __attribute__((noescape))
114+
# else
115+
# define SWIFT_NOESCAPE
116+
# endif
117+
#endif
118+
#if !defined(SWIFT_RELEASES_ARGUMENT)
119+
# if __has_attribute(ns_consumed)
120+
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
121+
# else
122+
# define SWIFT_RELEASES_ARGUMENT
123+
# endif
124+
#endif
125+
#if !defined(SWIFT_WARN_UNUSED_RESULT)
126+
# if __has_attribute(warn_unused_result)
127+
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
128+
# else
129+
# define SWIFT_WARN_UNUSED_RESULT
130+
# endif
131+
#endif
132+
#if !defined(SWIFT_NORETURN)
133+
# if __has_attribute(noreturn)
134+
# define SWIFT_NORETURN __attribute__((noreturn))
135+
# else
136+
# define SWIFT_NORETURN
137+
# endif
138+
#endif
139+
#if !defined(SWIFT_CLASS_EXTRA)
140+
# define SWIFT_CLASS_EXTRA
141+
#endif
142+
#if !defined(SWIFT_PROTOCOL_EXTRA)
143+
# define SWIFT_PROTOCOL_EXTRA
144+
#endif
145+
#if !defined(SWIFT_ENUM_EXTRA)
146+
# define SWIFT_ENUM_EXTRA
147+
#endif
148+
#if !defined(SWIFT_CLASS)
149+
# if __has_attribute(objc_subclassing_restricted)
150+
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
151+
# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
152+
# else
153+
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
154+
# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
155+
# endif
156+
#endif
157+
#if !defined(SWIFT_RESILIENT_CLASS)
158+
# if __has_attribute(objc_class_stub)
159+
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
160+
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
161+
# else
162+
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
163+
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
164+
# endif
165+
#endif
166+
#if !defined(SWIFT_PROTOCOL)
167+
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
168+
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
169+
#endif
170+
#if !defined(SWIFT_EXTENSION)
171+
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
172+
#endif
173+
#if !defined(OBJC_DESIGNATED_INITIALIZER)
174+
# if __has_attribute(objc_designated_initializer)
175+
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
176+
# else
177+
# define OBJC_DESIGNATED_INITIALIZER
178+
# endif
179+
#endif
180+
#if !defined(SWIFT_ENUM_ATTR)
181+
# if __has_attribute(enum_extensibility)
182+
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
183+
# else
184+
# define SWIFT_ENUM_ATTR(_extensibility)
185+
# endif
186+
#endif
187+
#if !defined(SWIFT_ENUM)
188+
# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
189+
# if __has_feature(generalized_swift_name)
190+
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
191+
# else
192+
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
193+
# endif
194+
#endif
195+
#if !defined(SWIFT_UNAVAILABLE)
196+
# define SWIFT_UNAVAILABLE __attribute__((unavailable))
197+
#endif
198+
#if !defined(SWIFT_UNAVAILABLE_MSG)
199+
# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
200+
#endif
201+
#if !defined(SWIFT_AVAILABILITY)
202+
# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
203+
#endif
204+
#if !defined(SWIFT_WEAK_IMPORT)
205+
# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
206+
#endif
207+
#if !defined(SWIFT_DEPRECATED)
208+
# define SWIFT_DEPRECATED __attribute__((deprecated))
209+
#endif
210+
#if !defined(SWIFT_DEPRECATED_MSG)
211+
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
212+
#endif
213+
#if !defined(SWIFT_DEPRECATED_OBJC)
214+
# if __has_feature(attribute_diagnose_if_objc)
215+
# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
216+
# else
217+
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
218+
# endif
219+
#endif
220+
#if defined(__OBJC__)
221+
#if !defined(IBSegueAction)
222+
# define IBSegueAction
223+
#endif
224+
#endif
225+
#if !defined(SWIFT_EXTERN)
226+
# if defined(__cplusplus)
227+
# define SWIFT_EXTERN extern "C"
228+
# else
229+
# define SWIFT_EXTERN extern
230+
# endif
231+
#endif
232+
#if !defined(SWIFT_CALL)
233+
# define SWIFT_CALL __attribute__((swiftcall))
234+
#endif
235+
#if !defined(SWIFT_INDIRECT_RESULT)
236+
# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result))
237+
#endif
238+
#if !defined(SWIFT_CONTEXT)
239+
# define SWIFT_CONTEXT __attribute__((swift_context))
240+
#endif
241+
#if !defined(SWIFT_ERROR_RESULT)
242+
# define SWIFT_ERROR_RESULT __attribute__((swift_error_result))
243+
#endif
244+
#if defined(__cplusplus)
245+
# define SWIFT_NOEXCEPT noexcept
246+
#else
247+
# define SWIFT_NOEXCEPT
248+
#endif
249+
#if defined(_WIN32)
250+
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
251+
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
252+
#endif
253+
#else
254+
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
255+
# define SWIFT_IMPORT_STDLIB_SYMBOL
256+
#endif
257+
#endif
258+
#if defined(__OBJC__)
259+
#if __has_feature(objc_modules)
260+
#if __has_warning("-Watimport-in-framework-header")
261+
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
262+
#endif
263+
#endif
264+
265+
#endif
266+
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
267+
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
268+
#if __has_warning("-Wpragma-clang-attribute")
269+
# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
270+
#endif
271+
#pragma clang diagnostic ignored "-Wunknown-pragmas"
272+
#pragma clang diagnostic ignored "-Wnullability"
273+
#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
274+
275+
#if __has_attribute(external_source_symbol)
276+
# pragma push_macro("any")
277+
# undef any
278+
# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="StyliticsData",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
279+
# pragma pop_macro("any")
280+
#endif
281+
282+
#if defined(__OBJC__)
283+
284+
285+
286+
287+
#endif
288+
#if defined(__cplusplus)
289+
#endif
290+
#if __has_attribute(external_source_symbol)
291+
# pragma clang attribute pop
292+
#endif
293+
#pragma clang diagnostic pop
294+
#endif
295+
296+
#else
297+
#error unsupported Swift architecture
298+
#endif
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
//
2+
// StyliticsData.h
3+
// StyliticsData
4+
//
5+
// Created by Hrithik Kesharwani on 13/04/22.
6+
//
7+
8+
#import <Foundation/Foundation.h>
9+
10+
//! Project version number for StyliticsData.
11+
FOUNDATION_EXPORT double StyliticsDataVersionNumber;
12+
13+
//! Project version string for StyliticsData.
14+
FOUNDATION_EXPORT const unsigned char StyliticsDataVersionString[];
15+
16+
// In this header, you should import all the public headers of your framework using statements like #import <StyliticsData/PublicHeader.h>
17+
18+
Binary file not shown.

0 commit comments

Comments
 (0)