Skip to content

Commit 90fb99e

Browse files
authored
Merge pull request #1742 from numbersprotocol/fix-temporarely-disable-apps-flyer-at-app-launch
Fix temporarely disable apps flyer at app launch
2 parents 122abe2 + 793772d commit 90fb99e

File tree

6 files changed

+16
-8
lines changed

6 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.59.5 - 2022-06-28
9+
10+
### Changed
11+
12+
- Temporarely disabled Apps Flyer SDK
13+
814
## 0.59.4 - 2022-06-28
915

1016
### Fixed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ android {
66
applicationId "io.numbersprotocol.capturelite"
77
minSdkVersion rootProject.ext.minSdkVersion
88
targetSdkVersion rootProject.ext.targetSdkVersion
9-
versionCode 414
10-
versionName "0.59.4"
9+
versionCode 415
10+
versionName "0.59.5"
1111
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1212
}
1313
buildFeatures {

ios/App/App/Info.plist

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@
8686
</array>
8787
<key>UIViewControllerBasedStatusBarAppearance</key>
8888
<true/>
89-
<key>NSUserTrackingUsageDescription</key>
90-
<string>We collect your data only for counting download numbers and will never share it with any 3rd party</string>
89+
<!-- Uncomment in next release after fixing Apps Flyer -->
90+
<!-- <key>NSUserTrackingUsageDescription</key>-->
91+
<!-- <string>We collect your data only for counting download numbers and will never share it with any 3rd party</string>-->
9192
</dict>
9293
</plist>

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "capture-lite",
3-
"version": "0.59.4",
3+
"version": "0.59.5",
44
"author": "numbersprotocol",
55
"homepage": "https://numbersprotocol.io/",
66
"scripts": {

src/app/app.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ export class AppComponent {
6060
this.restoreAppState();
6161
this.initializeCollector();
6262
this.registerIcon();
63-
appsFlyerService.initAppsFlyerSDK();
63+
// Uncomment in next release after fixing Apps Flyer
64+
// appsFlyerService.initAppsFlyerSDK();
6465
}
6566

6667
static setDarkMode() {

0 commit comments

Comments
 (0)