Skip to content

Commit

Permalink
Release v0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
himshikhar-am authored Aug 19, 2024
1 parent 370102c commit cda620a
Show file tree
Hide file tree
Showing 170 changed files with 2,163 additions and 3,469 deletions.
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
Pods
Podfile.lock
.DS_Store
*.xcuserstate
*.xcbkptlist
Expand All @@ -12,6 +10,11 @@ PushEngage.xcworkspace/xcuserdata
PushEngage.xcworkspace/xcshared*.*
PushEngage.xcscmblueprint

PushEngageExample/PushEngageExample.xcworkspace
PushEngageExample/Podfile
PushEngageExample/Podfile.lock
PushEngageExample/Pods

# Build outputs directory
build/
DerivedData/
Expand Down
8 changes: 0 additions & 8 deletions NotificationContentExtensionObjcSample/File.swift

This file was deleted.

40 changes: 0 additions & 40 deletions NotificationContentExtensionObjcSample/Info.plist

This file was deleted.

17 changes: 17 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "PushEngage",
products: [
.library(
name: "PushEngage",
targets: ["PushEngage"]),
],
targets: [
.target(
name: "PushEngage", path: "Sources")
]
)
47 changes: 0 additions & 47 deletions Podfile

This file was deleted.

9 changes: 4 additions & 5 deletions PushEngage.podspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Pod::Spec.new do |spec|

spec.name = "PushEngage"
spec.version = "0.0.3"
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.version = "0.0.4"
spec.summary = "iOS framework to support APNs Services PushEngage."
spec.description = "Provide the feature for Apple push notification."
spec.homepage = "https://github.com/awesomemotive/pushengage-ios-sdk.git"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "PushEngage" => "care@pushengage.com" }
Expand All @@ -14,11 +14,10 @@ Pod::Spec.new do |spec|
:tag => "#{spec.version}"
}
spec.ios.framework = "UIKit"
spec.dependency 'SwiftLint'
#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}"
spec.source_files = "Sources/PushEngage/**/*.{swift}"
spec.swift_version = "5.0"
end

Loading

0 comments on commit cda620a

Please sign in to comment.