This repository has been archived by the owner on Aug 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from yandexmobile/release-0.20
Release 1.00
- Loading branch information
Showing
72 changed files
with
773 additions
and
2,559 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System; | ||
|
||
namespace YandexMetricaPCL | ||
{ | ||
public sealed class Coordinates | ||
{ | ||
public double Latitude { get; set; } | ||
public double Longitude { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using System; | ||
|
||
namespace YandexMetricaPCL | ||
{ | ||
public sealed class YandexMetricaConfig | ||
{ | ||
public string ApiKey { get; private set; } | ||
public string AppVersion { get; set; } | ||
public Coordinates Location { get; set; } | ||
public int? SessionTimeout { get; set; } | ||
public bool? ReportCrashesEnabled { get; set; } | ||
public bool? TrackLocationEnabled { get; set; } | ||
public bool? LoggingEnabled { get; set; } | ||
public bool? CollectInstalledApps { get; set; } | ||
|
||
public YandexMetricaPreloadInfo PreloadInfo { get; set; } | ||
|
||
public YandexMetricaConfig(string apiKey) | ||
{ | ||
ApiKey = apiKey; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace YandexMetricaPCL | ||
{ | ||
public sealed class YandexMetricaPreloadInfo | ||
{ | ||
public string TrackingId { get; private set; } | ||
public Dictionary<string, string> AdditionalInfo { get; private set; } | ||
|
||
public YandexMetricaPreloadInfo(string trackingId) | ||
{ | ||
TrackingId = trackingId; | ||
AdditionalInfo = new Dictionary<string, string>(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* YMMVersion.h | ||
* | ||
* This file is a part of the AppMetrica | ||
* | ||
* Version for iOS © 2015 YANDEX | ||
* | ||
* You may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at http://legal.yandex.com/metrica_termsofuse/ | ||
*/ | ||
|
||
#ifndef __YMM_VERSION_H__ | ||
#define __YMM_VERSION_H__ | ||
|
||
#define YMM_VERSION_MAJOR 2 | ||
#define YMM_VERSION_MINOR 5 | ||
#define YMM_VERSION_PATCH 1 | ||
|
||
#define YMM_BUILD_NUMBER 5889 | ||
|
||
#endif // __YMM_VERSION_H__ |
Oops, something went wrong.