Skip to content

Commit 8a8ce15

Browse files
Merge pull request #21 from qonversion/develop
QON - 1.0.1 - fix AttributionSource appsflyer
2 parents d49c0f5 + 86d0ac3 commit 8a8ce15

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The latest release is available on [Bintray](https://dl.bintray.com/artemyglukho
1414
```kotlin
1515
dependencies {
1616
...
17-
implementation "com.qonversion.android.sdk:sdk:1.0.0"
17+
implementation "com.qonversion.android.sdk:sdk:1.0.1"
1818
...
1919
}
2020
```
@@ -299,7 +299,7 @@ for passing the attribution data dictionary:
299299
public void onConversionDataSuccess(final Map<String, Object> conversionData) {
300300
Qonversion.getInstance().attribution(
301301
conversionData,
302-
AttributionSource.APPS_FLYER,
302+
AttributionSource.APPSFLYER,
303303
AppsFlyerLib.getInstance().getAppsFlyerUID(this)
304304
);
305305
}
@@ -310,7 +310,7 @@ for passing the attribution data dictionary:
310310
override fun onConversionDataSuccess(conversionData: Map<String, Any>) {
311311
Qonversion.instance?.attribution(
312312
conversionData,
313-
AttributionSource.APPS_FLYER,
313+
AttributionSource.APPSFLYER,
314314
AppsFlyerLib.getInstance().getAppsFlyerUID(applicationContext)
315315
)
316316
}

app/src/main/java/com/qonversion/android/app/App.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void onError(@NotNull Throwable t) {
4747

4848
@Override
4949
public void onConversionDataSuccess(final Map<String, Object> conversionData) {
50-
Qonversion.getInstance().attribution(conversionData, AttributionSource.APPS_FLYER, AppsFlyerLib.getInstance().getAppsFlyerUID(App.this));
50+
Qonversion.getInstance().attribution(conversionData, AttributionSource.APPSFLYER, AppsFlyerLib.getInstance().getAppsFlyerUID(App.this));
5151
}
5252

5353
@Override

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ android.enableJetifier=true
2020
# Kotlin code style for this project: "official" or "obsolete":
2121
kotlin.code.style=official
2222

23-
libraryVersion = 1.0.0
23+
libraryVersion = 1.0.1
2424

sdk/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ android {
1919

2020
consumerProguardFiles 'consumer-rules.pro'
2121
group = 'com.qonversion.android.sdk'
22-
version = '1.0.0'
22+
version = '1.0.1'
2323
}
2424

2525
buildTypes {
@@ -40,7 +40,7 @@ ext {
4040

4141
PUBLISH_GROUP_ID = 'com.qonversion.android.sdk'
4242
PUBLISH_ARTIFACT_ID = 'sdk'
43-
PUBLISH_VERSION = '1.0.0'
43+
PUBLISH_VERSION = '1.0.1'
4444

4545
kotlinVersion = '1.3.61'
4646
moshiVersion = '1.9.2'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package com.qonversion.android.sdk
22

33
enum class AttributionSource(val id: String) {
4-
APPS_FLYER("appsflyer")
4+
APPSFLYER("appsflyer")
55
}

sdk/src/main/java/com/qonversion/android/sdk/Qonversion.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Qonversion private constructor(
3030

3131
companion object {
3232

33-
private const val SDK_VERSION = "1.0.0"
33+
private const val SDK_VERSION = "1.0.1"
3434

3535
@JvmStatic
3636
@Volatile

0 commit comments

Comments
 (0)