2015-03-28 15:50:31 +00:00
|
|
|
/**
|
2018-09-11 22:27:47 +00:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2018-05-11 19:43:48 +00:00
|
|
|
*
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
*
|
2015-03-28 15:50:31 +00:00
|
|
|
* Stub of Sample for Android.
|
|
|
|
*
|
2018-05-11 02:06:46 +00:00
|
|
|
* @format
|
2018-08-08 17:39:16 +00:00
|
|
|
* @flow
|
2015-03-28 15:50:31 +00:00
|
|
|
*/
|
2018-05-11 02:06:46 +00:00
|
|
|
|
2015-03-28 15:50:31 +00:00
|
|
|
'use strict';
|
|
|
|
|
2018-05-10 22:44:52 +00:00
|
|
|
const warning = require('fbjs/lib/warning');
|
2015-03-28 15:50:31 +00:00
|
|
|
|
2018-05-10 22:44:52 +00:00
|
|
|
const Sample = {
|
2015-03-28 15:50:31 +00:00
|
|
|
test: function() {
|
2015-05-26 21:12:28 +00:00
|
|
|
warning('Not yet implemented for Android.');
|
2018-05-11 02:06:46 +00:00
|
|
|
},
|
2015-03-28 15:50:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Sample;
|