File tree Expand file tree Collapse file tree 4 files changed +9
-8
lines changed
src/main/java/io/branch/branchlinksimulator Expand file tree Collapse file tree 4 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,14 @@ plugins {
66
77android {
88 namespace = " io.branch.branchlinksimulator"
9- compileSdk = 34
9+ compileSdk = 35
1010
1111 defaultConfig {
1212 applicationId = " io.branch.branchlinksimulator"
1313 minSdk = 26
14- targetSdk = 34
15- versionCode = 24
16- versionName = " 2.4 "
14+ targetSdk = 35
15+ versionCode = 25
16+ versionName = " 2.5 "
1717
1818 testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
1919 vectorDrawables {
@@ -70,8 +70,9 @@ dependencies {
7070 debugImplementation(" androidx.compose.ui:ui-test-manifest" )
7171 implementation(" androidx.navigation:navigation-compose:2.7.7" )
7272
73- implementation(" io.branch.sdk.android:library:5.14 .0" )
73+ implementation(" io.branch.sdk.android:library:5.18 .0" )
7474 implementation(" com.google.android.gms:play-services-ads-identifier:18.0.1" )
7575 implementation(" com.android.installreferrer:installreferrer:2.2" )
7676 implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3" )
77+ implementation(" androidx.browser:browser:1.8.0" )
7778}
Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ class RoundTripStore(context: Context) : IBranchLoggingCallbacks {
7070
7171 private suspend fun processLog (log : String? ) {
7272 if (log == null ) return
73+ println (log)
7374 when {
7475 log.contains(" posting to" ) -> {
7576 addRoundTrip(parseUrl(log) ? : FAILED )
@@ -82,7 +83,6 @@ class RoundTripStore(context: Context) : IBranchLoggingCallbacks {
8283 val response = parseResponseLog(log)
8384 addResponse(response)
8485 }
85- else -> println (log)
8686 }
8787 }
8888
Original file line number Diff line number Diff line change 11// Top-level build file where you can add configuration options common to all sub-projects/modules.
22plugins {
3- id(" com.android.application" ) version " 8.2 .2" apply false
3+ id(" com.android.application" ) version " 8.9 .2" apply false
44 id(" org.jetbrains.kotlin.android" ) version " 1.9.0" apply false
55 id(" org.jetbrains.kotlin.plugin.serialization" ) version " 1.9.0"
66}
Original file line number Diff line number Diff line change 11# Tue Feb 13 10:56:01 PST 2024
22distributionBase =GRADLE_USER_HOME
33distributionPath =wrapper/dists
4- distributionUrl =https\://services.gradle.org/distributions/gradle-8.2 -bin.zip
4+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.11.1 -bin.zip
55zipStoreBase =GRADLE_USER_HOME
66zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments