Skip to content

Commit 5f52571

Browse files
Merge pull request #3 from BranchMetrics/bboothe-branch/SDK-2545
Bboothe branch/sdk 2545
2 parents ee82a06 + eb130f7 commit 5f52571

File tree

9 files changed

+921
-14
lines changed

9 files changed

+921
-14
lines changed

.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/branch-android-sdk-samples.iml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/caches/deviceStreaming.xml

Lines changed: 873 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

BranchAndroidTestSampleApp/app/build.gradle

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ plugins {
44
}
55

66
android {
7-
compileSdk 32
7+
namespace 'com.example.branchandroidtestsampleapp'
8+
9+
compileSdk 35
810

911
defaultConfig {
1012
applicationId "com.example.branchandroidtestsampleapp"
1113
minSdk 21
12-
targetSdk 32
14+
targetSdk 35
1315
versionCode 1
1416
versionName "1.0"
1517

@@ -33,16 +35,16 @@ android {
3335

3436
dependencies {
3537

36-
implementation 'androidx.core:core-ktx:1.7.0'
37-
implementation 'androidx.appcompat:appcompat:1.3.0'
38-
implementation 'com.google.android.material:material:1.4.0'
39-
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
38+
implementation 'androidx.core:core-ktx:1.13.1'
39+
implementation 'androidx.appcompat:appcompat:1.7.0'
40+
implementation 'com.google.android.material:material:1.12.0'
41+
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
4042
testImplementation 'junit:junit:4.13.2'
4143
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
4244
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
4345

4446
// required for all Android apps
45-
implementation 'io.branch.sdk.android:library:5.4.0'
47+
implementation 'io.branch.sdk.android:library:5.20.2'
4648
// required if your app is in the Google Play Store (tip: avoid using bundled play services libs)
4749
implementation 'com.google.android.gms:play-services-ads-identifier:17.1.0+'
4850
// alternatively, use the following lib for getting the AAID
@@ -53,7 +55,7 @@ dependencies {
5355
// Replace above with the line below if you do not support androidx
5456
// implementation 'com.android.support:customtabs:28.0.0'
5557

56-
def lifecycle_version = "2.2.0"
58+
def lifecycle_version = "2.8.3"
5759

5860
// ViewModel
5961
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"

BranchAndroidTestSampleApp/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
3-
id 'com.android.application' version '7.2.0' apply false
4-
id 'com.android.library' version '7.2.0' apply false
5-
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
3+
id 'com.android.application' version '8.4.1' apply false
4+
id 'com.android.library' version '8.4.1' apply false
5+
id 'org.jetbrains.kotlin.android' version '1.9.23' apply false
66
}
77

88
task clean(type: Delete) {
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Thu Jan 19 14:13:49 EST 2023
1+
#Mon Sep 29 21:39:21 EDT 2025
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
43
distributionPath=wrapper/dists
5-
zipStorePath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
65
zipStoreBase=GRADLE_USER_HOME
6+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)