-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathcopy.js
33 lines (28 loc) · 1.11 KB
/
copy.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
// Copyright 2022 Picovoice Inc.
//
// You may not use this file except in compliance with the license. A copy of the license is located in the "LICENSE"
// file accompanying this source.
//
// Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
// an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
// specific language governing permissions and limitations under the License.
//
const mkdirp = require('mkdirp');
const ncp = require('ncp').ncp;
const androidAssetPath =
'./android/cheetah-rn-demo-app/src/main/assets/cheetah_params.pv';
const iosAssetPath = './ios/CheetahDemo/cheetah_params.pv';
mkdirp.sync('./android/cheetah-rn-demo-app/src/main/assets/');
ncp('../../lib/common/cheetah_params.pv', androidAssetPath, (error) => {
if (error) {
return console.error(error);
}
console.log('Copied Android params.');
});
ncp('../../lib/common/cheetah_params.pv', iosAssetPath, (error) => {
if (error) {
return console.error(error);
}
console.log('Copied iOS params.');
});