Skip to content

Commit 725d2b6

Browse files
authored
Release 6.14.0 (#94)
1 parent 9d30060 commit 725d2b6

File tree

7 files changed

+29
-19
lines changed

7 files changed

+29
-19
lines changed

RELEASENOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 6.14.0
2+
* Update Android SDK to v6.14.0
3+
* Updated Huawei Referrer integration. [Learn more](https://dev.appsflyer.com/hc/docs/install-android-sdk#huawei-install-referrer).
4+
15
### 6.13.0
26
* Update Android SDK to v6.13.0
37
* Added support for Google's new EU consent policy

Readme.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ You can track installs, updates and sessions and also track additional in-app ev
2121

2222
---
2323

24-
Built with AppsFlyer Android SDK `v6.13.0`
24+
Built with AppsFlyer Android SDK `v6.14.0`
2525

2626
## Table of content
2727

@@ -97,7 +97,7 @@ And to start the AppsFlyer SDK, use `void startAppsFlyer(Context context)` API.
9797

9898
Add the AppsFlyer Segment Integration dependency to your app `build.gradle` file.
9999
```java
100-
implementation 'com.appsflyer:segment-android-integration:6.13.0'
100+
implementation 'com.appsflyer:segment-android-integration:6.14.0'
101101
implementation 'com.android.installreferrer:installreferrer:2.1'
102102
```
103103

@@ -116,6 +116,8 @@ to allow the SDK to collect the Android Advertising ID on apps targeting API 33.
116116
If your app is targeting children, you may need to revoke this permission to comply with Google's Data policy.
117117
You can read more about it [here](https://support.appsflyer.com/hc/en-us/articles/7569900844689).
118118

119+
Starting from **6.14.0** Huawei Referrer integration was updated. [Learn more](https://dev.appsflyer.com/hc/docs/install-android-sdk#huawei-install-referrer).
120+
119121
### <a id="sdk_init"> 2.2) Init AppsFlyer
120122

121123
```java

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 32
4+
compileSdkVersion 33
55

66
defaultConfig {
7-
minSdkVersion 14
8-
targetSdkVersion 32
7+
minSdkVersion 19
8+
targetSdkVersion 33
99
versionCode 1
1010
versionName "1.0"
1111
testApplicationId "com.example.test"
@@ -39,7 +39,7 @@ android {
3939

4040
dependencies {
4141
testImplementation 'androidx.test.ext:junit:1.1.5'
42-
api 'com.appsflyer:af-android-sdk:6.13.0'
42+
api 'com.appsflyer:af-android-sdk:6.14.0'
4343
compileOnly 'com.android.installreferrer:installreferrer:2.1'
4444
compileOnly 'com.segment.analytics.android:analytics:4.+'
4545
testImplementation 'androidx.test:core:1.4.0'

app/src/main/java/com/segment/analytics/android/integrations/appsflyer/AppsflyerIntegration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public Integration<AppsFlyerLib> create(ValueMap settings, Analytics analytics)
9898
listener = new ConversionListener(analytics);
9999
}
100100

101-
AppsFlyerLib.getInstance().setPluginInfo(new PluginInfo(Plugin.SEGMENT,"6.13.0"));
101+
AppsFlyerLib.getInstance().setPluginInfo(new PluginInfo(Plugin.SEGMENT,"6.14.0"));
102102
afLib.setDebugLog(logger.logLevel != Analytics.LogLevel.NONE);
103103
afLib.init(devKey, listener, application.getApplicationContext());
104104
if (deepLinkListener != null)

gradle.properties

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

2020
GROUP=com.appsflyer
2121

22-
VERSION_CODE=15
23-
VERSION_NAME=6.13.0
22+
VERSION_CODE=16
23+
VERSION_NAME=6.14.0
2424
POM_ARTIFACT_ID=segment-android-integration
2525
POM_PACKAGING=aar
2626

segmenttestapp/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ apply plugin: 'com.android.application'
22

33

44
android {
5-
compileSdkVersion 28
5+
compileSdkVersion 33
66

77
defaultConfig {
88
applicationId "com.appsflyer.segment.app"
9-
minSdkVersion 14
10-
targetSdkVersion 26
9+
minSdkVersion 19
10+
targetSdkVersion 33
1111
versionCode 1
1212
versionName "1.0"
1313
}
@@ -27,7 +27,7 @@ dependencies {
2727
implementation project(path: ':app')
2828
testImplementation 'junit:junit:4.12'
2929
implementation 'com.android.support:appcompat-v7:28.0.0'
30-
implementation 'com.appsflyer:af-android-sdk:6.13.0'
30+
implementation 'com.appsflyer:af-android-sdk:6.14.0'
3131
implementation 'com.segment.analytics.android:analytics:4.+'
3232
implementation 'com.android.installreferrer:installreferrer:2.1'
3333
}

segmenttestapp/src/main/AndroidManifest.xml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,30 @@
66
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
77

88
<application
9+
android:name="com.appsflyer.segment.app.SampleApplication"
910
android:allowBackup="true"
1011
android:icon="@mipmap/ic_launcher"
1112
android:label="@string/app_name"
1213
android:supportsRtl="true"
13-
android:theme="@style/AppTheme"
14-
android:name="com.appsflyer.segment.app.SampleApplication"
15-
>
14+
android:theme="@style/AppTheme">
1615

17-
<activity android:name="com.appsflyer.segment.app.MainActivity">
16+
<activity
17+
android:name="com.appsflyer.segment.app.MainActivity"
18+
android:exported="true">
1819
<intent-filter>
1920
<action android:name="android.intent.action.MAIN" />
20-
2121
<category android:name="android.intent.category.LAUNCHER" />
2222
</intent-filter>
2323

2424
<intent-filter>
2525
<action android:name="android.intent.action.VIEW" />
26+
2627
<category android:name="android.intent.category.DEFAULT" />
2728
<category android:name="android.intent.category.BROWSABLE" />
28-
<data android:host="segment.onelink.me" android:scheme="https"/>
29+
30+
<data
31+
android:host="segment.onelink.me"
32+
android:scheme="https" />
2933
</intent-filter>
3034
</activity>
3135

0 commit comments

Comments
 (0)