mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: This open sources an internal Modal View Reviewed By: mkonicek Differential Revision: D3065229 fb-gh-sync-id: 763996aef375883d94f70e617bfc7835a9cecb6f shipit-source-id: 763996aef375883d94f70e617bfc7835a9cecb6f
29 lines
483 B
Python
29 lines
483 B
Python
include_defs('//ReactAndroid/DEFS')
|
|
|
|
android_resource(
|
|
name = 'devsupport',
|
|
res = 'devsupport',
|
|
package = 'com.facebook.react',
|
|
visibility = [
|
|
react_native_target('java/com/facebook/react/devsupport/...'),
|
|
],
|
|
)
|
|
|
|
android_resource(
|
|
name = 'shell',
|
|
res = 'shell',
|
|
package = 'com.facebook.react',
|
|
visibility = [
|
|
'PUBLIC',
|
|
],
|
|
)
|
|
|
|
android_resource(
|
|
name = 'modal',
|
|
res = 'views/modal',
|
|
package = 'com.facebook.react',
|
|
visibility = [
|
|
'PUBLIC',
|
|
],
|
|
)
|