Skip to content

Commit d12052d

Browse files
committed
Merge pull request #10 from adjust/development
Windows Phone 8 and Windows Store Apps targets
2 parents fb3ee2f + 2780b95 commit d12052d

File tree

88 files changed

+1320
-53
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+1320
-53
lines changed

.gitattributes

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
###############################################################################
2+
# Set default behavior to automatically normalize line endings.
3+
###############################################################################
4+
* text=auto
5+
6+
###############################################################################
7+
# Set default behavior for command prompt diff.
8+
#
9+
# This is need for earlier builds of msysgit that does not have it on by
10+
# default for csharp files.
11+
# Note: This is only used by command line
12+
###############################################################################
13+
#*.cs diff=csharp
14+
15+
###############################################################################
16+
# Set the merge driver for project and solution files
17+
#
18+
# Merging from the command prompt will add diff markers to the files if there
19+
# are conflicts (Merging from VS is not affected by the settings below, in VS
20+
# the diff markers are never inserted). Diff markers may cause the following
21+
# file extensions to fail to load in VS. An alternative would be to treat
22+
# these files as binary and thus will always conflict and require user
23+
# intervention with every merge. To do so, just uncomment the entries below
24+
###############################################################################
25+
#*.sln merge=binary
26+
#*.csproj merge=binary
27+
#*.vbproj merge=binary
28+
#*.vcxproj merge=binary
29+
#*.vcproj merge=binary
30+
#*.dbproj merge=binary
31+
#*.fsproj merge=binary
32+
#*.lsproj merge=binary
33+
#*.wixproj merge=binary
34+
#*.modelproj merge=binary
35+
#*.sqlproj merge=binary
36+
#*.wwaproj merge=binary
37+
38+
###############################################################################
39+
# behavior for image files
40+
#
41+
# image files are treated as binary by default.
42+
###############################################################################
43+
#*.jpg binary
44+
#*.png binary
45+
#*.gif binary
46+
47+
###############################################################################
48+
# diff behavior for common document formats
49+
#
50+
# Convert binary document formats to text before diffing them. This feature
51+
# is only available from the command line. Turn it on by uncommenting the
52+
# entries below.
53+
###############################################################################
54+
#*.doc diff=astextplain
55+
#*.DOC diff=astextplain
56+
#*.docx diff=astextplain
57+
#*.DOCX diff=astextplain
58+
#*.dot diff=astextplain
59+
#*.DOT diff=astextplain
60+
#*.pdf diff=astextplain
61+
#*.PDF diff=astextplain
62+
#*.rtf diff=astextplain
63+
#*.RTF diff=astextplain

.gitignore

+113-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,123 @@ Library/
1212
ExportedObj/
1313
*.svd
1414
*.userprefs
15-
*.csproj
1615
*.pidb
1716
*.suo
18-
*.sln
1917
*.user
2018
*.unityproj
2119
*.booproj
2220

21+
nuget
22+
*.nupkg
23+
24+
# Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
25+
[Bb]in/
26+
[Oo]bj/
27+
28+
# mstest test results
29+
TestResults
30+
31+
## Ignore Visual Studio temporary files, build results, and
32+
## files generated by popular Visual Studio add-ons.
33+
34+
# User-specific files
35+
*.suo
36+
*.user
37+
*.sln.docstates
38+
39+
# Build results
40+
[Dd]ebug/
41+
[Rr]elease/
42+
x64/
43+
*_i.c
44+
*_p.c
45+
*.ilk
46+
*.obj
47+
*.pch
48+
*.pdb
49+
*.pgc
50+
*.pgd
51+
*.rsp
52+
*.sbr
53+
*.tlb
54+
*.tli
55+
*.tlh
56+
*.tmp
57+
*.log
58+
*.vspscc
59+
*.vssscc
60+
.builds
61+
62+
# Visual C++ cache files
63+
ipch/
64+
*.aps
65+
*.ncb
66+
*.opensdf
67+
*.sdf
68+
69+
# Visual Studio profiler
70+
*.psess
71+
*.vsp
72+
*.vspx
73+
74+
# Guidance Automation Toolkit
75+
*.gpState
76+
77+
# ReSharper is a .NET coding add-in
78+
_ReSharper*
79+
80+
# NCrunch
81+
*.ncrunch*
82+
.*crunch*.local.xml
83+
84+
# Installshield output folder
85+
[Ee]xpress
86+
87+
# DocProject is a documentation generator add-in
88+
DocProject/buildhelp/
89+
DocProject/Help/*.HxT
90+
DocProject/Help/*.HxC
91+
DocProject/Help/*.hhc
92+
DocProject/Help/*.hhk
93+
DocProject/Help/*.hhp
94+
DocProject/Help/Html2
95+
DocProject/Help/html
96+
97+
# Click-Once directory
98+
publish
99+
100+
# Publish Web Output
101+
*.Publish.xml
102+
103+
# NuGet Packages Directory
104+
packages
105+
106+
# Windows Azure Build Output
107+
csx
108+
*.build.csdef
109+
110+
# Windows Store app package directory
111+
AppPackages/
112+
113+
# Others
114+
[Bb]in
115+
[Oo]bj
116+
sql
117+
TestResults
118+
[Tt]est[Rr]esult*
119+
*.Cache
120+
ClientBin
121+
[Ss]tyle[Cc]op.*
122+
~$*
123+
*.dbmdl
124+
Generated_Code #added for RIA/Silverlight projects
125+
126+
# Backup & report files from converting an old project file to a newer
127+
# Visual Studio version. Backup files are not needed, because we have git ;-)
128+
_UpgradeReport_Files/
129+
Backup*/
130+
UpgradeLog*.XML
131+
23132
# ============ #
24133
# OS generated #
25134
# ============ #
@@ -31,9 +140,11 @@ ExportedObj/
31140
Icon?
32141
ehthumbs.db
33142
Thumbs.db
143+
*.orig
34144

