Skip to content

Commit

Permalink
6.3.50
Browse files Browse the repository at this point in the history
Releases/6.x.x/6.3.x/6.3.50
  • Loading branch information
amit-kremer93 committed Aug 24, 2021
2 parents 0f819ea + d117ffd commit 715d73e
Show file tree
Hide file tree
Showing 15 changed files with 60 additions and 702 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 6.3.50
- iOS SDK 6.3.5
- `setCurrentDeviceLanguage` api for iOS

## 6.3.20
### *Bug*
- RN Android >> Exception in UDL callback parsing
Expand Down
19 changes: 19 additions & 0 deletions Docs/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
- [setHost](#setHost)
- [addPushNotificationDeepLinkPath](#addPushNotificationDeepLinkPath)
- [disableSKAD](#disableSKAD)
- [setCurrentDeviceLanguage](#setCurrentDeviceLanguage)

---

Expand Down Expand Up @@ -877,3 +878,21 @@ if (Platform.OS == 'ios') {
appsFlyer.disableSKAD(true);
}
```
##### <a id="setCurrentDeviceLanguage"> **`setCurrentDeviceLanguage(language)`**
Set the language of the device. The data will be displayed in Raw Data Reports<br>
If you want to clear this property, set an empty string. ("")
| parameter | type | description |
| ----------|----------|------------------|
| language | string | language of the device |
*Example:*
```javascript
if (Platform.OS == 'ios') {
appsFlyer.setCurrentDeviceLanguage("EN");
}
```
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

<img src="https://www.appsflyer.com/wp-content/uploads/2016/11/logo-1.svg" width="450">
<img src="https://raw.githubusercontent.com/AppsFlyerSDK/appsflyer-capacitor-plugin/main/assets/AFLogo_primary.png" width="450">

# React Native AppsFlyer plugin for Android and iOS.

Expand All @@ -21,7 +21,7 @@

### <a id="plugin-build-for"> This plugin is built for

- iOS AppsFlyerSDK **v6.3.2**
- iOS AppsFlyerSDK **v6.3.5**
- Android AppsFlyerSDK **v6.3.2**

## <a id="breaking-changes"> ❗ Breaking Changes
Expand Down
16 changes: 0 additions & 16 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,4 @@ dependencies {
implementation "com.facebook.react:react-native:${safeExtGet('reactNativeVersion', '+')}"
implementation "com.android.installreferrer:installreferrer:${safeExtGet('installReferrerVersion', '2.1')}"
implementation "com.appsflyer:af-android-sdk:${safeExtGet('appsflyerVersion', '6.3.2')}"
//-----
// Required -- JUnit 4 framework
testImplementation 'junit:junit:4.12'
// Optional -- Robolectric environment
testImplementation 'androidx.test:core:1.0.0'
// Optional -- Mockito framework
testImplementation('org.mockito:mockito-inline:3.4.0')
testImplementation "org.json:json:20140107"
testImplementation('org.powermock:powermock-api-mockito:1.6.2') {
exclude module: 'hamcrest-core'
exclude module: 'objenesis'
}
testImplementation('org.powermock:powermock-module-junit4:1.6.2') {
exclude module: 'hamcrest-core'
exclude module: 'objenesis'
}
}
Loading

0 comments on commit 715d73e

Please sign in to comment.