Enable composite build for RN test app to resolve KMP SDK locally (#1819)

* mrz consolidation

* Add Gradle substitution for shared module (#1820)
This commit is contained in:
Justin Hernandez
2026-03-06 12:13:55 -08:00
committed by GitHub
parent be9f2d8f8b
commit 377f67f0ee
5 changed files with 8 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
[versions]
kotlin = "2.1.0"
compose-multiplatform = "1.7.3"
agp = "8.7.3"
agp = "8.11.2"
android-compileSdk = "35"
android-targetSdk = "35"
android-minSdk = "24"

View File

@@ -1,7 +1,7 @@
[versions]
kotlin = "2.1.0"
compose-multiplatform = "1.7.3"
agp = "8.7.3"
agp = "8.11.2"
android-compileSdk = "35"
android-targetSdk = "35"
android-minSdk = "24"

View File

@@ -1,6 +1,6 @@
[versions]
kotlin = "2.1.0"
agp = "8.7.3"
agp = "8.11.2"
android-compileSdk = "35"
android-targetSdk = "35"
android-minSdk = "24"

View File

@@ -20,7 +20,6 @@ buildscript {
allprojects {
repositories {
mavenLocal()
google()
mavenCentral()
maven {

View File

@@ -6,3 +6,8 @@ extensions.configure(com.facebook.react.ReactSettingsExtension){ ex ->
rootProject.name = 'SelfRNSDKTestApp'
include ':app'
includeBuild('../../../node_modules/@react-native/gradle-plugin')
includeBuild('../../kmp-sdk') {
dependencySubstitution {
substitute module('xyz.self.sdk:shared') using project(':shared')
}
}