expo-task-manager 11.7.1 → 11.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/android/build.gradle +2 -2
- package/ios/EXTaskManager/EXTaskService.m +1 -0
- package/ios/EXTaskManager.podspec +2 -0
- package/ios/PrivacyInfo.xcprivacy +24 -0
- package/package.json +2 -2
- package/expo-task-manager-0.0.1-canary-20231129-c0ec023.tgz +0 -0
- package/expo-task-manager-0.0.1-canary-20231130-c8a9bf9.tgz +0 -0
- package/expo-task-manager-0.0.1-canary-20231130-ede75a7.tgz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,18 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 11.7.3 — 2024-04-15
|
|
14
|
+
|
|
15
|
+
### 💡 Others
|
|
16
|
+
|
|
17
|
+
- [iOS] Add privacy manifest describing required reason API usage. ([#27770](https://github.com/expo/expo/pull/27770) by [@aleqsio](https://github.com/aleqsio))
|
|
18
|
+
|
|
19
|
+
## 11.7.2 — 2024-01-26
|
|
20
|
+
|
|
21
|
+
### 🐛 Bug fixes
|
|
22
|
+
|
|
23
|
+
- On `Android`, added events to module definition to clear warnings. ([#26654](https://github.com/expo/expo/pull/26654) by [@alanjhughes](https://github.com/alanjhughes))
|
|
24
|
+
|
|
13
25
|
## 11.7.1 — 2024-01-25
|
|
14
26
|
|
|
15
27
|
### 🐛 Bug fixes
|
package/android/build.gradle
CHANGED
|
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
|
|
|
3
3
|
apply plugin: 'maven-publish'
|
|
4
4
|
|
|
5
5
|
group = 'host.exp.exponent'
|
|
6
|
-
version = '11.7.
|
|
6
|
+
version = '11.7.3'
|
|
7
7
|
|
|
8
8
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
9
9
|
if (expoModulesCorePlugin.exists()) {
|
|
@@ -94,7 +94,7 @@ android {
|
|
|
94
94
|
namespace "expo.modules.taskManager"
|
|
95
95
|
defaultConfig {
|
|
96
96
|
versionCode 23
|
|
97
|
-
versionName "11.7.
|
|
97
|
+
versionName "11.7.3"
|
|
98
98
|
}
|
|
99
99
|
}
|
|
100
100
|
|
|
@@ -451,6 +451,7 @@ EX_REGISTER_SINGLETON_MODULE(TaskService)
|
|
|
451
451
|
*/
|
|
452
452
|
- (void)_saveConfigWithDictionary:(nonnull NSDictionary *)dict
|
|
453
453
|
{
|
|
454
|
+
// Uses required reason API based on the following reason: CA92.1
|
|
454
455
|
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
|
|
455
456
|
[userDefaults setObject:dict forKey:NSStringFromClass([self class])];
|
|
456
457
|
[userDefaults synchronize];
|
|
@@ -17,6 +17,8 @@ Pod::Spec.new do |s|
|
|
|
17
17
|
s.dependency 'ExpoModulesCore'
|
|
18
18
|
s.dependency 'UMAppLoader'
|
|
19
19
|
|
|
20
|
+
s.resource_bundles = {'ExpoTaskManager_privacy' => ['PrivacyInfo.xcprivacy']}
|
|
21
|
+
|
|
20
22
|
if !$ExpoUseSources&.include?(package['name']) && ENV['EXPO_USE_SOURCE'].to_i == 0 && File.exist?("#{s.name}.xcframework") && Gem::Version.new(Pod::VERSION) >= Gem::Version.new('1.10.0')
|
|
21
23
|
s.source_files = "#{s.name}/**/*.h"
|
|
22
24
|
s.vendored_frameworks = "#{s.name}.xcframework"
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>NSPrivacyCollectedDataTypes</key>
|
|
6
|
+
<array>
|
|
7
|
+
</array>
|
|
8
|
+
<key>NSPrivacyTracking</key>
|
|
9
|
+
<false/>
|
|
10
|
+
<key>NSPrivacyTrackingDomains</key>
|
|
11
|
+
<array/>
|
|
12
|
+
<key>NSPrivacyAccessedAPITypes</key>
|
|
13
|
+
<array>
|
|
14
|
+
<dict>
|
|
15
|
+
<key>NSPrivacyAccessedAPIType</key>
|
|
16
|
+
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
|
|
17
|
+
<key>NSPrivacyAccessedAPITypeReasons</key>
|
|
18
|
+
<array>
|
|
19
|
+
<string>CA92.1</string>
|
|
20
|
+
</array>
|
|
21
|
+
</dict>
|
|
22
|
+
</array>
|
|
23
|
+
</dict>
|
|
24
|
+
</plist>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-task-manager",
|
|
3
|
-
"version": "11.7.
|
|
3
|
+
"version": "11.7.3",
|
|
4
4
|
"description": "Expo module that provides support for tasks that can run in the background.",
|
|
5
5
|
"main": "build/TaskManager.js",
|
|
6
6
|
"types": "build/TaskManager.d.ts",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"expo": "*"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "88a8226609b870c0635c39da43ac8306c4dc7031"
|
|
45
45
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|