Skip to content

Commit

Permalink
Merge pull request #23 from Tealium/mt-1183-6.10
Browse files Browse the repository at this point in the history
Mt 1183 6.10
  • Loading branch information
jameskeith authored Feb 14, 2023
2 parents 79f341b + 6935d45 commit c6fafe7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions appsflyer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ afterEvaluate {
// credentials(AwsCredentials) {
// accessKey AWS_ACCESS_KEY
// secretKey AWS_SECRET_KEY
// sessionToken AWS_SESSION_TOKEN
// }
// }
// }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ class AppsFlyerInstance(
}

override fun setHost(host: String, hostPrefix: String?) {
AppsFlyerLib.getInstance().setHost(host, hostPrefix)
hostPrefix?.let { prefix -> // prefix @NonNull from v6.10+
AppsFlyerLib.getInstance().setHost(host, prefix)
}
}

override fun setUserEmails(emails: List<String>) {
Expand Down

0 comments on commit c6fafe7

Please sign in to comment.