File tree Expand file tree Collapse file tree 7 files changed +11
-10
lines changed Expand file tree Collapse file tree 7 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,9 @@ react {
49
49
//
50
50
// The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map"
51
51
// hermesFlags = ["-O", "-output-source-map"]
52
+
53
+ /* Autolinking */
54
+ autolinkLibrariesWithApp()
52
55
}
53
56
54
57
/**
@@ -114,5 +117,3 @@ dependencies {
114
117
implementation jscFlavor
115
118
}
116
119
}
117
-
118
- apply from : file(" ../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle" ); applyNativeModulesAppBuildGradle(project)
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ buildscript {
5
5
compileSdkVersion = 34
6
6
targetSdkVersion = 34
7
7
ndkVersion = " 26.1.10909125"
8
- kotlinVersion = " 1.9.23 "
8
+ kotlinVersion = " 1.9.24 "
9
9
}
10
10
repositories {
11
11
google()
Original file line number Diff line number Diff line change @@ -21,8 +21,6 @@ org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m
21
21
# Android operating system, and which are packaged with your app's APK
22
22
# https://developer.android.com/topic/libraries/support-library/androidx-rn
23
23
android.useAndroidX =true
24
- # Automatically convert third-party libraries to use AndroidX
25
- android.enableJetifier =true
26
24
27
25
# Use this property to specify which architecture you want to build.
28
26
# You can also override it from the CLI using
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.7 -all.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.8 -all.zip
4
4
networkTimeout =10000
5
5
validateDistributionUrl =true
6
6
zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change 55
55
# Darwin, MinGW, and NonStop.
56
56
#
57
57
# (3) This script is generated from the Groovy template
58
- # https://github.com/gradle/gradle/blob/HEAD/subprojects/ plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
58
+ # https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/ plugins-application /src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
59
59
# within the Gradle project.
60
60
#
61
61
# You can find Gradle at https://github.com/gradle/gradle/.
Original file line number Diff line number Diff line change
1
+ pluginManagement { includeBuild(" ../node_modules/@react-native/gradle-plugin" ) }
2
+ plugins { id(" com.facebook.react.settings" ) }
3
+ extensions. configure(com.facebook.react.ReactSettingsExtension ){ ex -> ex. autolinkLibrariesFromCommand() }
1
4
rootProject. name = ' HelloWorld'
2
- apply from : file(" ../node_modules/@react-native-community/cli-platform-android/native_modules.gradle" ); applyNativeModulesSettingsGradle(settings)
3
5
include ' :app'
4
6
includeBuild(' ../node_modules/@react-native/gradle-plugin' )
Original file line number Diff line number Diff line change 10
10
"test" : " jest"
11
11
},
12
12
"dependencies" : {
13
- "react" : " 18.3.1 " ,
13
+ "react" : " 19.0.0-rc-fb9a90fa48-20240614 " ,
14
14
"react-native" : " 1000.0.0"
15
15
},
16
16
"devDependencies" : {
27
27
"eslint" : " ^8.19.0" ,
28
28
"jest" : " ^29.6.3" ,
29
29
"prettier" : " 2.8.8" ,
30
- "react-test-renderer" : " 18.3.1 " ,
30
+ "react-test-renderer" : " 19.0.0-rc-fb9a90fa48-20240614 " ,
31
31
"typescript" : " 5.0.4"
32
32
},
33
33
"engines" : {
You can’t perform that action at this time.
0 commit comments