Skip to content

Commit c4505b1

Browse files
gengjiawenfacebook-github-bot
authored andcommitted
fix windows gradle bug (#20293)
Summary: fix windows gradle bug, you can also see full log in https://ci.appveyor.com/project/gengjiawen/react-native/build/1.0.11/job/ic0nml8s4qbmni4e. ``` FAILURE: Build failed with an exception. * What went wrong: Failed to capture snapshot of input files for task ':RNTester:android:app:bundleReleaseJsAndAssets' property '$1' during up-to-date check. > Failed to create MD5 hash for file content. * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. * Get more help at https://help.gradle.org ``` Build success log: https://ci.appveyor.com/project/gengjiawen/react-native/build/1.0.12/job/xuaj8tm3p1piovbt. pass all current ci. facebook/react-native#20281 [GENERAL] [INTERNAL] [RNTester] - fix windows gradle bug Pull Request resolved: facebook/react-native#20293 Differential Revision: D9071261 Pulled By: hramos fbshipit-source-id: 87fab94d15d78dac1db51f15ca5f4ea9e3a6ad04
1 parent 85a63e2 commit c4505b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ project.ext.react = [
6262
bundleAssetName: "RNTesterApp.android.bundle",
6363
entryFile: file("../../js/RNTesterApp.android.js"),
6464
root: "$rootDir",
65-
inputExcludes: ["android/**", "./**"]
65+
inputExcludes: ["android/**", "./**", ".gradle/**"]
6666
]
6767

6868
apply from: "../../../react.gradle"

0 commit comments

Comments
 (0)