-
Notifications
You must be signed in to change notification settings - Fork 24.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove FB copyright notices from iOS template #27725
Remove FB copyright notices from iOS template #27725
Conversation
@@ -557,7 +556,7 @@ | |||
"-ObjC", | |||
"-lc++", | |||
); | |||
PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.HelloWorld-tvOS"; | |||
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.HelloWorld-tvOS"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These PRODUCT_BUNDLE_IDENTIFIER
changes are to bring the tvOS products in line with the iOS one.
@TheSavior, the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@TheSavior is landing this pull request. If you are a Facebook employee, you can view this diff on Phabricator.
@zertosh Just a heads-up, but those links don’t work for people like me that have no FB account. |
Yeah, he knows. They were internal fb links for config files I will need to change in other parts of our monorepo :-) |
Ah ok, I see 👍 |
This is failing our internal CI with this log:
I believe @hramos has worked on upgrading the ios simulator internally and may have context on this. |
@rickhanlonii's 5cd0c8a should fix the simulator issue that @TheSavior raised. I also have https://our.internmc.facebook.com/intern/diff/D18849584/ (mirrored to GitHub in https://github.com/hramos/react-native/tree/export-D18849584) in flight which should bring tests to Xcode 11.2.1, with Xcode 11.3 coming soon after. |
This pull request was successfully merged by @alloy in 9c3fa57. When will my fix make it into a release? | Upcoming Releases |
It landed! |
Summary: Files that are to be part of the user’s project shouldn’t have FB copyright notices. There’s [one notice left](https://github.com/facebook/react-native/blob/66601e755fcad10698e61d20878d52194ad0e90c/template/android/app/src/debug/java/com/helloworld/ReactNativeFlipper.java#L2) in the `android` template, which is in a file that doesn’t seem to be intended to be changed by the user and so that seems fine to me. [iOS] [Removed] - Remove copyright notices from iOS application template Pull Request resolved: facebook#27725 Test Plan: ```bash npx react-native init TestTemplateUpdates --template ~/Code/ReactNative/react-native cd ios xcodebuild -workspace TestTemplateUpdates.xcworkspace \ -scheme TestTemplateUpdates \ -destination 'platform=iOS Simulator,OS=latest,name=iPhone 8' build […] ** BUILD SUCCEEDED ** ``` Differential Revision: D19343386 Pulled By: TheSavior fbshipit-source-id: a78be5e5d2fdc2477adedb51d6bb3ff19845b75f
Summary: Files that are to be part of the user’s project shouldn’t have FB copyright notices. There’s [one notice left](https://github.com/facebook/react-native/blob/66601e755fcad10698e61d20878d52194ad0e90c/template/android/app/src/debug/java/com/helloworld/ReactNativeFlipper.java#L2) in the `android` template, which is in a file that doesn’t seem to be intended to be changed by the user and so that seems fine to me. ## Changelog [iOS] [Removed] - Remove copyright notices from iOS application template Pull Request resolved: facebook#27725 Test Plan: ```bash npx react-native init TestTemplateUpdates --template ~/Code/ReactNative/react-native cd ios xcodebuild -workspace TestTemplateUpdates.xcworkspace \ -scheme TestTemplateUpdates \ -destination 'platform=iOS Simulator,OS=latest,name=iPhone 8' build […] ** BUILD SUCCEEDED ** ``` Differential Revision: D19343386 Pulled By: TheSavior fbshipit-source-id: a78be5e5d2fdc2477adedb51d6bb3ff19845b75f
Equal to upstream iOS change facebook#27725
* [macos-init] Build on publish * [generate-macos] Cleanup copy-paste leftover * [generator-macos] Remove FB copyright notices Equal to upstream iOS change facebook#27725 * [generator-macos] Name app product without `-macOS` suffix
Summary
Files that are to be part of the user’s project shouldn’t have FB copyright notices.
There’s one notice left in the
android
template, which is in a file that doesn’t seem to be intended to be changed by the user and so that seems fine to me.Changelog
[iOS] [Removed] - Remove copyright notices from iOS application template
Test Plan