Resourcer 0.1.0.3

Resourcer 0.1.0.3

Maintained by RYRA Circuit.



Resourcer 0.1.0.3

  • By
  • RYRA Circuit

Resourcer

This is communication based library with several types of communication, maps, file/media service, iOS share sheet supports

Requirements

  • iOS 11.0+
  • Xcode 10+

Installation

Cocoapods

pod 'Resourcer'

Add below codes (Required items) into info.plist before using Media picker or/and audio recording services

<key>NSCameraUsageDescription</key>
<string>Take camera photos for sending media</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>Take camera photos for sending media</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>Please allow access to save media in your photo library</string>
<key>NSMicrophoneUsageDescription</key>
<string>Please allow access to record audio for media sending</string>

Add below codes (Required items) into info.plist before using Location services

<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>App needs to detect your location for sending location</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>App needs to detect your location for sending location</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>App needs to detect your location for sending location</string>
<key>NSLocationUsageDescription</key>
<string>App needs to detect your location for sending location</string>

Add below code into info.plist before using Google Maps directions

<key>LSApplicationQueriesSchemes</key>
<array>
    <string>comgooglemaps</string>
    <string>comgooglemaps-x-callback</string>
</array>

Add below code into info.plist before using Documents services

<key>UIFileSharingEnabled</key>
    <true/>
<key>LSSupportsOpeningDocumentsInPlace</key>
    <true/>