35145
# ==================== #
36146
# Adjust SDK generated #
37147
# ==================== #
38148
*.pyc*
39149
AndroidManifest.xml*
150+
MetroTestCertificate.pfx*

Adjust.unitypackage

636 KB
Binary file not shown.

Assets/Adjust.cs

+16-6
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ public class Adjust : MonoBehaviour {
1414
public Util.Environment environment = Util.Environment.Sandbox;
1515
public bool eventBuffering = false;
1616
public bool startManually = false;
17+
public const string sdkPrefix = "unity3.2.1";
1718

1819
void Awake() {
1920
if (!this.startManually) {
@@ -42,14 +43,18 @@ public static void appDidLaunch(string appToken, Util.Environment environment, U
4243
Adjust.instance = new AdjustAndroid();
4344
#elif UNITY_IOS
4445
Adjust.instance = new AdjustIOS();
46+
#elif UNITY_WP8
47+
Adjust.instance = new AdjustWP8();
48+
#elif UNITY_METRO
49+
Adjust.instance = new AdjustMetro();
4550
#endif
4651

4752
if (Adjust.instance == null) {
48-
Debug.Log("adjust: SDK can only be used in Android or iOS");
53+
Debug.Log("adjust: SDK can only be used in Android, iOS, Windows Phone 8 or Windows Store apps");
4954
return;
5055
}
5156

52-
Adjust.instance.appDidLaunch (appToken, environment, logLevel, eventBuffering);
57+
Adjust.instance.appDidLaunch (appToken, environment, sdkPrefix , logLevel, eventBuffering);
5358
}
5459

5560
public static void trackEvent(string eventToken, Dictionary<string,string> parameters = null) {
@@ -78,6 +83,7 @@ public static void setResponseDelegate(Action<ResponseData> responseDelegate, st
7883

7984
Adjust.responseDelegate = responseDelegate;
8085
Adjust.instance.setResponseDelegate (sceneName);
86+
Adjust.instance.setResponseDelegateString (runResponseDelegate);
8187
}
8288

8389
public static void setEnabled(bool enabled) {
@@ -97,16 +103,20 @@ public static bool isEnabled() {
97103
}
98104

99105
public void getNativeMessage (string sResponseData) {
100-
if (Adjust.instance == null) {
106+
Adjust.runResponseDelegate (sResponseData);
107+
}
108+
109+
public static void runResponseDelegate(string sResponseData) {
110+
if (instance == null) {
101111
Debug.Log(Adjust.errorMessage);
102112
return;
103113
}
104-
if (Adjust.responseDelegate == null) {
114+
if (responseDelegate == null) {
105115
Debug.Log("adjust: response delegate not set to receive callbacks");
106116
return;
107117
}
108118

109119
var responseData = new ResponseData (sResponseData);
110-
Adjust.responseDelegate (responseData);
120+
responseDelegate (responseData);
111121
}
112-
}
122+
}

Assets/ExampleGUI/ExampleGUI.cs

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ public void responseDelegate (ResponseData responseData)
5454
{
5555
Debug.Log ("activitykind " + responseData.activityKind.ToString ());
5656
Debug.Log ("trackerName " + responseData.trackerName);
57+
Debug.Log ("error " + responseData.error);
5758
}
5859

5960
}

Assets/Plugins/AdjustUnityWP.dll

4.5 KB
Binary file not shown.

Assets/Plugins/AdjustUnityWP.dll.meta

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Plugins/AdjustUnityWS.dll

4.5 KB
Binary file not shown.

Assets/Plugins/AdjustUnityWS.dll.meta

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Plugins/Android/AdjustAndroid.cs

+4-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public AdjustAndroid() {
1818
ajoCurrentActivity = ajcUnityPlayer.GetStatic<AndroidJavaObject>("currentActivity");
1919
}
2020

21-
public void appDidLaunch(string appToken, Util.Environment environment, Util.LogLevel logLevel, bool eventBuffering) {
21+
public void appDidLaunch(string appToken, Util.Environment environment, string sdkPrefix, Util.LogLevel logLevel, bool eventBuffering) {
2222

2323
string sEnvironment = environment.ToString ().ToLower ();
2424
string sLogLevel = logLevel.ToString ().ToLower ();
@@ -29,7 +29,7 @@ public void appDidLaunch(string appToken, Util.Environment environment, Util.Log
2929
sEnvironment,
3030
sLogLevel,
3131
eventBuffering);
32-
ajcAdjust.CallStatic("setSdkPrefix","unity3.0.0");
32+
ajcAdjust.CallStatic("setSdkPrefix",sdkPrefix);
3333

3434
onResume ();
3535
}
@@ -56,6 +56,8 @@ public void setResponseDelegate(string sceneName) {
5656
ajcAdjustUnity.CallStatic ("setResponseDelegate", sceneName);
5757
}
5858

59+
public void setResponseDelegateString(Action<string> responseDelegate) { }
60+
5961
public void setEnabled(bool enabled) {
6062
ajcAdjust.CallStatic ("setEnabled", ConvertBoolToJava(enabled));
6163
}

Assets/Plugins/IAdjust.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@ namespace com.adjust.sdk
55
{
66
public interface IAdjust
77
{
8-
void appDidLaunch (string appToken, Util.Environment environment, Util.LogLevel logLevel, bool eventBuffering);
8+
void appDidLaunch (string appToken, Util.Environment environment, string sdkPrefix, Util.LogLevel logLevel, bool eventBuffering);
99
void trackEvent (string eventToken, Dictionary<string,string> parameters = null);
1010
void trackRevenue (double cents, string eventToken = null, Dictionary<string,string> parameters = null);
1111
void onPause ();
1212
void onResume();
1313
void setResponseDelegate(string sceneName);
14+
void setResponseDelegateString(Action<string> responseDelegate);
1415
void setEnabled(bool enabled);
1516
bool isEnabled();
1617
}

Assets/Plugins/Metro.meta

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Plugins/Metro/AdjustMetro.cs

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
using UnityEngine;
2+
using AdjustUnityWS;
3+
using System.Collections.Generic;
4+
using System;
5+
6+
namespace com.adjust.sdk {
7+
8+
public class AdjustMetro : IAdjust {
9+
10+
public void appDidLaunch (string appToken, Util.Environment environment, string sdkPrefix, Util.LogLevel logLevel, bool eventBuffering)
11+
{
12+
string sEnvironment = environment.ToString ().ToLower ();
13+
string sLogLevel = logLevel.ToString ().ToLower ();
14+
15+
AdjustWS.AppDidLaunch (appToken, sEnvironment, sdkPrefix, sLogLevel, eventBuffering);
16+
}
17+
public void trackEvent (string eventToken, Dictionary<string, string> parameters = null)
18+
{
19+
AdjustWS.TrackEvent (eventToken, parameters);
20+
}
21+
public void trackRevenue (double cents, string eventToken = null, Dictionary<string, string> parameters = null)
22+
{
23+
AdjustWS.TrackRevenue (cents, eventToken, parameters);
24+
}
25+
public void onPause ()
26+
{
27+
AdjustWS.AppDidDeactivate ();
28+
}
29+
public void onResume ()
30+
{
31+
AdjustWS.AppDidActivate ();
32+
}
33+
public void setResponseDelegate (string sceneName) { }
34+
35+
public void setResponseDelegateString(Action<string> responseDelegate)
36+
{
37+
AdjustWS.SetResponseDelegateString (responseDelegate);
38+
}
39+
public void setEnabled (bool enabled)
40+
{
41+
AdjustWS.SetEnabled (enabled);
42+
}
43+
public bool isEnabled ()
44+
{
45+
return AdjustWS.IsEnabled ();
46+
}
47+
}
48+
}

Assets/Plugins/Metro/AdjustMetro.cs.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
6 KB
Binary file not shown.

Assets/Plugins/Metro/AdjustUnityWS.dll.meta

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Plugins/Metro/AdjustWS.dll

20 KB
Binary file not shown.

0 commit comments

Comments
 (0)