Skip to content

Commit

Permalink
Release 0.0.2 (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
himshikhar-am authored Nov 24, 2023
1 parent 2078bac commit 90ee51f
Show file tree
Hide file tree
Showing 112 changed files with 2,105 additions and 1,571 deletions.
9 changes: 9 additions & 0 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ disabled_rules:
- vertical_whitespace
- redundant_objc_attribute
- nesting
- large_tuple
- line_length
- vertical_parameter_alignment
- void_function_in_ternary
- for_where
- function_body_length
- comma
- blanket_disable_command
- colon
excluded:
- Carthage
- Pods
Expand Down
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 PushEngage

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
28 changes: 7 additions & 21 deletions Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,12 @@ target 'PushEngage' do
pod 'SwiftLint'

target 'PushEngageTests' do
# uncomment this line to use the local SDK dependency and comment out next line
# pod 'PushEngage', :path => "<>/pushengage-ios-sdk"
pod 'PushEngage'
pod 'PushEngage', :path => "../pushengage-ios-sdk-internal"
end
end

target 'PushNotificationDemo' do
# uncomment this line to use the local SDK dependency and comment out next line
# pod 'PushEngage', :path => "<>/pushengage-ios-sdk"
pod 'PushEngage'
pod 'PushEngage', :path => "../pushengage-ios-sdk-internal"

post_install do |installer|
installer.pods_project.targets.each do |target|
Expand All @@ -28,33 +24,23 @@ target 'PushNotificationDemo' do
end

target 'PushEngageNotificationExtension' do
# uncomment this line to use the local SDK dependency and comment out next line
# pod 'PushEngage', :path => "<>/pushengage-ios-sdk"
pod 'PushEngage'
pod 'PushEngage', :path => "../pushengage-ios-sdk-internal"
end

target 'PushEngageNotificationContentExtenstion' do
# uncomment this line to use the local SDK dependency and comment out next line
# pod 'PushEngage', :path => "<>/pushengage-ios-sdk"
pod 'PushEngage'
pod 'PushEngage', :path => "../pushengage-ios-sdk-internal"
end
end

target 'PushNotificationObjcSample' do
# uncomment this line to use the local SDK dependency and comment out next line
# pod 'PushEngage', :path => "<>/pushengage-ios-sdk"
pod 'PushEngage'
pod 'PushEngage', :path => "../pushengage-ios-sdk-internal"

target 'PushEngageObjcNotificationExtension' do
# uncomment this line to use the local SDK dependency and comment out next line
# pod 'PushEngage', :path => "<>/pushengage-ios-sdk"
pod 'PushEngage'
pod 'PushEngage', :path => "../pushengage-ios-sdk-internal"
end

target 'NotificationContentExtensionObjcSample' do
# uncomment this line to use the local SDK dependency and comment out next line
# pod 'PushEngage', :path => "<>/pushengage-ios-sdk"
pod 'PushEngage'
pod 'PushEngage', :path => "../pushengage-ios-sdk-internal"
end
end

Expand Down
14 changes: 6 additions & 8 deletions PushEngage.podspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
Pod::Spec.new do |spec|

spec.name = "PushEngage"
spec.version = "0.0.1"
spec.summary = "iOS Framework which provides easy way to start with Push
notification in you native iOS Applications."
spec.description = "To make your users interact your application even they are not using you application. Push Notifications plays most important role
our product will make this very easy for you to integrate with you new or existing applications."
spec.homepage = "https://github.com/awesomemotive/pushengage-ios-sdk"
spec.version = "0.0.2"
spec.summary = "iOS Framework which provides easy way to start with Push notification in your native iOS Applications."
spec.description = "To make your users interact with your application even when they are not using your application, push notifications plays the most important role and our product will make this very easy for you to integrate with your applications."
spec.homepage = "https://github.com/awesomemotive/pushengage-ios-sdk.git"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "PushEngage" => "care@pushengage.com" }
spec.author = { "PushEngage" => "care@pushengage.com" }
spec.platform = :ios
spec.ios.deployment_target = '9.0'
spec.requires_arc = true
Expand All @@ -17,7 +15,7 @@ Pod::Spec.new do |spec|
}
spec.ios.framework = "UIKit"
spec.dependency 'SwiftLint'
# spec.vendored_frameworks = "Framework/PushEngage.framework"
#spec.vendored_frameworks = "Framework/PushEngage.framework"
spec.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
spec.source_files = "PushEngage/**/*.{swift}"
Expand Down
Loading

0 comments on commit 90ee51f

Please sign in to comment.