Skip to content

Commit 5343a18

Browse files
Merge pull request #1 from azerion/release/v3.1.8
Release/v3.1.8
2 parents 32da342 + b6e8b08 commit 5343a18

25 files changed

+659
-399
lines changed

MAdvertiseLocation.podspec

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
Pod::Spec.new do |s|
22
s.name = "MAdvertiseLocation"
3-
s.version = "3.1.7"
4-
s.summary = "MAdvertise Location SDK is an IOS project developed with SWIFT programming language. It help to collect and track geolcation data."
3+
s.version = "3.1.8"
4+
s.summary = "BlueStack Location"
55

6-
s.homepage = "https://bitbucket.org/mngcorp/mngads-demo-ios/wiki/MadvertiseLocation"
7-
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
6+
s.homepage = "https://developers.bluestack.app/ios/bluestack-location/getting-started"
87
s.license = {
98
"type": "Creative Commons Legal Code, Attribution 3.0 Unported"
109
}
11-
s.author = { "MAdvertise" => "http://madvertise.com/",
12-
"Technical Assistance" => "admin@madvertise.com"
13-
}
10+
s.author = {
11+
"Azerion" => "https://www.azerion.com/contact/"
12+
}
1413

15-
s.source = { :git => "https://github.com/azerion/BlueStackLocation.git", :tag => "v#{s.version}" }
16-
#s.source = { :http => "https://bitbucket.org/mngcorp/mngads-demo-ios/downloads/MAdvertiseLocation-v3.1.5.zip" }
14+
s.source = { :git => "https://github.com/azerion/BlueStackLocation.git", :tag => "#{s.version}" }
1715
s.platform = :ios, '12.0'
1816
s.requires_arc = true
1917

MAdvertiseLocation.xcframework/Info.plist

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
<key>AvailableLibraries</key>
66
<array>
77
<dict>
8+
<key>BinaryPath</key>
9+
<string>MAdvertiseLocation.framework/MAdvertiseLocation</string>
810
<key>LibraryIdentifier</key>
911
<string>ios-arm64_x86_64-simulator</string>
1012
<key>LibraryPath</key>
@@ -20,6 +22,8 @@
2022
<string>simulator</string>
2123
</dict>
2224
<dict>
25+
<key>BinaryPath</key>
26+
<string>MAdvertiseLocation.framework/MAdvertiseLocation</string>
2327
<key>LibraryIdentifier</key>
2428
<string>ios-arm64</string>
2529
<key>LibraryPath</key>

MAdvertiseLocation.xcframework/ios-arm64/MAdvertiseLocation.framework/Headers/MAdvertiseLocation-Swift.h

+106-59
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#if 0
22
#elif defined(__arm64__) && __arm64__
3-
// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51)
3+
// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
44
#ifndef MADVERTISELOCATION_SWIFT_H
55
#define MADVERTISELOCATION_SWIFT_H
66
#pragma clang diagnostic push
@@ -23,7 +23,6 @@
2323
# include <swift/objc-prologue.h>
2424
#endif
2525

26-
#pragma clang diagnostic ignored "-Wduplicate-method-match"
2726
#pragma clang diagnostic ignored "-Wauto-import"
2827
#if defined(__OBJC__)
2928
#include <Foundation/Foundation.h>
@@ -32,10 +31,30 @@
3231
#include <cstdint>
3332
#include <cstddef>
3433
#include <cstdbool>
34+
#include <cstring>
35+
#include <stdlib.h>
36+
#include <new>
37+
#include <type_traits>
3538
#else
3639
#include <stdint.h>
3740
#include <stddef.h>
3841
#include <stdbool.h>
42+
#include <string.h>
43+
#endif
44+
#if defined(__cplusplus)
45+
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
46+
# include <ptrauth.h>
47+
#else
48+
#pragma clang diagnostic push
49+
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
50+
# ifndef __ptrauth_swift_value_witness_function_pointer
51+
# define __ptrauth_swift_value_witness_function_pointer(x)
52+
# endif
53+
# ifndef __ptrauth_swift_class_method_pointer
54+
# define __ptrauth_swift_class_method_pointer(x)
55+
# endif
56+
#pragma clang diagnostic pop
57+
#endif
3958
#endif
4059

