Skip to content

Commit c20e0f9

Browse files
fkgozalifacebook-github-bot
authored andcommitted
workaround android-only js module resolution issue
Summary: for some reason metro was not able to find js module with just .android.js variant. To workaround some build issue, added an empty .ios.js variant Reviewed By: mdvacca Differential Revision: D7115360 fbshipit-source-id: 40b95cf2efc4d3d599f39b88813469b6d78e7b48
1 parent 1605786 commit c20e0f9

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/**
2+
* Copyright (c) 2015-present, Facebook, Inc.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*
7+
* @flow
8+
* @providesModule ToolbarAndroidExample
9+
*/
10+
'use strict';
11+
12+
// Not applicable to iOS.
13+
module.exports = require('View');

0 commit comments

Comments
 (0)