Skip to content

Commit de557b7

Browse files
authored
Merge pull request #261 from qonversion/release/8.1.2
Release 8.1.2
2 parents 0f1ef22 + 06a6250 commit de557b7

File tree

7 files changed

+83
-4
lines changed

7 files changed

+83
-4
lines changed

.gitignore

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# This .gitignore file should be placed at the root of your Unity project directory
2+
#
3+
# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
4+
#
5+
/[Ll]ibrary/
6+
/[Tt]emp/
7+
/[Oo]bj/
8+
/[Bb]uild/
9+
/[Bb]uilds/
10+
/[Ll]ogs/
11+
/[Uu]ser[Ss]ettings/
12+
13+
# MemoryCaptures can get excessive in size.
14+
# They also could contain extremely sensitive data
15+
/[Mm]emoryCaptures/
16+
17+
# Recordings can get excessive in size
18+
/[Rr]ecordings/
19+
20+
# Uncomment this line if you wish to ignore the asset store tools plugin
21+
# /[Aa]ssets/AssetStoreTools*
22+
23+
# Autogenerated Jetbrains Rider plugin
24+
/[Aa]ssets/Plugins/Editor/JetBrains*
25+
26+
# Visual Studio cache directory
27+
.vs/
28+
29+
# Gradle cache directory
30+
.gradle/
31+
32+
# Autogenerated VS/MD/Consulo solution and project files
33+
ExportedObj/
34+
.consulo/
35+
*.csproj
36+
*.unityproj
37+
*.sln
38+
*.suo
39+
*.tmp
40+
*.user
41+
*.userprefs
42+
*.pidb
43+
*.booproj
44+
*.svd
45+
*.pdb
46+
*.mdb
47+
*.opendb
48+
*.VC.db
49+
.idea
50+
51+
# Unity3D generated meta files
52+
*.pidb.meta
53+
*.pdb.meta
54+
*.mdb.meta
55+
56+
# Unity3D generated file on crash reports
57+
sysinfo.txt
58+
59+
# Builds
60+
*.apk
61+
*.aab
62+
*.unitypackage
63+
*.app
64+
65+
# Crashlytics generated file
66+
crashlytics-build.properties
67+
68+
# Packed Addressables
69+
/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin*
70+
71+
# Temporary auto-generated Android Assets
72+
/[Aa]ssets/[Ss]treamingAssets/aa.meta
73+
/[Aa]ssets/[Ss]treamingAssets/aa/*

Editor/QonversionDependencies.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<dependencies>
33
<androidPackages>
4-
<androidPackage spec="io.qonversion.sandwich:sandwich:5.1.4" />
4+
<androidPackage spec="io.qonversion.sandwich:sandwich:5.1.6" />
55
<androidPackage spec="com.fasterxml.jackson.core:jackson-databind:2.11.1" />
66
<androidPackage spec="org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.61" />
77
</androidPackages>
88
<iosPods>
9-
<iosPod name="QonversionSandwich" version="5.1.4" />
9+
<iosPod name="QonversionSandwich" version="5.1.6" />
1010
</iosPods>
1111
</dependencies>

Runtime/Scripts/Dto/UserProperty.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ private UserPropertyKey ConvertUserPropertyKey(string stringKey)
6464
return UserPropertyKey.PushWooshHwId;
6565
case "_q_pushwoosh_user_id":
6666
return UserPropertyKey.PushWooshUserId;
67+
case "_q_tenjin_aiid":
68+
return UserPropertyKey.TenjinAnalyticsInstallationId;
6769
}
6870

6971
return UserPropertyKey.Custom;

Runtime/Scripts/Dto/UserPropertyKey.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ public enum UserPropertyKey
1616
AppMetricaUserProfileId,
1717
PushWooshHwId,
1818
PushWooshUserId,
19+
TenjinAnalyticsInstallationId,
1920
Custom,
2021
}
2122
}

Runtime/Scripts/IAutomations.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@ public interface IAutomations
1515
/// <summary>
1616
/// Set push token to Qonversion to enable Qonversion push notifications
1717
/// </summary>
18+
/// <deprecated>Consider removing this method calls. Qonversion is not working with push notifications anymore.</deprecated>
1819
/// <param name="token">Firebase device token for Android. APNs device token for iOS.</param>
1920
public void SetNotificationsToken(string token);
2021

2122
/// <summary>
2223
/// Call to handle push notifications sent by Qonversion Automations.
2324
/// </summary>
25+
/// <deprecated>Consider removing this method calls. Qonversion is not working with push notifications anymore.</deprecated>
2426
/// <param name="notification">notification payload data</param>
2527
/// <returns>true when a push notification was received from Qonversion. Otherwise, returns false, so you need to handle the notification yourself</returns>
2628
/// <see href="https://pub.dev/documentation/firebase_messaging_platform_interface/latest/firebase_messaging_platform_interface/RemoteMessage/data.html">Firebase RemoteMessage data</see>
@@ -30,6 +32,7 @@ public interface IAutomations
3032
/// <summary>
3133
/// Get parsed custom payload, which you added to the notification in the dashboard
3234
/// </summary>
35+
/// <deprecated>Consider removing this method calls. Qonversion is not working with push notifications anymore.</deprecated>
3336
/// <param name="notification">notification payload data</param>
3437
/// <returns>a map with custom payload from the notification or null if it's not provided</returns>
3538
[CanBeNull]

Runtime/Scripts/Internal/QonversionInternal.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ internal class QonversionInternal : MonoBehaviour, IQonversion
2727
private const string OnDetachUserMethodName = "OnDetachUser";
2828
private const string OnIsFallbackFileAccessibleMethodName = "OnIsFallbackFileAccessible";
2929

30-
private const string SdkVersion = "8.1.1";
30+
private const string SdkVersion = "8.1.2";
3131
private const string SdkSource = "unity";
3232

3333
private const string DefaultRemoteConfigContextKey = "";

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.qonversion.unity",
33
"displayName": "Qonversion",
4-
"version": "8.1.1",
4+
"version": "8.1.2",
55
"unity": "2018.3",
66
"description": "Empower your mobile app marketing and product decisions with precise subscription data.",
77
"author": {

0 commit comments

Comments
 (0)