mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
26 lines
668 B
Markdown
26 lines
668 B
Markdown
You can specify output folder for Eclipse and xCode using Configuration.xml placed in respective folder. For example:
|
|
|
|
## Android
|
|
|
|
```xml
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
<JSFolder>
|
|
<Path>C:\Users\enchev\Documents\GitHub\Kimera\android\Playground\Kimera.Skeleton\assets\tns_modules</Path>
|
|
</JSFolder>
|
|
```
|
|
|
|
## xCode
|
|
```xml
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
<JSFolder>
|
|
<Path>Z:\TNSBridgeApp\TNSBridgeApp\TNSBridgeApp\tns_modules\</Path>
|
|
</JSFolder>
|
|
```
|
|
|
|
## UnitTestApp - Ready to run
|
|
```xml
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
<JSFolder>
|
|
<Path>C:\Work\Git\xPlatCore\Applications\Android\UnitTestApp\assets\tns_modules</Path>
|
|
</JSFolder>
|
|
``` |