-
Notifications
You must be signed in to change notification settings - Fork 3
MOEN-41800: Added no-code SDK file based initialization #93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,9 @@ | ||
| # Release Date | ||
|
|
||
| ## Release Version | ||
|
|
||
| - [minor] Added no-code SDK file based initialization | ||
|
|
||
| # 18-11-2025 | ||
|
|
||
| ## 6.7.0 | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -41,6 +41,13 @@ Pod::Spec.new do |s| | |||||||||||||||||||||
| s.dependency 'MoEngage-iOS-SDK', config.sdkVerMin | ||||||||||||||||||||||
| s.dependency 'MoEngage-iOS-SDK/InApps' | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| version_file = "Sources/#{s.name}/MoEngagePluginConstants+Version.swift" | ||||||||||||||||||||||
| s.prepare_command = <<-CMD | ||||||||||||||||||||||
| echo "// Generated file, do not edit\n" > #{version_file} | ||||||||||||||||||||||
| echo "import Foundation\n" >> #{version_file} | ||||||||||||||||||||||
| echo "extension MoEngagePluginConstants {\n static let version = \\"#{s.version}\\"\n}" >> #{version_file} | ||||||||||||||||||||||
|
Comment on lines
+46
to
+48
|
||||||||||||||||||||||
| echo "// Generated file, do not edit\n" > #{version_file} | |
| echo "import Foundation\n" >> #{version_file} | |
| echo "extension MoEngagePluginConstants {\n static let version = \\"#{s.version}\\"\n}" >> #{version_file} | |
| cat <<EOF > #{version_file} | |
| // Generated file, do not edit | |
| import Foundation | |
| extension MoEngagePluginConstants { | |
| static let version = "#{s.version}" | |
| } | |
| EOF |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| // Generated file, do not edit | ||
|
|
||
| import Foundation | ||
|
|
||
| extension MoEngagePluginConstants { | ||
| static let version = "6.7.0" | ||
| } | ||
msoumya-engg-sdk marked this conversation as resolved.
Show resolved
Hide resolved
|
||
Uh oh!
There was an error while loading. Please reload this page.