Skip to content

Commit ba6dfa3

Browse files
[SDK-2397] Updated keys and bumped version (#33)
* Updated keys and bumped version * Updated version number
1 parent dc4ed5e commit ba6dfa3

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ repositories{
5151
dependencies {
5252
implementation fileTree(include: ['*.jar'], dir: 'libs')
5353
implementation 'androidx.multidex:multidex:2.0.1'
54-
implementation ('io.branch.sdk.android:library:5.7.2')
54+
implementation ('io.branch.sdk.android:library:5.12.0')
5555
// api project(":BranchSDK-local")
5656
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
5757
implementation 'androidx.appcompat:appcompat:1.1.0'

app/src/amazon/res/values/api_keys.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<resources>
33

44
<!-- Branchster app keys-->
5-
<string name="branch_key">key_live_kfNq5xQ0anKoLpL0RU6ripgdrCoDLLP0</string>
5+
<string name="branch_key">key_live_mbErCMtrzeheAWS0Xagg7hjbwDkaZ6SP</string>
66
<string name="branch_key_test">key_test_lbHr8ERYdpTlJcOZRGZtpaklEuhBQHGM</string>
77

88
<!--

app/src/main/java/io/branch/branchster/BranchsterAndroidApplication.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import java.util.UUID;
66

77
import io.branch.referral.Branch;
8+
import io.branch.referral.BranchLogger;
89

910
/**
1011
* Created by sahilverma on 3/7/17.
@@ -13,7 +14,7 @@
1314
public class BranchsterAndroidApplication extends MultiDexApplication {
1415
public void onCreate() {
1516
super.onCreate();
16-
Branch.enableLogging();
17+
Branch.enableLogging(BranchLogger.BranchLogLevel.VERBOSE);
1718
Branch.getAutoInstance(this);
1819
// Branch.setPlayStoreReferrerCheckTimeout(3000);
1920
// branch.setIdentity(UUID.randomUUID().toString());

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION_NAME=1.10.0
2-
VERSION_CODE=011000
1+
VERSION_NAME=1.11.0
2+
VERSION_CODE=011100
33

44
ANDROID_BUILD_TARGET_SDK_MINIMUM=26
55
ANDROID_BUILD_TARGET_SDK_VERSION=34

0 commit comments

Comments
 (0)