-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOlaMaps.podspec
31 lines (25 loc) · 1.67 KB
/
OlaMaps.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Pod::Spec.new do |s|
s.name = 'OlaMaps'
s.version = '1.0.0'
s.summary = 'Ola Maps Pods for iOS enables easy integration of interactive maps with custom markers and location tools for iOS apps.'
s.description = <<-DESC
The Ola Maps Pods simplifies the process of adding advanced mapping capabilities to your iOS app. Delivered as an easy-to-integrate .xcframework, it provides features like map rendering, location services, and customizable map elements such as markers and overlays. With tools like current location buttons and zoom controls, the SDK enables developers to build rich, location-based experiences. Ideal for ride-hailing, logistics, or any location-focused app, the Ola Maps SDK is designed for fast integration and performance.
DESC
s.homepage = 'https://github.com/wadhia-yash/ola-maps-pods'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Yash Wadhia' => '[email protected]' }
s.source = { :git => 'https://github.com/wadhia-yash/ola-maps-pods.git', :tag => 'v1.0.0-alpha' }
s.ios.deployment_target = '11.0'
# Add all xcframeworks to be included
s.ios.vendored_frameworks = [
'Frameworks/MapLibre.xcframework',
'Frameworks/MoEngageAnalytics.xcframework',
'Frameworks/MoEngageCore.xcframework',
'Frameworks/MoEngageMessaging.xcframework',
'Frameworks/MoEngageObjCUtils.xcframework',
'Frameworks/MoEngageSDK.xcframework',
'Frameworks/MoEngageSecurity.xcframework',
'Frameworks/OlaMapCore.xcframework'
]
s.requires_arc = true
end