Skip to content

Commit

Permalink
Merge branch 'PrivacyInfo'
Browse files Browse the repository at this point in the history
  • Loading branch information
christocracy committed Apr 8, 2024
2 parents 218724a + ebf2a46 commit 248c0be
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

## [7.2.2] — 2024-04-08
## [7.2.3] — 2024-04-08
* [iOS] Implement new [iOS Privacy Manifest](https://developer.apple.com/documentation/bundleresources/privacy_manifest_files?language=objc)
* [iOS] codesign `TSBackgroundFetch.xcframework`
* [iOS] Only allow registration of `BGProcessingTasks` (*Permitted background task scheduler identifiers*) in `Info.plist` which are prefixed with `com.transistorsoft`. Any other task identifier will be ignored.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-background-fetch",
"version": "7.2.2",
"version": "7.2.3",
"description": "A plugin to periodically awaken your app in the background every 15 minutes to perform some work.",
"main": "./src/typescript/index.js",
"types": "./src/typescript/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-background-fetch"
version="7.2.2">
version="7.2.3">
<name>CDVBackgroundFetch</name>
<description>Cordova Background Fetch Plugin</description>
<license>MIT</license>
Expand Down
1 change: 1 addition & 0 deletions src/ios/CDVBackgroundFetch.m
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ -(void) scheduleTask:(CDVInvokedUrlCommand *)command {


NSError *error = [[TSBackgroundFetch sharedInstance] scheduleProcessingTaskWithIdentifier:taskId
type: 0
delay:delay
periodic:periodic
requiresExternalPower:requiresCharging
Expand Down

0 comments on commit 248c0be

Please sign in to comment.