Showing
46 changed files
with
951 additions
and
0 deletions
.DS_Store
0 → 100644
No preview for this file type
SwiftWarplyFramework.framework/.DS_Store
0 → 100644
No preview for this file type
SwiftWarplyFramework.framework/Assets.car
0 → 100644
No preview for this file type
1 | +// | ||
2 | +// MyApi.h | ||
3 | +// warplyFramework | ||
4 | +// | ||
5 | +// Created by Βασιλης Σκουρας on 8/12/21. | ||
6 | +// | ||
7 | + | ||
8 | +#ifndef MyApi_h | ||
9 | +#define MyApi_h | ||
10 | +#import <UIKit/UIKit.h> | ||
11 | +#import <CoreMotion/CoreMotion.h> | ||
12 | +@class Warply; | ||
13 | + | ||
14 | +@interface MyApi : NSObject | ||
15 | + | ||
16 | +@property (nonatomic, weak) Warply *warply; | ||
17 | + | ||
18 | +- (void) initialize:(NSDictionary *)launchOptions uuid:(NSString*)uuid merchantId:(NSString*)merchantId lang:(NSString*)lang; | ||
19 | +- (void) setToStage; | ||
20 | +- (void) setLang:(NSString*) lang; | ||
21 | +- (void) getSteps:(void(^)(CMPedometerData* stepsData)) completion; | ||
22 | +// - (UIViewController *) openCoupons:(UIView*) parentView; | ||
23 | +//- (UIViewController *) openCoupon:(UIView*) parentView coupon:(NSDictionary*) coupon; | ||
24 | +//- (UIViewController *) openCouponBarcode:(UIView*) parentView coupon:(NSDictionary*) coupon; | ||
25 | +//- (UIViewController *) openGifts:(UIView*) parentView; | ||
26 | +//- (UIViewController *) openAllGifts:(UIView*) parentView; | ||
27 | +//- (UIViewController *) openOldCoupons:(UIView*) parentView; | ||
28 | +//- (UIViewController *) openWallet:(UIView*) parentView; | ||
29 | +//- (UIViewController *) openMoreForYou:(UIView*) parentView; | ||
30 | +//- (UIViewController *) openCampaign:(UIView*) parentView campaign:(NSString*) campaign; | ||
31 | +//- (UIViewController *) openSteps:(UIView*) parentView; | ||
32 | +//- (UIViewController *) openDetails:(UIView*) parentView; | ||
33 | +- (NSDictionary *) provideInfoForCampaign; | ||
34 | +- (void) applicationDidEnterBackground:(UIApplication *)application; | ||
35 | +- (void) applicationWillEnterForeground:(UIApplication *)application; | ||
36 | +- (void) applicationDidBecomeActive:(UIApplication *)application; | ||
37 | +- (void) applicationWillTerminate:(UIApplication *)application; | ||
38 | +- (void) application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken; | ||
39 | +- (void) application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error; | ||
40 | +- (void) application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo; | ||
41 | +- (NSMutableArray *)getInbox; | ||
42 | +- (NSMutableArray *)getProducts:(NSString *) filter; | ||
43 | +- (NSMutableArray*)sendContact:(NSString*)name email:(NSString*)email msisdn:(NSString*)msisdn message:(NSString*)message; | ||
44 | +- (NSMutableArray *)getContentWithCategory:(NSString *)category tags:(NSArray *)tags; | ||
45 | +- (NSMutableArray *)getMerchantCategories; | ||
46 | +- (NSMutableArray *)getMerchants; | ||
47 | +- (NSMutableArray *)getTagsCategories; | ||
48 | +- (NSMutableArray *)getTags; | ||
49 | +- (NSDictionary *)login:(NSString *)id password:(NSString *)password loginType:(NSString*) loginType; | ||
50 | +- (NSDictionary *)logout; | ||
51 | +- (NSDictionary *)register:(NSString *)id password:(NSString *)password name:(NSString*)name email:(NSString*)email segmentation:(NSNumber*)segmentation newsletter:(NSNumber*)newsletter; | ||
52 | +- (NSDictionary *)registerAutoLogin:(NSString *)id password:(NSString *)password name:(NSString*)name email:(NSString*)email segmentation:(NSNumber*)segmentation newsletter:(NSNumber*)newsletter loginType:(NSString*)loginType; | ||
53 | +- (NSDictionary *)refreshToken; | ||
54 | +- (NSDictionary *)changePassword:(NSString *)oldPassword newPassword:(NSString *)newPassword; | ||
55 | +- (NSDictionary *)getProfile; | ||
56 | +- (NSDictionary *)editProfile:(NSString*)firstname andLastname:(NSString*)lastname andEmail:(NSString *)email andSalutation:(NSString *)salutation andMsisdn:(NSString *)msisdn andNickname:(NSString *)nickname andGender:(NSString *)gender andBirthday:(NSString *)birthday andNameDay:(NSString *)nameday andTaxID:(NSString *)taxid andProfileMetadata:(NSDictionary *)profileMetadata optin:(NSNumber *)optin newsLetter:(NSNumber *)newsletter andSMS:(NSNumber *)sms andSegmentation:(NSNumber *)segmentation andSMSSegmentation:(NSNumber *)smsSegmentation; | ||
57 | +- (NSDictionary *)changeProfileImage:(NSString*)image andUserId:(NSString*)userId; | ||
58 | +- (NSDictionary*) addCard:(NSString*)number andCardIssuer:(NSString*)cardIssuer andCardHolder:(NSString*)cardHolder andExpirationMonth:(NSString*)expirationMonth andExpirationYear:(NSString*)expirationYear; | ||
59 | +- (NSDictionary*) getCards; | ||
60 | +- (NSDictionary*) deleteCard:(NSString*)token; | ||
61 | +- (NSDictionary*) verifyTicket:(NSString*)guid ticket:(NSString*)ticket; | ||
62 | +- (NSDictionary*) getCoupons; | ||
63 | +- (NSDictionary*) getTransactionHistory; | ||
64 | +- (NSDictionary*) getPointsHistory; | ||
65 | +- (NSDictionary*)addAddress:(NSString*)friendlyName andAddressName:(NSString*)addressName andAddressNumber:(NSString*)addressNumber andPostalCode:(NSString*)postalCode andFloorNumber:(NSNumber*)floorNumber andDoorbell:(NSString*)doorbel andRegion:(NSString*)region andLatitude:(NSString*)latitude andLongitude:(NSString*)longitude andNotes:(NSString*)notes; | ||
66 | +- (NSDictionary*)getAddress; | ||
67 | +- (NSDictionary*)editAddress:(NSString*)friendlyName andAddressName:(NSString*)addressName andAddressNumber:(NSString*)addressNumber andPostalCode:(NSString*)postalCode andFloorNumber:(NSNumber*)floorNumber andDoorbell:(NSString*)doorbel andRegion:(NSString*)region andLatitude:(NSString*)latitude andLongitude:(NSString*)longitude andNotes:(NSString*)notes andUuid:(NSString*)uuid; | ||
68 | +- (NSDictionary*)deleteAddress:(NSString*)uuid; | ||
69 | +- (NSDictionary*)redeemCoupon:(NSString*)id andUuid:(NSString*)uuid; | ||
70 | +- (NSDictionary*)forgotPasswordWithId:(NSString*)id andConfCode:(NSString*)confCode andOtpUuid:(NSString*)otpUuid; | ||
71 | +- (NSDictionary*)resetPasswordWithPassword:(NSString*)password andConfCode:(NSString*)confCode andOtpUuid:(NSString*)otpUuid andConfToken:(NSString*)confToken; | ||
72 | +- (NSDictionary*)requestOtpWithMsisdn:(NSString*)msisdn andScope:(NSString*)scope; | ||
73 | +- (NSDictionary*)retrieveMultilingualMerchantsWithCategories:(NSArray*)categories andDefaultShown:(NSNumber*)defaultShown andCenter:(NSNumber*)center andTags:(NSArray*)tags andUuid:(NSString*)uuid andDistance:(NSNumber*)distance; | ||
74 | +- (NSDictionary*)getCouponSetsWithActive:(NSNumber*)active andVisible:(NSNumber*)visible andUuids:(NSArray*)uuids; | ||
75 | +- (NSDictionary*)redeemCouponWithCoupon:(NSString*)coupon; | ||
76 | +- (NSDictionary*)validateCouponWithCoupon:(NSString*)coupon; | ||
77 | +- (NSDictionary*)loginCosmoteWithGuid:(NSString*)guid andAppUuid:(NSString*)appUuid andTicket:(NSString*)ticket; | ||
78 | +- (void)getCouponsWithSuccessBlock:(void(^)(NSDictionary *response))success failureBlock:(void(^)(NSError *error))failure; | ||
79 | +- (void)getCouponsetsAsync:(NSNumber*) active andVisible:(NSNumber*) visible andUuids:(NSArray*) uuids :(void(^)(NSDictionary *response))success failureBlock:(void(^)(NSError *error))failure; | ||
80 | +- (void)getInboxAsync:(void (^)(NSArray *list))success failureBlock:(void (^)(NSError *error))failure; | ||
81 | +- (void)verifyTicketAsync:(NSString*)guid :(NSString*)ticket :(void(^)(NSDictionary *response))success failureBlock:(void(^)(NSError *error))failure; | ||
82 | +- (void)getProfileAsync:(void(^)(NSDictionary *response))success failureBlock:(void(^)(NSError *error))failure; | ||
83 | + | ||
84 | +@end | ||
85 | +#endif /* MyApi_h */ |
1 | +// Generated by Apple Swift version 5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8) | ||
2 | +#ifndef SWIFTWARPLYFRAMEWORK_SWIFT_H | ||
3 | +#define SWIFTWARPLYFRAMEWORK_SWIFT_H | ||
4 | +#pragma clang diagnostic push | ||
5 | +#pragma clang diagnostic ignored "-Wgcc-compat" | ||
6 | + | ||
7 | +#if !defined(__has_include) | ||
8 | +# define __has_include(x) 0 | ||
9 | +#endif | ||
10 | +#if !defined(__has_attribute) | ||
11 | +# define __has_attribute(x) 0 | ||
12 | +#endif | ||
13 | +#if !defined(__has_feature) | ||
14 | +# define __has_feature(x) 0 | ||
15 | +#endif | ||
16 | +#if !defined(__has_warning) | ||
17 | +# define __has_warning(x) 0 | ||
18 | +#endif | ||
19 | + | ||
20 | +#if __has_include(<swift/objc-prologue.h>) | ||
21 | +# include <swift/objc-prologue.h> | ||
22 | +#endif | ||
23 | + | ||
24 | +#pragma clang diagnostic ignored "-Wauto-import" | ||
25 | +#include <Foundation/Foundation.h> | ||
26 | +#include <stdint.h> | ||
27 | +#include <stddef.h> | ||
28 | +#include <stdbool.h> | ||
29 | + | ||
30 | +#if !defined(SWIFT_TYPEDEFS) | ||
31 | +# define SWIFT_TYPEDEFS 1 | ||
32 | +# if __has_include(<uchar.h>) | ||
33 | +# include <uchar.h> | ||
34 | +# elif !defined(__cplusplus) | ||
35 | +typedef uint_least16_t char16_t; | ||
36 | +typedef uint_least32_t char32_t; | ||
37 | +# endif | ||
38 | +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); | ||
39 | +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); | ||
40 | +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); | ||
41 | +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); | ||
42 | +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); | ||
43 | +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); | ||
44 | +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); | ||
45 | +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); | ||
46 | +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); | ||
47 | +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); | ||
48 | +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); | ||
49 | +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); | ||
50 | +#endif | ||
51 | + | ||
52 | +#if !defined(SWIFT_PASTE) | ||
53 | +# define SWIFT_PASTE_HELPER(x, y) x##y | ||
54 | +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) | ||
55 | +#endif | ||
56 | +#if !defined(SWIFT_METATYPE) | ||
57 | +# define SWIFT_METATYPE(X) Class | ||
58 | +#endif | ||
59 | +#if !defined(SWIFT_CLASS_PROPERTY) | ||
60 | +# if __has_feature(objc_class_property) | ||
61 | +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ | ||
62 | +# else | ||
63 | +# define SWIFT_CLASS_PROPERTY(...) | ||
64 | +# endif | ||
65 | +#endif | ||
66 | + | ||
67 | +#if __has_attribute(objc_runtime_name) | ||
68 | +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) | ||
69 | +#else | ||
70 | +# define SWIFT_RUNTIME_NAME(X) | ||
71 | +#endif | ||
72 | +#if __has_attribute(swift_name) | ||
73 | +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) | ||
74 | +#else | ||
75 | +# define SWIFT_COMPILE_NAME(X) | ||
76 | +#endif | ||
77 | +#if __has_attribute(objc_method_family) | ||
78 | +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) | ||
79 | +#else | ||
80 | +# define SWIFT_METHOD_FAMILY(X) | ||
81 | +#endif | ||
82 | +#if __has_attribute(noescape) | ||
83 | +# define SWIFT_NOESCAPE __attribute__((noescape)) | ||
84 | +#else | ||
85 | +# define SWIFT_NOESCAPE | ||
86 | +#endif | ||
87 | +#if __has_attribute(ns_consumed) | ||
88 | +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) | ||
89 | +#else | ||
90 | +# define SWIFT_RELEASES_ARGUMENT | ||
91 | +#endif | ||
92 | +#if __has_attribute(warn_unused_result) | ||
93 | +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) | ||
94 | +#else | ||
95 | +# define SWIFT_WARN_UNUSED_RESULT | ||
96 | +#endif | ||
97 | +#if __has_attribute(noreturn) | ||
98 | +# define SWIFT_NORETURN __attribute__((noreturn)) | ||
99 | +#else | ||
100 | +# define SWIFT_NORETURN | ||
101 | +#endif | ||
102 | +#if !defined(SWIFT_CLASS_EXTRA) | ||
103 | +# define SWIFT_CLASS_EXTRA | ||
104 | +#endif | ||
105 | +#if !defined(SWIFT_PROTOCOL_EXTRA) | ||
106 | +# define SWIFT_PROTOCOL_EXTRA | ||
107 | +#endif | ||
108 | +#if !defined(SWIFT_ENUM_EXTRA) | ||
109 | +# define SWIFT_ENUM_EXTRA | ||
110 | +#endif | ||
111 | +#if !defined(SWIFT_CLASS) | ||
112 | +# if __has_attribute(objc_subclassing_restricted) | ||
113 | +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA | ||
114 | +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA | ||
115 | +# else | ||
116 | +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA | ||
117 | +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA | ||
118 | +# endif | ||
119 | +#endif | ||
120 | +#if !defined(SWIFT_RESILIENT_CLASS) | ||
121 | +# if __has_attribute(objc_class_stub) | ||
122 | +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) | ||
123 | +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) | ||
124 | +# else | ||
125 | +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) | ||
126 | +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) | ||
127 | +# endif | ||
128 | +#endif | ||
129 | + | ||
130 | +#if !defined(SWIFT_PROTOCOL) | ||
131 | +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA | ||
132 | +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA | ||
133 | +#endif | ||
134 | + | ||
135 | +#if !defined(SWIFT_EXTENSION) | ||
136 | +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) | ||
137 | +#endif | ||
138 | + | ||
139 | +#if !defined(OBJC_DESIGNATED_INITIALIZER) | ||
140 | +# if __has_attribute(objc_designated_initializer) | ||
141 | +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) | ||
142 | +# else | ||
143 | +# define OBJC_DESIGNATED_INITIALIZER | ||
144 | +# endif | ||
145 | +#endif | ||
146 | +#if !defined(SWIFT_ENUM_ATTR) | ||
147 | +# if defined(__has_attribute) && __has_attribute(enum_extensibility) | ||
148 | +# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) | ||
149 | +# else | ||
150 | +# define SWIFT_ENUM_ATTR(_extensibility) | ||
151 | +# endif | ||
152 | +#endif | ||
153 | +#if !defined(SWIFT_ENUM) | ||
154 | +# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type | ||
155 | +# if __has_feature(generalized_swift_name) | ||
156 | +# 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 | ||
157 | +# else | ||
158 | +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) | ||
159 | +# endif | ||
160 | +#endif | ||
161 | +#if !defined(SWIFT_UNAVAILABLE) | ||
162 | +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) | ||
163 | +#endif | ||
164 | +#if !defined(SWIFT_UNAVAILABLE_MSG) | ||
165 | +# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) | ||
166 | +#endif | ||
167 | +#if !defined(SWIFT_AVAILABILITY) | ||
168 | +# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) | ||
169 | +#endif | ||
170 | +#if !defined(SWIFT_WEAK_IMPORT) | ||
171 | +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) | ||
172 | +#endif | ||
173 | +#if !defined(SWIFT_DEPRECATED) | ||
174 | +# define SWIFT_DEPRECATED __attribute__((deprecated)) | ||
175 | +#endif | ||
176 | +#if !defined(SWIFT_DEPRECATED_MSG) | ||
177 | +# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) | ||
178 | +#endif | ||
179 | +#if __has_feature(attribute_diagnose_if_objc) | ||
180 | +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) | ||
181 | +#else | ||
182 | +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) | ||
183 | +#endif | ||
184 | +#if !defined(IBSegueAction) | ||
185 | +# define IBSegueAction | ||
186 | +#endif | ||
187 | +#if !defined(SWIFT_EXTERN) | ||
188 | +# if defined(__cplusplus) | ||
189 | +# define SWIFT_EXTERN extern "C" | ||
190 | +# else | ||
191 | +# define SWIFT_EXTERN extern | ||
192 | +# endif | ||
193 | +#endif | ||
194 | +#if __has_feature(modules) | ||
195 | +#if __has_warning("-Watimport-in-framework-header") | ||
196 | +#pragma clang diagnostic ignored "-Watimport-in-framework-header" | ||
197 | +#endif | ||
198 | +@import UIKit; | ||
199 | +#endif | ||
200 | + | ||
201 | +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" | ||
202 | +#pragma clang diagnostic ignored "-Wduplicate-method-arg" | ||
203 | +#if __has_warning("-Wpragma-clang-attribute") | ||
204 | +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" | ||
205 | +#endif | ||
206 | +#pragma clang diagnostic ignored "-Wunknown-pragmas" | ||
207 | +#pragma clang diagnostic ignored "-Wnullability" | ||
208 | + | ||
209 | +#if __has_attribute(external_source_symbol) | ||
210 | +# pragma push_macro("any") | ||
211 | +# undef any | ||
212 | +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="SwiftWarplyFramework",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) | ||
213 | +# pragma pop_macro("any") | ||
214 | +#endif | ||
215 | + | ||
216 | +@class NSString; | ||
217 | +@class NSBundle; | ||
218 | +@class NSCoder; | ||
219 | + | ||
220 | +SWIFT_CLASS("_TtC20SwiftWarplyFramework25ActiveGiftsViewController") | ||
221 | +@interface ActiveGiftsViewController : UIViewController | ||
222 | +- (void)viewWillAppear:(BOOL)animated; | ||
223 | +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; | ||
224 | +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; | ||
225 | +@end | ||
226 | + | ||
227 | + | ||
228 | +SWIFT_CLASS("_TtC20SwiftWarplyFramework22CampaignViewController") | ||
229 | +@interface CampaignViewController : UIViewController | ||
230 | +- (void)viewWillAppear:(BOOL)animated; | ||
231 | +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; | ||
232 | +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; | ||
233 | +@end | ||
234 | + | ||
235 | + | ||
236 | +SWIFT_CLASS("_TtC20SwiftWarplyFramework21CouponsViewController") | ||
237 | +@interface CouponsViewController : UIViewController | ||
238 | +- (void)viewWillAppear:(BOOL)animated; | ||
239 | +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; | ||
240 | +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; | ||
241 | +@end | ||
242 | + | ||
243 | + | ||
244 | +SWIFT_CLASS("_TtC20SwiftWarplyFramework21DetailsViewController") | ||
245 | +@interface DetailsViewController : UIViewController | ||
246 | +- (void)viewWillAppear:(BOOL)animated; | ||
247 | +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; | ||
248 | +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; | ||
249 | +@end | ||
250 | + | ||
251 | + | ||
252 | +SWIFT_CLASS("_TtC20SwiftWarplyFramework19GiftsViewController") | ||
253 | +@interface GiftsViewController : UIViewController | ||
254 | +- (void)viewWillAppear:(BOOL)animated; | ||
255 | +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; | ||
256 | +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; | ||
257 | +@end | ||
258 | + | ||
259 | + | ||
260 | +SWIFT_CLASS("_TtC20SwiftWarplyFramework17MFYViewController") | ||
261 | +@interface MFYViewController : UIViewController | ||
262 | +- (void)viewWillAppear:(BOOL)animated; | ||
263 | +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; | ||
264 | +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; | ||
265 | +@end | ||
266 | + | ||
267 | + | ||
268 | +SWIFT_CLASS("_TtC20SwiftWarplyFramework28MakeItAPresentViewController") | ||
269 | +@interface MakeItAPresentViewController : UIViewController | ||
270 | +- (void)viewWillAppear:(BOOL)animated; | ||
271 | +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; | ||
272 | +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; | ||
273 | +@end | ||
274 | + | ||
275 | + | ||
276 | + | ||
277 | +SWIFT_CLASS("_TtC20SwiftWarplyFramework20WalletViewController") | ||
278 | +@interface WalletViewController : UIViewController | ||
279 | +- (void)viewWillAppear:(BOOL)animated; | ||
280 | +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; | ||
281 | +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; | ||
282 | +@end | ||
283 | + | ||
284 | +#if __has_attribute(external_source_symbol) | ||
285 | +# pragma clang attribute pop | ||
286 | +#endif | ||
287 | +#pragma clang diagnostic pop | ||
288 | +#endif |
1 | +// | ||
2 | +// SwiftWarplyFramework.h | ||
3 | +// SwiftWarplyFramework | ||
4 | +// | ||
5 | +// Created by Βασιλης Σκουρας on 9/5/22. | ||
6 | +// | ||
7 | + | ||
8 | +#import <Foundation/Foundation.h> | ||
9 | +#import "MyApi.h" | ||
10 | + | ||
11 | +//! Project version number for SwiftWarplyFramework. | ||
12 | +FOUNDATION_EXPORT double SwiftWarplyFrameworkVersionNumber; | ||
13 | + | ||
14 | +//! Project version string for SwiftWarplyFramework. | ||
15 | +FOUNDATION_EXPORT const unsigned char SwiftWarplyFrameworkVersionString[]; | ||
16 | + | ||
17 | +// In this header, you should import all the public headers of your framework using statements like #import <SwiftWarplyFramework/PublicHeader.h> | ||
18 | + | ||
19 | + |
SwiftWarplyFramework.framework/Info.plist
0 → 100644
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
SwiftWarplyFramework.framework/Modules/SwiftWarplyFramework.swiftmodule/arm64-apple-ios.swiftdoc
0 → 100644
No preview for this file type
SwiftWarplyFramework.framework/Modules/SwiftWarplyFramework.swiftmodule/arm64-apple-ios.swiftmodule
0 → 100644
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
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>files</key> | ||
6 | + <dict> | ||
7 | + <key>Assets.car</key> | ||
8 | + <data> | ||
9 | + VNMk77HWACHeUR04A9YB58o6TJ0= | ||
10 | + </data> | ||
11 | + <key>Headers/MyApi.h</key> | ||
12 | + <data> | ||
13 | + EFu4CmSfWY3U+R2Txmpa3InhiP8= | ||
14 | + </data> | ||
15 | + <key>Headers/SwiftWarplyFramework-Swift.h</key> | ||
16 | + <data> | ||
17 | + UFvJaD35i17yw97LO4yCjuaYzkI= | ||
18 | + </data> | ||
19 | + <key>Headers/SwiftWarplyFramework.h</key> | ||
20 | + <data> | ||
21 | + 4P4JNMTK57iNcdZk0bYC7pPcsgQ= | ||
22 | + </data> | ||
23 | + <key>Info.plist</key> | ||
24 | + <data> | ||
25 | + O9+SCsxnk3w9sTgVIYLkwg97f68= | ||
26 | + </data> | ||
27 | + <key>Main.storyboardc/ActiveGiftsViewController.nib</key> | ||
28 | + <data> | ||
29 | + eoOzqeXYwNw5MKp+erN8et+OSVQ= | ||
30 | + </data> | ||
31 | + <key>Main.storyboardc/BqS-DP-tcC-view-bVb-O2-Ery.nib</key> | ||
32 | + <data> | ||
33 | + Rc8azX8NVsaE7CGrMtzkd4YtTv0= | ||
34 | + </data> | ||
35 | + <key>Main.storyboardc/CampaignViewController.nib</key> | ||
36 | + <data> | ||
37 | + imtduaB3ajpdpJqgo7n/MT5tq2U= | ||
38 | + </data> | ||
39 | + <key>Main.storyboardc/CouponViewController.nib</key> | ||
40 | + <data> | ||
41 | + F1l1fOO+rjamkzAegRcOufVddB4= | ||
42 | + </data> | ||
43 | + <key>Main.storyboardc/CouponsViewController.nib</key> | ||
44 | + <data> | ||
45 | + Ad/R0Pp11mAjGhnUGtvc0USuLV4= | ||
46 | + </data> | ||
47 | + <key>Main.storyboardc/DetailsViewController.nib</key> | ||
48 | + <data> | ||
49 | + 4BEfuGZbQjk0e2QEEaSeO3GFgKk= | ||
50 | + </data> | ||
51 | + <key>Main.storyboardc/GiftsViewController.nib</key> | ||
52 | + <data> | ||
53 | + qMumDLWWmGuwbN4omKkwVvYKofk= | ||
54 | + </data> | ||
55 | + <key>Main.storyboardc/Info.plist</key> | ||
56 | + <data> | ||
57 | + /ZJzLIRP9jlPHNeHVE7m2LD30dQ= | ||
58 | + </data> | ||
59 | + <key>Main.storyboardc/MFYViewController.nib</key> | ||
60 | + <data> | ||
61 | + vHYd+jIg9tRMPuG3UEMNZvbseNM= | ||
62 | + </data> | ||
63 | + <key>Main.storyboardc/MakeItAPresentViewController.nib</key> | ||
64 | + <data> | ||
65 | + cAw31+GQpOjHjWyW28txOTIZqTM= | ||
66 | + </data> | ||
67 | + <key>Main.storyboardc/S8k-2D-tGT-view-JM4-xN-bgp.nib</key> | ||
68 | + <data> | ||
69 | + nKlqkhPctZwuoLgjhNyReZUMMPk= | ||
70 | + </data> | ||
71 | + <key>Main.storyboardc/WalletViewController.nib</key> | ||
72 | + <data> | ||
73 | + q4gzBaWgCBcikkSthXMRO5QZjbI= | ||
74 | + </data> | ||
75 | + <key>Main.storyboardc/YRk-Az-LOb-view-iEB-He-DJV.nib</key> | ||
76 | + <data> | ||
77 | + Rc8azX8NVsaE7CGrMtzkd4YtTv0= | ||
78 | + </data> | ||
79 | + <key>Main.storyboardc/lA7-aM-j4d-view-cXJ-oE-1HV.nib</key> | ||
80 | + <data> | ||
81 | + g5L7iSXPN/uWtXsuTCe+BbR+F0s= | ||
82 | + </data> | ||
83 | + <key>Main.storyboardc/pKQ-52-a1r-view-e1e-Eg-v4q.nib</key> | ||
84 | + <data> | ||
85 | + jLSPALBeE7maCOXdTITIy8qHNZ4= | ||
86 | + </data> | ||
87 | + <key>Main.storyboardc/sWR-yI-hxH-view-ghE-y5-6SE.nib</key> | ||
88 | + <data> | ||
89 | + Rc8azX8NVsaE7CGrMtzkd4YtTv0= | ||
90 | + </data> | ||
91 | + <key>Main.storyboardc/wy8-hC-CyC-view-rgt-dj-Aiw.nib</key> | ||
92 | + <data> | ||
93 | + IprRRxX/H5NOJ1LnFX/0h1mSnDE= | ||
94 | + </data> | ||
95 | + <key>Main.storyboardc/yqg-nb-9Dh-view-Cz1-PS-4Dy.nib</key> | ||
96 | + <data> | ||
97 | + Rc8azX8NVsaE7CGrMtzkd4YtTv0= | ||
98 | + </data> | ||
99 | + <key>Main.storyboardc/zti-Lv-RCc-view-OHf-ga-xvH.nib</key> | ||
100 | + <data> | ||
101 | + wVxQjAss0kY7XlpnwnJ//veQzE4= | ||
102 | + </data> | ||
103 | + <key>Modules/SwiftWarplyFramework.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo</key> | ||
104 | + <data> | ||
105 | + r7E6mW3jp7ZgH34W1txNeryczX4= | ||
106 | + </data> | ||
107 | + <key>Modules/SwiftWarplyFramework.swiftmodule/arm64-apple-ios.swiftdoc</key> | ||
108 | + <data> | ||
109 | + TgleW47dLPzEs9DfawK/Ovo5TwI= | ||
110 | + </data> | ||
111 | + <key>Modules/SwiftWarplyFramework.swiftmodule/arm64-apple-ios.swiftmodule</key> | ||
112 | + <data> | ||
113 | + iwvv25KxgPI7zZSgoZ936zjSdDQ= | ||
114 | + </data> | ||
115 | + <key>Modules/module.modulemap</key> | ||
116 | + <data> | ||
117 | + rYGHPPWvC6ZzeA5E90mRzjxhoGQ= | ||
118 | + </data> | ||
119 | + <key>WLNativeAdCollectionViewCell.nib/objects-12.3+.nib</key> | ||
120 | + <data> | ||
121 | + JpqcaqCHDLpEU0KqWMdaJnLZFLo= | ||
122 | + </data> | ||
123 | + <key>WLNativeAdCollectionViewCell.nib/runtime.nib</key> | ||
124 | + <data> | ||
125 | + X3R25WNNSmVVncF+RF3O23JjRSE= | ||
126 | + </data> | ||
127 | + <key>WLNativeAdTableViewCell.nib</key> | ||
128 | + <data> | ||
129 | + zZf6YWPmGYg525K3h6ctM+J67Gg= | ||
130 | + </data> | ||
131 | + <key>WLNativeVideoTableViewCell.nib</key> | ||
132 | + <data> | ||
133 | + QteeSEraaE/Rjil0rTcqFrUGRo0= | ||
134 | + </data> | ||
135 | + <key>warp_white_back_button.png</key> | ||
136 | + <data> | ||
137 | + pv84pocjm3eAQq5wlCXc8R7ebyc= | ||
138 | + </data> | ||
139 | + <key>warp_white_back_button@2x.png</key> | ||
140 | + <data> | ||
141 | + oNR6mR20xRiKRlqAH/oO7bnXfbE= | ||
142 | + </data> | ||
143 | + <key>warp_white_close_button.png</key> | ||
144 | + <data> | ||
145 | + x2z+5O0GbOC4ZR5CRPg3vzjwU7g= | ||
146 | + </data> | ||
147 | + <key>warp_white_close_button@2x.png</key> | ||
148 | + <data> | ||
149 | + ZILm2ke1L8x4S6lKcRq4GJ+RoxY= | ||
150 | + </data> | ||
151 | + <key>warp_white_forward_button.png</key> | ||
152 | + <data> | ||
153 | + utaioQ40BK8eYPCmCZtfCkHfjxg= | ||
154 | + </data> | ||
155 | + <key>warp_white_forward_button@2x.png</key> | ||
156 | + <data> | ||
157 | + tH1io/Dscj0kbiukAcTCV3McTy0= | ||
158 | + </data> | ||
159 | + </dict> | ||
160 | + <key>files2</key> | ||
161 | + <dict> | ||
162 | + <key>Assets.car</key> | ||
163 | + <dict> | ||
164 | + <key>hash2</key> | ||
165 | + <data> | ||
166 | + HvAzBrvwr7Msb1YaspLuSmABU7NerUn9WEvT/o1z9tY= | ||
167 | + </data> | ||
168 | + </dict> | ||
169 | + <key>Headers/MyApi.h</key> | ||
170 | + <dict> | ||
171 | + <key>hash2</key> | ||
172 | + <data> | ||
173 | + jHq0iaIezbJBbPalNjrvRapjES1f9MvyAouMObLVZHQ= | ||
174 | + </data> | ||
175 | + </dict> | ||
176 | + <key>Headers/SwiftWarplyFramework-Swift.h</key> | ||
177 | + <dict> | ||
178 | + <key>hash2</key> | ||
179 | + <data> | ||
180 | + DUwHz5zk0VrP7EjK98xRuEv4yuq48sTKqO9zkGwobjc= | ||
181 | + </data> | ||
182 | + </dict> | ||
183 | + <key>Headers/SwiftWarplyFramework.h</key> | ||
184 | + <dict> | ||
185 | + <key>hash2</key> | ||
186 | + <data> | ||
187 | + oEdgawjoUHgxQK9WtQgZi81X8UAJrL+BYt7jYquUZ3Q= | ||
188 | + </data> | ||
189 | + </dict> | ||
190 | + <key>Main.storyboardc/ActiveGiftsViewController.nib</key> | ||
191 | + <dict> | ||
192 | + <key>hash2</key> | ||
193 | + <data> | ||
194 | + 7YSM9XStdNgMXtFie0L+13pUjBZGyMCUGbNxlk4v+X0= | ||
195 | + </data> | ||
196 | + </dict> | ||
197 | + <key>Main.storyboardc/BqS-DP-tcC-view-bVb-O2-Ery.nib</key> | ||
198 | + <dict> | ||
199 | + <key>hash2</key> | ||
200 | + <data> | ||
201 | + DAcMX+EgFsngCCGn4jnRPc+2bCVqroP1i52mcxG+nng= | ||
202 | + </data> | ||
203 | + </dict> | ||
204 | + <key>Main.storyboardc/CampaignViewController.nib</key> | ||
205 | + <dict> | ||
206 | + <key>hash2</key> | ||
207 | + <data> | ||
208 | + QTv++VsNVIDzXB/KiivXzZGqvYZZ0VSz5Qx0jEn8U9Q= | ||
209 | + </data> | ||
210 | + </dict> | ||
211 | + <key>Main.storyboardc/CouponViewController.nib</key> | ||
212 | + <dict> | ||
213 | + <key>hash2</key> | ||
214 | + <data> | ||
215 | + g30JWVWnUErWL0grSVIj97nNHFfq1Lu6rbfj7xvJg7s= | ||
216 | + </data> | ||
217 | + </dict> | ||
218 | + <key>Main.storyboardc/CouponsViewController.nib</key> | ||
219 | + <dict> | ||
220 | + <key>hash2</key> | ||
221 | + <data> | ||
222 | + om21rlXv4uWXFV2VJeEr4WcklmOd0vF/DFwKgAXgjEo= | ||
223 | + </data> | ||
224 | + </dict> | ||
225 | + <key>Main.storyboardc/DetailsViewController.nib</key> | ||
226 | + <dict> | ||
227 | + <key>hash2</key> | ||
228 | + <data> | ||
229 | + NM/FU3nTtKPDQDTSNWX2wFyZply6aZ2zn+HkkECgc9Y= | ||
230 | + </data> | ||
231 | + </dict> | ||
232 | + <key>Main.storyboardc/GiftsViewController.nib</key> | ||
233 | + <dict> | ||
234 | + <key>hash2</key> | ||
235 | + <data> | ||
236 | + QjqKbJ2puH408XJj2oPadllvbgZQoiO3A7bJ36ilLfg= | ||
237 | + </data> | ||
238 | + </dict> | ||
239 | + <key>Main.storyboardc/Info.plist</key> | ||
240 | + <dict> | ||
241 | + <key>hash2</key> | ||
242 | + <data> | ||
243 | + Yif9Hpw8wv5ACVo+JWKacjZiLrqdcRAfmahrBz1fBoM= | ||
244 | + </data> | ||
245 | + </dict> | ||
246 | + <key>Main.storyboardc/MFYViewController.nib</key> | ||
247 | + <dict> | ||
248 | + <key>hash2</key> | ||
249 | + <data> | ||
250 | + 7NPR6jbqlasfRZMBeaSCIk9y8gPM0fGxRszYlA6+LTo= | ||
251 | + </data> | ||
252 | + </dict> | ||
253 | + <key>Main.storyboardc/MakeItAPresentViewController.nib</key> | ||
254 | + <dict> | ||
255 | + <key>hash2</key> | ||
256 | + <data> | ||
257 | + J/hkTnq2CP+R9vW/70LlKka93Y2WkLOLdxspSaDFf6E= | ||
258 | + </data> | ||
259 | + </dict> | ||
260 | + <key>Main.storyboardc/S8k-2D-tGT-view-JM4-xN-bgp.nib</key> | ||
261 | + <dict> | ||
262 | + <key>hash2</key> | ||
263 | + <data> | ||
264 | + 8fO9ja4YkTiojpaQXITeVWO+IUJdeLvUzmSC9Za0DT8= | ||
265 | + </data> | ||
266 | + </dict> | ||
267 | + <key>Main.storyboardc/WalletViewController.nib</key> | ||
268 | + <dict> | ||
269 | + <key>hash2</key> | ||
270 | + <data> | ||
271 | + qMQCSexH20FSiFFlv3clMb2Zhtk0f8HY8LPHhcvZhWQ= | ||
272 | + </data> | ||
273 | + </dict> | ||
274 | + <key>Main.storyboardc/YRk-Az-LOb-view-iEB-He-DJV.nib</key> | ||
275 | + <dict> | ||
276 | + <key>hash2</key> | ||
277 | + <data> | ||
278 | + DAcMX+EgFsngCCGn4jnRPc+2bCVqroP1i52mcxG+nng= | ||
279 | + </data> | ||
280 | + </dict> | ||
281 | + <key>Main.storyboardc/lA7-aM-j4d-view-cXJ-oE-1HV.nib</key> | ||
282 | + <dict> | ||
283 | + <key>hash2</key> | ||
284 | + <data> | ||
285 | + 5ZFRLau2gZpD7UNuV7nH6GVJ33YLWdKOHGuT22Ybp8M= | ||
286 | + </data> | ||
287 | + </dict> | ||
288 | + <key>Main.storyboardc/pKQ-52-a1r-view-e1e-Eg-v4q.nib</key> | ||
289 | + <dict> | ||
290 | + <key>hash2</key> | ||
291 | + <data> | ||
292 | + S0ZnFNenSyY6ePf29BjlJoIPFRgRfV7teQR8e/nq0lg= | ||
293 | + </data> | ||
294 | + </dict> | ||
295 | + <key>Main.storyboardc/sWR-yI-hxH-view-ghE-y5-6SE.nib</key> | ||
296 | + <dict> | ||
297 | + <key>hash2</key> | ||
298 | + <data> | ||
299 | + DAcMX+EgFsngCCGn4jnRPc+2bCVqroP1i52mcxG+nng= | ||
300 | + </data> | ||
301 | + </dict> | ||
302 | + <key>Main.storyboardc/wy8-hC-CyC-view-rgt-dj-Aiw.nib</key> | ||
303 | + <dict> | ||
304 | + <key>hash2</key> | ||
305 | + <data> | ||
306 | + IjuaAs2aLTlsjTm4HvS79gAdl2uvpbl3Fhin0oUjAZk= | ||
307 | + </data> | ||
308 | + </dict> | ||
309 | + <key>Main.storyboardc/yqg-nb-9Dh-view-Cz1-PS-4Dy.nib</key> | ||
310 | + <dict> | ||
311 | + <key>hash2</key> | ||
312 | + <data> | ||
313 | + DAcMX+EgFsngCCGn4jnRPc+2bCVqroP1i52mcxG+nng= | ||
314 | + </data> | ||
315 | + </dict> | ||
316 | + <key>Main.storyboardc/zti-Lv-RCc-view-OHf-ga-xvH.nib</key> | ||
317 | + <dict> | ||
318 | + <key>hash2</key> | ||
319 | + <data> | ||
320 | + TgfxtuiWLVGvT4KXdr6OHr9kwjYELkuG4OmcoMn2YzI= | ||
321 | + </data> | ||
322 | + </dict> | ||
323 | + <key>Modules/SwiftWarplyFramework.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo</key> | ||
324 | + <dict> | ||
325 | + <key>hash2</key> | ||
326 | + <data> | ||
327 | + sNzKBnxhnoCaDi7vld3d6s+XHm8+cbMXEL4B9KmJPso= | ||
328 | + </data> | ||
329 | + </dict> | ||
330 | + <key>Modules/SwiftWarplyFramework.swiftmodule/arm64-apple-ios.swiftdoc</key> | ||
331 | + <dict> | ||
332 | + <key>hash2</key> | ||
333 | + <data> | ||
334 | + WRsFzdAWR6lJ6HlHnlKbPvNY3i8SH4x56unXs0LxmGw= | ||
335 | + </data> | ||
336 | + </dict> | ||
337 | + <key>Modules/SwiftWarplyFramework.swiftmodule/arm64-apple-ios.swiftmodule</key> | ||
338 | + <dict> | ||
339 | + <key>hash2</key> | ||
340 | + <data> | ||
341 | + 24nEzbDQ8DKKGm1XOgXpL50mr265iT6rImwfFIldopE= | ||
342 | + </data> | ||
343 | + </dict> | ||
344 | + <key>Modules/module.modulemap</key> | ||
345 | + <dict> | ||
346 | + <key>hash2</key> | ||
347 | + <data> | ||
348 | + HGAJwOPN/MiceW5ud9qqenPRXBY38J+xdGQ0LNN0FJ8= | ||
349 | + </data> | ||
350 | + </dict> | ||
351 | + <key>WLNativeAdCollectionViewCell.nib/objects-12.3+.nib</key> | ||
352 | + <dict> | ||
353 | + <key>hash2</key> | ||
354 | + <data> | ||
355 | + 8zDmyYpy6RMFwd0JkLUlw7xzmtAZemgGKVmEzODdps4= | ||
356 | + </data> | ||
357 | + </dict> | ||
358 | + <key>WLNativeAdCollectionViewCell.nib/runtime.nib</key> | ||
359 | + <dict> | ||
360 | + <key>hash2</key> | ||
361 | + <data> | ||
362 | + wvPn6C04U2ban4VLk2b9wHn7fMItsRX1ckL0kGO5AXE= | ||
363 | + </data> | ||
364 | + </dict> | ||
365 | + <key>WLNativeAdTableViewCell.nib</key> | ||
366 | + <dict> | ||
367 | + <key>hash2</key> | ||
368 | + <data> | ||
369 | + xtEvcJFiBXZcOI7/FHyU8BlACL5NoBjwKhXInWyZmf4= | ||
370 | + </data> | ||
371 | + </dict> | ||
372 | + <key>WLNativeVideoTableViewCell.nib</key> | ||
373 | + <dict> | ||
374 | + <key>hash2</key> | ||
375 | + <data> | ||
376 | + O1XoZW1GttwSIMwLp6MOHlGlfC1fFYbX4/FtVo47/H8= | ||
377 | + </data> | ||
378 | + </dict> | ||
379 | + <key>warp_white_back_button.png</key> | ||
380 | + <dict> | ||
381 | + <key>hash2</key> | ||
382 | + <data> | ||
383 | + WtLlGv8JSOkZku+rqKQw/tx/13nq8Qky49HihuGPap4= | ||
384 | + </data> | ||
385 | + </dict> | ||
386 | + <key>warp_white_back_button@2x.png</key> | ||
387 | + <dict> | ||
388 | + <key>hash2</key> | ||
389 | + <data> | ||
390 | + penUjNbdAPoMhsEppAckdM0XIU010PN+jLMPzJG4QRM= | ||
391 | + </data> | ||
392 | + </dict> | ||
393 | + <key>warp_white_close_button.png</key> | ||
394 | + <dict> | ||
395 | + <key>hash2</key> | ||
396 | + <data> | ||
397 | + X4A7Fpb03zzFpEdgF+ogLodSWFSO18v722IwMODWIYo= | ||
398 | + </data> | ||
399 | + </dict> | ||
400 | + <key>warp_white_close_button@2x.png</key> | ||
401 | + <dict> | ||
402 | + <key>hash2</key> | ||
403 | + <data> | ||
404 | + tNJ1aHwwf1aJWyA+odp5lRaBORb3sMSSVx245FPkGog= | ||
405 | + </data> | ||
406 | + </dict> | ||
407 | + <key>warp_white_forward_button.png</key> | ||
408 | + <dict> | ||
409 | + <key>hash2</key> | ||
410 | + <data> | ||
411 | + jrGN5n5MQ6X1nukL28B9bjP9y1MyYVkVI/ku12SFrVE= | ||
412 | + </data> | ||
413 | + </dict> | ||
414 | + <key>warp_white_forward_button@2x.png</key> | ||
415 | + <dict> | ||
416 | + <key>hash2</key> | ||
417 | + <data> | ||
418 | + 63yr7MF/rShpUW8P/RtOFP3ua9pbGuuD9cWAFIIutIs= | ||
419 | + </data> | ||
420 | + </dict> | ||
421 | + </dict> | ||
422 | + <key>rules</key> | ||
423 | + <dict> | ||
424 | + <key>^.*</key> | ||
425 | + <true/> | ||
426 | + <key>^.*\.lproj/</key> | ||
427 | + <dict> | ||
428 | + <key>optional</key> | ||
429 | + <true/> | ||
430 | + <key>weight</key> | ||
431 | + <real>1000</real> | ||
432 | + </dict> | ||
433 | + <key>^.*\.lproj/locversion.plist$</key> | ||
434 | + <dict> | ||
435 | + <key>omit</key> | ||
436 | + <true/> | ||
437 | + <key>weight</key> | ||
438 | + <real>1100</real> | ||
439 | + </dict> | ||
440 | + <key>^Base\.lproj/</key> | ||
441 | + <dict> | ||
442 | + <key>weight</key> | ||
443 | + <real>1010</real> | ||
444 | + </dict> | ||
445 | + <key>^version.plist$</key> | ||
446 | + <true/> | ||
447 | + </dict> | ||
448 | + <key>rules2</key> | ||
449 | + <dict> | ||
450 | + <key>.*\.dSYM($|/)</key> | ||
451 | + <dict> | ||
452 | + <key>weight</key> | ||
453 | + <real>11</real> | ||
454 | + </dict> | ||
455 | + <key>^(.*/)?\.DS_Store$</key> | ||
456 | + <dict> | ||
457 | + <key>omit</key> | ||
458 | + <true/> | ||
459 | + <key>weight</key> | ||
460 | + <real>2000</real> | ||
461 | + </dict> | ||
462 | + <key>^.*</key> | ||
463 | + <true/> | ||
464 | + <key>^.*\.lproj/</key> | ||
465 | + <dict> | ||
466 | + <key>optional</key> | ||
467 | + <true/> | ||
468 | + <key>weight</key> | ||
469 | + <real>1000</real> | ||
470 | + </dict> | ||
471 | + <key>^.*\.lproj/locversion.plist$</key> | ||
472 | + <dict> | ||
473 | + <key>omit</key> | ||
474 | + <true/> | ||
475 | + <key>weight</key> | ||
476 | + <real>1100</real> | ||
477 | + </dict> | ||
478 | + <key>^Base\.lproj/</key> | ||
479 | + <dict> | ||
480 | + <key>weight</key> | ||
481 | + <real>1010</real> | ||
482 | + </dict> | ||
483 | + <key>^Info\.plist$</key> | ||
484 | + <dict> | ||
485 | + <key>omit</key> | ||
486 | + <true/> | ||
487 | + <key>weight</key> | ||
488 | + <real>20</real> | ||
489 | + </dict> | ||
490 | + <key>^PkgInfo$</key> | ||
491 | + <dict> | ||
492 | + <key>omit</key> | ||
493 | + <true/> | ||
494 | + <key>weight</key> | ||
495 | + <real>20</real> | ||
496 | + </dict> | ||
497 | + <key>^embedded\.provisionprofile$</key> | ||
498 | + <dict> | ||
499 | + <key>weight</key> | ||
500 | + <real>20</real> | ||
501 | + </dict> | ||
502 | + <key>^version\.plist$</key> | ||
503 | + <dict> | ||
504 | + <key>weight</key> | ||
505 | + <real>20</real> | ||
506 | + </dict> | ||
507 | + </dict> | ||
508 | +</dict> | ||
509 | +</plist> |
245 Bytes
401 Bytes
2.88 KB
2.88 KB
235 Bytes
375 Bytes
SwiftWarplyFramework.podspec
0 → 100644
1 | +Pod::Spec.new do |spec| | ||
2 | + | ||
3 | + spec.name = "SwiftWarplyFramework" | ||
4 | + spec.version = "0.0.32" | ||
5 | + spec.summary = "A framework used for several functionalities." | ||
6 | + | ||
7 | + spec.description = "This is the Warply framework used for react native or swift apps for analytics, push notifications and the functionality of the app." | ||
8 | + | ||
9 | + spec.homepage = "https://git.warp.ly/open-source/warply_sdk_framework.git" | ||
10 | + | ||
11 | + spec.license = { | ||
12 | +:type => 'MIT', | ||
13 | +# :file => 'WarplySDKFrameworkIOS/LICENSE.txt' | ||
14 | +} | ||
15 | + | ||
16 | + spec.author = { "billy" => "skourasbl@gmail.com" } | ||
17 | + | ||
18 | + spec.platform = :ios, "11.0" | ||
19 | + | ||
20 | + spec.source = { :git => "https://git.warp.ly/open-source/warply_sdk_framework.git", :tag => "0.0.32" } | ||
21 | + spec.public_header_files = "SwiftWarplyFramework.framework/Headers/*.h" | ||
22 | + spec.source_files = "SwiftWarplyFramework.framework/headers/*.h" | ||
23 | + spec.vendored_frameworks = "SwiftWarplyFramework.framework" | ||
24 | + spec.exclude_files = "Classes/Exclude" | ||
25 | + | ||
26 | + # spec.resource_bundles = { | ||
27 | + # 'Resources' => ['WarplySDKFrameworkIOS/*.xcassets', 'WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/*.xcassets'] | ||
28 | + # } | ||
29 | + # spec.preserve_paths = 'WarplySDKFrameworkIOS/myApi.h', 'WarplySDKFrameworkIOS/swiftApi.swift' | ||
30 | + # spec.vendored_libraries = 'WarplySDKFrameworkIOS/myApi.h', 'WarplySDKFrameworkIOS/swiftApi.swift' | ||
31 | + # spec.ios.deployment_target = '11.0' | ||
32 | + # spec.frameworks = 'UIKit', 'Foundation' | ||
33 | + # spec.requires_arc = true | ||
34 | + # spec.subspec 'WarplySDKFrameworkIOS' do |mylib| | ||
35 | + # mylib.source_files = 'WarplySDKFrameworkIOS/*.xcassets', 'WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/*.xcassets', "WarplySDKFrameworkIOS/*.png", "WarplySDKFrameworkIOS/*.xcassets", "WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/*.xcassets","WarplySDKFrameworkIOS/*.xib", "WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/*.xib", "WarplySDKFrameworkIOS/*.{h,m}", "WarplySDKFrameworkIOS/*.{h,m}", "WarplySDKFrameworkIOS/**/*.{h,m}", "WarplySDKFrameworkIOS/**/**/*.{h,m}", "WarplySDKFrameworkIOS/**/**/**/*.{h,m}", "WarplySDKFrameworkIOS/*.swift", "*.swift", "WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/*.swift", "WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/*.swift" | ||
36 | + # mylib.vendored_frameworks = 'WarplySDKFrameworkIOS/Frameworks/WarplySDKFrameworkIOS.framework' | ||
37 | + # end | ||
38 | + | ||
39 | +end |
-
Please register or login to post a comment