Skip to content

Commit

Permalink
change version to 6.12.52
Browse files Browse the repository at this point in the history
  • Loading branch information
af-vero committed Feb 7, 2024
1 parent e4e74ab commit 6c5e3a0
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

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

- Android AppsFlyer SDK **v6.12.2**
- iOS AppsFlyer SDK **v6.12.2**
- Android AppsFlyer SDK **v6.12.5**
- iOS AppsFlyer SDK **v6.12.3**

---
### <a id="init-sdk-deeplink"> AD_ID permission for Android
Expand Down
6 changes: 3 additions & 3 deletions deploy/build_unity_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ echo "Start Build for appsflyer-unity-plugin.unitypackage"

DEPLOY_PATH=outputs
UNITY_PATH="/Applications/Unity/Unity.app/Contents/MacOS/Unity"
PACKAGE_NAME="appsflyer-unity-plugin-6.12.22.unitypackage"
PACKAGE_NAME="appsflyer-unity-plugin-6.12.52.unitypackage"
mkdir -p $DEPLOY_PATH

#move external dependency manager
echo "moving the external dependency manager to root"
mv external-dependency-manager-1.2.177.unitypackage ..

# Build the .unitypackage
/Volumes/T7Shield/Unity/2022.3.10f1/Unity.app/Contents/MacOS/Unity \
/Applications/Unity/Hub/Editor/2022.3.15f1/Unity.app/Contents/MacOS/Unity \
-gvh_disable \
-batchmode \
-importPackage external-dependency-manager-1.2.177.unitypackage \
Expand All @@ -23,7 +23,7 @@ mv external-dependency-manager-1.2.177.unitypackage ..
Assets \
$PWD/$DEPLOY_PATH/$PACKAGE_NAME \
-quit \
&& echo "package exported successfully to outputs/appsflyer-unity-plugin-6.12.22.unitypackage" \
&& echo "package exported successfully to outputs/appsflyer-unity-plugin-6.12.52.unitypackage" \
|| echo "Failed to export package. See create_unity_core.log for more info."


Expand Down
6 changes: 3 additions & 3 deletions deploy/strict_mode_build_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ echo "Start Build for appsflyer-unity-plugin.unitypackage. Strict Mode."

DEPLOY_PATH=outputs
UNITY_PATH="/Applications/Unity/Unity.app/Contents/MacOS/Unity"
PACKAGE_NAME="appsflyer-unity-plugin-strict-mode-6.12.22.unitypackage"
PACKAGE_NAME="appsflyer-unity-plugin-strict-mode-6.12.52.unitypackage"
mkdir -p $DEPLOY_PATH

#move external dependency manager
Expand All @@ -26,7 +26,7 @@ echo "Commenting out functions. Done."


# Build the .unitypackage
/Volumes/T7Shield/Unity/2022.3.10f1/Unity.app/Contents/MacOS/Unity \
/Applications/Unity/Hub/Editor/2022.3.15f1/Unity.app/Contents/MacOS/Unity \
-gvh_disable \
-batchmode \
-importPackage external-dependency-manager-1.2.177.unitypackage \
Expand All @@ -37,7 +37,7 @@ echo "Commenting out functions. Done."
Assets \
$PWD/$DEPLOY_PATH/$PACKAGE_NAME \
-quit \
&& echo "package exported successfully to outputs/appsflyer-unity-plugin-strict-mode-6.12.22.unitypackage" \
&& echo "package exported successfully to outputs/appsflyer-unity-plugin-strict-mode-6.12.52.unitypackage" \
|| echo "Failed to export package. See create_unity_core.log for more info."


Expand Down
22 changes: 22 additions & 0 deletions docs/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ The list of available methods for this plugin is described below.
- [setResolveDeepLinkURLs](#setresolvedeeplinkurls)
- [setOneLinkCustomDomain](#setonelinkcustomdomain)
- [setCurrencyCode](#setcurrencycode)
- [setDeepLinkTimeout](#setDeepLinkTimeout)
- [recordLocation](#recordlocation)
- [anonymizeUser](#anonymizeuser)
- [getAppsFlyerId](#getappsflyerid)
Expand Down Expand Up @@ -366,6 +367,27 @@ AppsFlyer.setCurrencyCode("GBP");

---

---

### setDeepLinkTimeout
**`void setDeepLinkTimeout(long deepLinkTimeout)`**

Setting the deepLink timeout value that should be used for DDL.
If you want to use it, set it before the DDL setting.

| parameter | type | description |
| ------------------ |----------|------------------|
| `deepLinkTimeout` | `long` | in milliseconds |

*Example:*

```c#
AppsFlyer.setDeepLinkTimeout(2000);
```

---


### recordLocation
**`void recordLocation(double latitude, double longitude)`**

Expand Down

0 comments on commit 6c5e3a0

Please sign in to comment.