File tree Expand file tree Collapse file tree 6 files changed +8
-8
lines changed
test/src/com/adjust/sdk/test Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ android {
24
24
compileSdkVersion Integer . parseInt(project. ANDROID_BUILD_SDK_VERSION )
25
25
defaultConfig {
26
26
versionCode 11
27
- versionName ' 3.5 .0'
27
+ versionName ' 3.6 .0'
28
28
minSdkVersion Integer . parseInt(project. ANDROID_BUILD_MIN_SDK_VERSION )
29
29
targetSdkVersion Integer . parseInt(project. ANDROID_BUILD_TARGET_SDK_VERSION )
30
30
}
Original file line number Diff line number Diff line change 5
5
<modelVersion >4.0.0</modelVersion >
6
6
<artifactId >adjust-android</artifactId >
7
7
<groupId >com.adjust.sdk</groupId >
8
- <version >3.5 .0</version >
8
+ <version >3.6 .0</version >
9
9
<packaging >jar</packaging >
10
10
<name >Adjust Android SDK</name >
11
11
<url >https://github.com/adjust/android_sdk</url >
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public interface Constants {
23
23
int THIRTY_MINUTES = 30 * ONE_MINUTE ;
24
24
25
25
String BASE_URL = "https://app.adjust.io" ;
26
- String CLIENT_SDK = "android3.5 .0" ;
26
+ String CLIENT_SDK = "android3.6 .0" ;
27
27
String LOGTAG = "Adjust" ;
28
28
29
29
String SESSION_STATE_FILENAME = "AdjustIoActivityState" ;
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ public void testFirstSession() {
93
93
94
94
// check the Sdk version is being tested
95
95
assertEquals (activityPackage .getExtendedString (),
96
- "android3.5 .0" , activityPackage .getClientSdk ());
96
+ "android3.6 .0" , activityPackage .getClientSdk ());
97
97
98
98
// check the server url
99
99
assertEquals (Constants .BASE_URL , "https://app.adjust.io" );
Original file line number Diff line number Diff line change 1
- 3.5 .0
1
+ 3.6 .0
Original file line number Diff line number Diff line change 1
- ## Migrate your adjust SDK for Android to 3.5 .0 from v2.1.x
1
+ ## Migrate your adjust SDK for Android to 3.6 .0 from v2.1.x
2
2
3
3
We renamed the main class ` com.adeven.adjustio.AdjustIo ` to
4
4
` com.adjust.sdk.Adjust ` . Follow these steps to update all adjust SDK calls.
@@ -24,7 +24,7 @@ We renamed the main class `com.adeven.adjustio.AdjustIo` to
24
24
4 . In the same fashion, replace ` adeven.adjustio ` with ` adjust.sdk ` in all
25
25
manifest files to update the package name of the ` ReferrerReceiver ` .
26
26
27
- 5 . Download version v3.5 .0 and create a new Android project from the ` Adjust ` folder.
27
+ 5 . Download version v3.6 .0 and create a new Android project from the ` Adjust ` folder.
28
28
29
29
![ ] [ import ]
30
30
@@ -36,7 +36,7 @@ We renamed the main class `com.adeven.adjustio.AdjustIo` to
36
36
37
37
8 . Build your project to confirm that everything is properly connected again.
38
38
39
- The adjust SDK v3.5 .0 added delegate notifications. Check out the [ README] for
39
+ The adjust SDK v3.6 .0 added delegate notifications. Check out the [ README] for
40
40
details.
41
41
42
42
You can’t perform that action at this time.
0 commit comments