mirror of
https://github.com/selfxyz/self.git
synced 2026-04-27 03:01:15 -04:00
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:
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -20,7 +20,6 @@ buildscript {
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
mavenLocal()
|
||||
google()
|
||||
mavenCentral()
|
||||
maven {
|
||||
|
||||
@@ -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')
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user