4160
#if !defined(SWIFT_TYPEDEFS)
@@ -71,53 +90,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
7190
# if __has_feature(objc_class_property)
7291
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
7392
# else
74-
# define SWIFT_CLASS_PROPERTY(...)
93+
# define SWIFT_CLASS_PROPERTY(...)
7594
# endif
7695
#endif
77-
78-
#if __has_attribute(objc_runtime_name)
79-
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
80-
#else
81-
# define SWIFT_RUNTIME_NAME(X)
96+
#if !defined(SWIFT_RUNTIME_NAME)
97+
# if __has_attribute(objc_runtime_name)
98+
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
99+
# else
100+
# define SWIFT_RUNTIME_NAME(X)
101+
# endif
82102
#endif
83-
#if __has_attribute(swift_name)
84-
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
85-
#else
86-
# define SWIFT_COMPILE_NAME(X)
103+
#if !defined(SWIFT_COMPILE_NAME)
104+
# if __has_attribute(swift_name)
105+
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
106+
# else
107+
# define SWIFT_COMPILE_NAME(X)
108+
# endif
87109
#endif
88-
#if __has_attribute(objc_method_family)
89-
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
90-
#else
91-
# define SWIFT_METHOD_FAMILY(X)
110+
#if !defined(SWIFT_METHOD_FAMILY)
111+
# if __has_attribute(objc_method_family)
112+
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
113+
# else
114+
# define SWIFT_METHOD_FAMILY(X)
115+
# endif
92116
#endif
93-
#if __has_attribute(noescape)
94-
# define SWIFT_NOESCAPE __attribute__((noescape))
95-
#else
96-
# define SWIFT_NOESCAPE
117+
#if !defined(SWIFT_NOESCAPE)
118+
# if __has_attribute(noescape)
119+
# define SWIFT_NOESCAPE __attribute__((noescape))
120+
# else
121+
# define SWIFT_NOESCAPE
122+
# endif
97123
#endif
98-
#if __has_attribute(ns_consumed)
99-
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
100-
#else
101-
# define SWIFT_RELEASES_ARGUMENT
124+
#if !defined(SWIFT_RELEASES_ARGUMENT)
125+
# if __has_attribute(ns_consumed)
126+
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
127+
# else
128+
# define SWIFT_RELEASES_ARGUMENT
129+
# endif
102130
#endif
103-
#if __has_attribute(warn_unused_result)
104-
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
105-
#else
106-
# define SWIFT_WARN_UNUSED_RESULT
131+
#if !defined(SWIFT_WARN_UNUSED_RESULT)
132+
# if __has_attribute(warn_unused_result)
133+
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
134+
# else
135+
# define SWIFT_WARN_UNUSED_RESULT
136+
# endif
107137
#endif
108-
#if __has_attribute(noreturn)
109-
# define SWIFT_NORETURN __attribute__((noreturn))
110-
#else
111-
# define SWIFT_NORETURN
138+
#if !defined(SWIFT_NORETURN)
139+
# if __has_attribute(noreturn)
140+
# define SWIFT_NORETURN __attribute__((noreturn))
141+
# else
142+
# define SWIFT_NORETURN
143+
# endif
112144
#endif
113145
#if !defined(SWIFT_CLASS_EXTRA)
114-
# define SWIFT_CLASS_EXTRA
146+
# define SWIFT_CLASS_EXTRA
115147
#endif
116148
#if !defined(SWIFT_PROTOCOL_EXTRA)
117-
# define SWIFT_PROTOCOL_EXTRA
149+
# define SWIFT_PROTOCOL_EXTRA
118150
#endif
119151
#if !defined(SWIFT_ENUM_EXTRA)
120-
# define SWIFT_ENUM_EXTRA
152+
# define SWIFT_ENUM_EXTRA
121153
#endif
122154
#if !defined(SWIFT_CLASS)
123155
# if __has_attribute(objc_subclassing_restricted)
@@ -137,28 +169,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
137169
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
138170
# endif
139171
#endif
140-
141172
#if !defined(SWIFT_PROTOCOL)
142173
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
143174
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
144175
#endif
145-
146176
#if !defined(SWIFT_EXTENSION)
147177
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
148178
#endif
149-
150179
#if !defined(OBJC_DESIGNATED_INITIALIZER)
151180
# if __has_attribute(objc_designated_initializer)
152181
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
153182
# else
154-
# define OBJC_DESIGNATED_INITIALIZER
183+
# define OBJC_DESIGNATED_INITIALIZER
155184
# endif
156185
#endif
157186
#if !defined(SWIFT_ENUM_ATTR)
158-
# if defined(__has_attribute) && __has_attribute(enum_extensibility)
187+
# if __has_attribute(enum_extensibility)
159188
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
160189
# else
161-
# define SWIFT_ENUM_ATTR(_extensibility)
190+
# define SWIFT_ENUM_ATTR(_extensibility)
162191
# endif
163192
#endif
164193
#if !defined(SWIFT_ENUM)
@@ -187,14 +216,16 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
187216
#if !defined(SWIFT_DEPRECATED_MSG)
188217
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
189218
#endif
190-
#if __has_feature(attribute_diagnose_if_objc)
191-
# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
192-
#else
193-
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
219+
#if !defined(SWIFT_DEPRECATED_OBJC)
220+
# if __has_feature(attribute_diagnose_if_objc)
221+
# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
222+
# else
223+
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
224+
# endif
194225
#endif
195226
#if defined(__OBJC__)
196227
#if !defined(IBSegueAction)
197-
# define IBSegueAction
228+
# define IBSegueAction
198229
#endif
199230
#endif
200231
#if !defined(SWIFT_EXTERN)
@@ -207,26 +238,42 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
207238
#if !defined(SWIFT_CALL)
208239
# define SWIFT_CALL __attribute__((swiftcall))
209240
#endif
241+
#if !defined(SWIFT_INDIRECT_RESULT)
242+
# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result))
243+
#endif
244+
#if !defined(SWIFT_CONTEXT)
245+
# define SWIFT_CONTEXT __attribute__((swift_context))
246+
#endif
247+
#if !defined(SWIFT_ERROR_RESULT)
248+
# define SWIFT_ERROR_RESULT __attribute__((swift_error_result))
249+
#endif
210250
#if defined(__cplusplus)
211-
#if !defined(SWIFT_NOEXCEPT)
212251
# define SWIFT_NOEXCEPT noexcept
213-
#endif
214252
#else
215-
#if !defined(SWIFT_NOEXCEPT)
216253
# define SWIFT_NOEXCEPT
217254
#endif
255+
#if !defined(SWIFT_C_INLINE_THUNK)
256+
# if __has_attribute(always_inline)
257+
# if __has_attribute(nodebug)
258+
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
259+
# else
260+
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
261+
# endif
262+
# else
263+
# define SWIFT_C_INLINE_THUNK inline
264+
# endif
218265
#endif
219-
#if defined(__cplusplus)
220-
#if !defined(SWIFT_CXX_INT_DEFINED)
221-
#define SWIFT_CXX_INT_DEFINED
222-
namespace swift {
223-
using Int = ptrdiff_t;
224-
using UInt = size_t;
225-
}
266+
#if defined(_WIN32)
267+
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
268+
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
269+
#endif
270+
#else
271+
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
272+
# define SWIFT_IMPORT_STDLIB_SYMBOL
226273
#endif
227274
#endif
228275
#if defined(__OBJC__)
229-
#if __has_feature(modules)
276+
#if __has_feature(objc_modules)
230277
#if __has_warning("-Watimport-in-framework-header")
231278
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
232279
#endif
@@ -300,12 +347,12 @@ SWIFT_CLASS("_TtC18MAdvertiseLocation17MadvertiseBuilder")
300347
@end
301348

302349

303-
#endif
304-
#if defined(__cplusplus)
305350
#endif
306351
#if __has_attribute(external_source_symbol)
307352
# pragma clang attribute pop
308353
#endif
354+
#if defined(__cplusplus)
355+
#endif
309356
#pragma clang diagnostic pop
310357
#endif
311358

Binary file not shown.

0 commit comments

Comments
 (0)