@react-native-community/template 0.86.0-rc.3-29e4d19 → 0.87.0-rc.0-4339c2b
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/package.json +6 -2
- package/template/android/app/build.gradle +1 -1
- package/template/android/build.gradle +3 -3
- package/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/template/android/gradle/wrapper/gradle-wrapper.properties +1 -1
- package/template/android/gradle.properties +6 -1
- package/template/android/gradlew +1 -1
- package/template/package.json +11 -10
- package/template/tsconfig.json +0 -3
package/package.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-community/template",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.87.0-rc.0-4339c2b",
|
|
4
4
|
"license": "MIT",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/react-native-community/template.git"
|
|
8
|
+
},
|
|
5
9
|
"publishConfig": {
|
|
6
10
|
"access": "public"
|
|
7
11
|
},
|
|
8
12
|
"scripts": {
|
|
9
13
|
"format": "prettier --write .",
|
|
10
14
|
"test": "jest",
|
|
11
|
-
"version": "0.
|
|
15
|
+
"version": "0.87.0-rc.0"
|
|
12
16
|
},
|
|
13
17
|
"type": "commonjs",
|
|
14
18
|
"files": [
|
|
@@ -102,7 +102,7 @@ android {
|
|
|
102
102
|
// see https://reactnative.dev/docs/signed-apk-android.
|
|
103
103
|
signingConfig signingConfigs.debug
|
|
104
104
|
minifyEnabled enableProguardInReleaseBuilds
|
|
105
|
-
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
|
|
105
|
+
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
108
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
buildscript {
|
|
2
2
|
ext {
|
|
3
|
-
buildToolsVersion = "
|
|
3
|
+
buildToolsVersion = "37.0.0"
|
|
4
4
|
minSdkVersion = 24
|
|
5
|
-
compileSdkVersion =
|
|
5
|
+
compileSdkVersion = 37
|
|
6
6
|
targetSdkVersion = 36
|
|
7
7
|
ndkVersion = "27.1.12297006"
|
|
8
|
-
kotlinVersion = "2.
|
|
8
|
+
kotlinVersion = "2.2.0"
|
|
9
9
|
}
|
|
10
10
|
repositories {
|
|
11
11
|
google()
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
distributionBase=GRADLE_USER_HOME
|
|
2
2
|
distributionPath=wrapper/dists
|
|
3
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.
|
|
3
|
+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
|
|
4
4
|
networkTimeout=10000
|
|
5
5
|
validateDistributionUrl=true
|
|
6
6
|
zipStoreBase=GRADLE_USER_HOME
|
|
@@ -41,4 +41,9 @@ hermesEnabled=true
|
|
|
41
41
|
# Use this property to enable edge-to-edge display support.
|
|
42
42
|
# This allows your app to draw behind system bars for an immersive UI.
|
|
43
43
|
# Note: Only works with ReactActivity and should not be used with custom Activity.
|
|
44
|
-
edgeToEdgeEnabled=
|
|
44
|
+
edgeToEdgeEnabled=true
|
|
45
|
+
|
|
46
|
+
# Opt out of built-in kotlin and new DSL behavior that ships with AGP 9.
|
|
47
|
+
# Starting from AGP 10.x these opt outs will be removed.
|
|
48
|
+
android.builtInKotlin=false
|
|
49
|
+
android.newDsl=false
|
package/template/android/gradlew
CHANGED
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
# Darwin, MinGW, and NonStop.
|
|
58
58
|
#
|
|
59
59
|
# (3) This script is generated from the Groovy template
|
|
60
|
-
# https://github.com/gradle/gradle/blob/
|
|
60
|
+
# https://github.com/gradle/gradle/blob/2d6327017519d23b96af35865dc997fcb544fb40/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
|
61
61
|
# within the Gradle project.
|
|
62
62
|
#
|
|
63
63
|
# You can find Gradle at https://github.com/gradle/gradle/.
|
package/template/package.json
CHANGED
|
@@ -11,21 +11,22 @@
|
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"react": "19.2.3",
|
|
14
|
-
"react-native": "0.
|
|
15
|
-
"@react-native/new-app-screen": "0.
|
|
14
|
+
"react-native": "0.87.0-rc.0",
|
|
15
|
+
"@react-native/new-app-screen": "0.87.0-rc.0",
|
|
16
16
|
"react-native-safe-area-context": "^5.5.2"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@babel/core": "^7.25.2",
|
|
20
20
|
"@babel/preset-env": "^7.25.3",
|
|
21
21
|
"@babel/runtime": "^7.25.0",
|
|
22
|
-
"@react-native-community/cli": "20.
|
|
23
|
-
"@react-native-community/cli-platform-android": "20.
|
|
24
|
-
"@react-native-community/cli-platform-ios": "20.
|
|
25
|
-
"@react-native/babel-preset": "0.
|
|
26
|
-
"@react-native/eslint-config": "0.
|
|
27
|
-
"@react-native/
|
|
28
|
-
"@react-native/
|
|
22
|
+
"@react-native-community/cli": "20.2.0",
|
|
23
|
+
"@react-native-community/cli-platform-android": "20.2.0",
|
|
24
|
+
"@react-native-community/cli-platform-ios": "20.2.0",
|
|
25
|
+
"@react-native/babel-preset": "0.87.0-rc.0",
|
|
26
|
+
"@react-native/eslint-config": "0.87.0-rc.0",
|
|
27
|
+
"@react-native/jest-preset": "0.87.0-rc.0",
|
|
28
|
+
"@react-native/metro-config": "0.87.0-rc.0",
|
|
29
|
+
"@react-native/typescript-config": "0.87.0-rc.0",
|
|
29
30
|
"@types/jest": "^29.5.13",
|
|
30
31
|
"@types/react": "^19.2.0",
|
|
31
32
|
"@types/react-test-renderer": "^19.1.0",
|
|
@@ -33,7 +34,7 @@
|
|
|
33
34
|
"jest": "^29.6.3",
|
|
34
35
|
"prettier": "2.8.8",
|
|
35
36
|
"react-test-renderer": "19.2.3",
|
|
36
|
-
"typescript": "^
|
|
37
|
+
"typescript": "^6.0.3"
|
|
37
38
|
},
|
|
38
39
|
"engines": {
|
|
39
40
|
"node": ">= 22.11.0"
|