react-native-navigation 8.6.2 → 8.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +10 -10
- package/android/src/androidTest/assets/index.android.bundle +535 -0
- package/android/src/androidTest/java/com/reactnativenavigation/TestApplication.kt +0 -1
- package/android/src/androidTest/java/com/reactnativenavigation/mocks/SimpleViewController.java +20 -11
- package/android/src/androidTest/js/index.js +14 -0
- package/android/src/main/java/com/reactnativenavigation/views/stack/topbar/titlebar/TitleAndButtonsContainer.kt +2 -1
- package/android/src/main/java/com/reactnativenavigation/views/stack/topbar/titlebar/TitleAndButtonsMeasurer.kt +6 -2
- package/android/src/test/resources/robolectric.properties +3 -0
- package/autolink/fixtures/rn79/build.gradle.template +4 -4
- package/ios/RNNAppDelegate.mm +1 -0
- package/ios/RNNReactTitleView.mm +3 -1
- package/ios/ScreenAnimationController.mm +37 -13
- package/lib/module/commands/OptionsCrawler.js +1 -1
- package/lib/module/commands/OptionsCrawler.js.map +1 -1
- package/lib/typescript/Mock/Components/LayoutComponent.d.ts.map +1 -1
- package/lib/typescript/Mock/Layouts/SideMenu.d.ts.map +1 -1
- package/lib/typescript/Mock/actions/layoutActions.d.ts.map +1 -1
- package/lib/typescript/src/adapters/NativeCommandsSender.d.ts +6 -6
- package/lib/typescript/src/adapters/NativeRNNTurboEventEmitter.d.ts.map +1 -1
- package/lib/typescript/src/adapters/TouchablePreview.d.ts.map +1 -1
- package/lib/typescript/src/types.d.ts +0 -1
- package/lib/typescript/src/types.d.ts.map +1 -1
- package/package.json +14 -14
- package/src/commands/OptionsCrawler.ts +1 -1
package/android/build.gradle
CHANGED
|
@@ -3,14 +3,14 @@ import org.gradle.api.tasks.testing.logging.TestExceptionFormat
|
|
|
3
3
|
|
|
4
4
|
buildscript {
|
|
5
5
|
ext {
|
|
6
|
-
kotlinVersion = "1.
|
|
6
|
+
kotlinVersion = "2.1.20"
|
|
7
7
|
RNNKotlinVersion = kotlinVersion
|
|
8
8
|
detoxKotlinVersion = kotlinVersion
|
|
9
|
-
compileSdkVersion =
|
|
10
|
-
buildToolsVersion = "
|
|
9
|
+
compileSdkVersion = 36
|
|
10
|
+
buildToolsVersion = "36.0.0"
|
|
11
11
|
minSdkVersion = 24
|
|
12
|
-
targetSdkVersion =
|
|
13
|
-
ndkVersion = "
|
|
12
|
+
targetSdkVersion = 36
|
|
13
|
+
ndkVersion = "27.1.12297006"
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
repositories {
|
|
@@ -50,12 +50,12 @@ def safeExtGetFallbackLowerBound(prop, fallback) {
|
|
|
50
50
|
Math.max(safeExtGet(prop, fallback), fallback)
|
|
51
51
|
}
|
|
52
52
|
|
|
53
|
-
def DEFAULT_COMPILE_SDK_VERSION =
|
|
53
|
+
def DEFAULT_COMPILE_SDK_VERSION = 36
|
|
54
54
|
def DEFAULT_MIN_SDK_VERSION = 24
|
|
55
|
-
def DEFAULT_TARGET_SDK_VERSION =
|
|
56
|
-
def DEFAULT_KOTLIN_VERSION = "1.
|
|
55
|
+
def DEFAULT_TARGET_SDK_VERSION = 36
|
|
56
|
+
def DEFAULT_KOTLIN_VERSION = "2.1.20"
|
|
57
57
|
def DEFAULT_KOTLIN_STDLIB = 'kotlin-stdlib-jdk8'
|
|
58
|
-
def DEFAULT_BUILD_TOOLS_VERSION = "
|
|
58
|
+
def DEFAULT_BUILD_TOOLS_VERSION = "36.0.0"
|
|
59
59
|
def kotlinVersion = safeExtGet("RNNKotlinVersion", DEFAULT_KOTLIN_VERSION)
|
|
60
60
|
def kotlinStdlib = safeExtGet('RNNKotlinStdlib', DEFAULT_KOTLIN_STDLIB)
|
|
61
61
|
def kotlinCoroutinesCore = safeExtGet('RNNKotlinCoroutinesCore', '1.5.2')
|
|
@@ -144,7 +144,7 @@ dependencies {
|
|
|
144
144
|
if ("Playground".toLowerCase() == rootProject.name.toLowerCase()) {
|
|
145
145
|
// tests only for our playground
|
|
146
146
|
testImplementation 'junit:junit:4.13.2'
|
|
147
|
-
testImplementation "org.robolectric:robolectric:4.
|
|
147
|
+
testImplementation "org.robolectric:robolectric:4.16"
|
|
148
148
|
testImplementation 'org.assertj:assertj-core:3.11.1'
|
|
149
149
|
testImplementation 'org.mockito:mockito-core:4.0.0'
|
|
150
150
|
testImplementation 'com.squareup.assertj:assertj-android:1.2.0'
|