Skip to content

Commit 40474d4

Browse files
author
Aaron Lopez
authored
Merge pull request #638 from BranchMetrics/RC-3.0.0
RC 3.0.0
2 parents ef6789b + 0186e65 commit 40474d4

File tree

8 files changed

+16
-6
lines changed

8 files changed

+16
-6
lines changed
Binary file not shown.

Branch-SDK-TestBed/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ android {
1717

1818
defaultConfig {
1919
applicationId "io.branch.branchandroiddemo"
20-
minSdkVersion 15
20+
minSdkVersion 16
2121
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION)
2222
versionName project.VERSION_NAME
2323
versionCode Integer.parseInt(project.VERSION_CODE)

Branch-SDK/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ android {
2222
buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION
2323

2424
defaultConfig {
25-
minSdkVersion 15
25+
minSdkVersion 16
2626
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION)
2727
versionName project.VERSION_NAME
2828
versionCode Integer.parseInt(project.VERSION_CODE)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
fabric-identifier=io.branch.sdk.android.library
2-
fabric-version=2.19.5
2+
fabric-version=3.0.0
33
fabric-build-type=source

Branch-SDK/src/io/branch/referral/PrefHelper.java

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,12 @@
2525
* preference values.</p>
2626
*/
2727
public class PrefHelper {
28-
28+
29+
/**
30+
* The base URL to use for all calls to the Branch API.
31+
*/
32+
private static final String BRANCH_BASE_URL = "https://api2.branch.io/";
33+
2934
/**
3035
* {@link Boolean} value that enables/disables Branch developer external debug mode.
3136
*/
@@ -177,7 +182,7 @@ public static PrefHelper getInstance(Context context) {
177182
* API uses.
178183
*/
179184
public String getAPIBaseUrl() {
180-
return "https://api.branch.io/";
185+
return BRANCH_BASE_URL;
181186
}
182187

183188
/**

ChangeLog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Branch Android SDK change log
22

3+
- v3.0.0
4+
* _*Master Release*_ - October 26, 2018
5+
* Upgrade to api2.branch.io for TLS 1.1+ support. DEVEX-809
6+
* _Breaking Change_ Min SDK version is now 16. If you want to support minimum sdk level 9 please consider using version 1.14.5. If you want to to support a minimum SDK of 15, use the 2.x versions.
7+
38
- v2.19.5
49
* _*Master Release*_ - October 8, 2018
510
* Added new way to init session for attribution (`initSessionForced`) INTENG-4285

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=2.19.5
1+
VERSION_NAME=3.0.0
22
VERSION_CODE=1
33
GROUP=io.branch.sdk.android
44

0 commit comments

Comments
 (0)