NextDots.RetargetlyLib.Android
1.0.4.4
See the version list below for details.
dotnet add package NextDots.RetargetlyLib.Android --version 1.0.4.4
NuGet\Install-Package NextDots.RetargetlyLib.Android -Version 1.0.4.4
<PackageReference Include="NextDots.RetargetlyLib.Android" Version="1.0.4.4" />
paket add NextDots.RetargetlyLib.Android --version 1.0.4.4
#r "nuget: NextDots.RetargetlyLib.Android, 1.0.4.4"
// Install NextDots.RetargetlyLib.Android as a Cake Addin #addin nuget:?package=NextDots.RetargetlyLib.Android&version=1.0.4.4 // Install NextDots.RetargetlyLib.Android as a Cake Tool #tool nuget:?package=NextDots.RetargetlyLib.Android&version=1.0.4.4
NextDots.RetargetlyLib.Android Readme
For latest changes: https://github.com/retargetly/sdk-xamarin-android/blob/master/README.md
EXTREMELY IMPORTANT SETUP
Please follow the guide to properly setup the NextDots.RetargetlyLib.Android inside of your application:
Additionally, see the permission setup below for Android to ensure everything is configured correct.
Additional Android Permission Setup
This plugin uses the Current Activity Plugin to get access to the current Android Activity. Be sure to complete the full setup if a MainApplication.cs file was not automatically added to your application. Please fully read through the Current Activity Plugin Documentation. At an absolute minimum you must set the following in your Activity's OnCreate method:
CrossCurrentActivity.Current.Activity.Init(this, bundle);
It is highly recommended that you use a custom Application that are outlined in the Current Activity Plugin Documentation](https://github.com/jamesmontemagno/CurrentActivityPlugin/blob/master/README.md)
Android specific in your BaseActivity or MainActivity (for Xamarin.Android) add this code:
Plugin.CurrentActivity.CrossCurrentActivity.Current.Init(this, savedInstanceState); //Important
Required Permissions:
ACCESS_COARSE_LOCATION
ACCESS_FINE_LOCATION
ACCESS_MOCK_LOCATION
ACCESS_WIFI_STATE
INTERNET
installation requirements
- Install Microsoft Visual Studio with the Xamarin SDK
- Create new Xamarin Android Project
- Update Xamarin.Android.Support.Design Package
- Install Nuget library NextDots.RetargetlyLib.Android
- In the MainActivity initialize Geolocation Plugin
- Plugin.CurrentActivity.CrossCurrentActivity.Current.Init(this, savedInstanceState);
How to use the SDK?
Initialize library:
GeolocalizationClient retargetlyClient = new GeolocalizationClient();
await retargetlyClient.Init(this.Application, HashCode, true, true);
Send Custom Geo Event
GeolocalizationClient retargetlyClient = new GeolocalizationClient();
await retargetlyClient.Send(this.source_hash, data));
DeepLink Implementation
new DeepLinkActivity(this.LocalClassName);//Activate DeepLinking
new DeepLinkActivity();//Activate DeepLinking
new DeepLinkActivity(this.LocalClassName.Replace(this.GetType().Name, typeof(Activity1).Name));
/************************* DeepLink In ******************/
var res = this.Intent.GetStringExtra("DeepLinkUrl");
if (res != null)
{
DeepLinkClient deepLinkClient = new DeepLinkClient();
var result = JsonConvert.SerializeObject(deepLinkClient.GetRequestInfo(this.Application, HashCode));
Toast.MakeText(this, result, ToastLength.Long).Show();
DinamicURLCaso1.Text = res;
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
MonoAndroid | monoandroid81 is compatible. |
-
- Microsoft.Net.Http (>= 2.2.29)
- Newtonsoft.Json (>= 11.0.2)
- Plugin.Permissions (>= 3.0.0.12)
- Xam.Plugin.Connectivity (>= 3.2.0)
- Xam.Plugin.Geolocator (>= 4.5.0.6)
- Xam.Plugins.Settings (>= 3.1.1)
- Xamarin.Android.Support.v7.AppCompat (>= 27.0.2.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Bug fixes.