Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
napi-android/scripts/build.js at main · NativeScript/napi-android · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
NativeScript
/
napi-android
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
3
Star
33
Code
Issues
9
Pull requests
2
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
main
Breadcrumbs
napi-android
/
scripts
/
build.js
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
156 lines (132 loc) · 4.97 KB
main
Breadcrumbs
napi-android
/
scripts
/
build.js
Copy path
Top
File metadata and controls
Code
Blame
156 lines (132 loc) · 4.97 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#!/usr/bin/env node
// Simple build helper for NativeScript Android runtime.
// Supports interactive prompts or direct CLI flags.
// See README in the repo for Gradle usage.
const
{
spawn
}
=
require
(
'child_process'
)
;
const
path
=
require
(
'path'
)
;
const
readline
=
require
(
'readline'
)
;
const
VALID_ENGINES
=
[
'V8-10'
,
"V8-11"
,
"V8-13"
,
'QUICKJS'
,
"QUICKJS_NG"
,
'HERMES'
,
'JSC'
,
'SHERMES'
,
'PRIMJS'
]
;
const
HOST_OBJECTS_SUPPORTED
=
new
Set
(
[
'V8-10'
,
'V8-11'
,
"V8-13"
,
'QUICKJS'
,
"QUICKJS_NG"
,
'PRIMJS'
]
)
;
function
parseArgs
(
argv
)
{
const
opts
=
{
}
;
argv
.
forEach
(
arg
=>
{
if
(
!
arg
.
startsWith
(
'--'
)
)
return
;
const
eq
=
arg
.
indexOf
(
'='
)
;
if
(
eq
!==
-
1
)
{
const
k
=
arg
.
slice
(
2
,
eq
)
;
const
v
=
arg
.
slice
(
eq
+
1
)
;
opts
[
k
]
=
v
;
}
else
{
const
k
=
arg
.
slice
(
2
)
;
// flag -> boolean true
opts
[
k
]
=
true
;
}
}
)
;
return
opts
;
}
async
function
prompt
(
question
,
rl
,
defaultVal
)
{
return
new
Promise
(
resolve
=>
{
const
q
=
defaultVal
?
`
${
question
}
(
${
defaultVal
}
) `
:
`
${
question
}
`
;
rl
.
question
(
q
,
ans
=>
{
if
(
!
ans
&&
typeof
defaultVal
!==
'undefined'
)
return
resolve
(
defaultVal
)
;
resolve
(
ans
)
;
}
)
;
}
)
;
}
async
function
interactiveFill
(
opts
)
{
const
rl
=
readline
.
createInterface
(
{
input
:
process
.
stdin
,
output
:
process
.
stdout
}
)
;
try
{
// If skip-all-args is given, only ask for engine and host-objects (when supported).
if
(
opts
[
'skip-all-args'
]
)
{
if
(
!
opts
.
engine
)
{
console
.
log
(
'Select JS engine:'
)
;
VALID_ENGINES
.
forEach
(
(
e
,
i
)
=>
console
.
log
(
`
${
i
+
1
}
)
${
e
}
`
)
)
;
const
ans
=
await
prompt
(
'Choose number or name'
,
rl
,
'V8-10'
)
;
const
pick
=
/
^
\d
+
$
/
.
test
(
ans
)
?
VALID_ENGINES
[
Number
(
ans
)
-
1
]
:
ans
;
opts
.
engine
=
VALID_ENGINES
.
includes
(
pick
)
?
pick
:
'V8-10'
;
}
// Only prompt for host objects if the chosen engine supports it
if
(
HOST_OBJECTS_SUPPORTED
.
has
(
opts
.
engine
)
)
{
if
(
typeof
opts
[
'use-host-objects'
]
===
'undefined'
)
{
const
ans
=
await
prompt
(
'Use host objects? [y/N]'
,
rl
,
'N'
)
;
if
(
/
^
y
(
e
s
)
?
$
/
i
.
test
(
ans
)
)
opts
[
'use-host-objects'
]
=
true
;
}
}
else
{
// ensure the flag is not set for unsupported engines
if
(
opts
[
'use-host-objects'
]
)
{
console
.
log
(
`Warning: host objects not supported for engine
${
opts
.
engine
}
; ignoring --use-host-objects`
)
;
delete
opts
[
'use-host-objects'
]
;
}
}
return
opts
;
}
// original interactive flow (unchanged) when not skipping all args
if
(
!
opts
.
engine
)
{
console
.
log
(
'Select JS engine:'
)
;
VALID_ENGINES
.
forEach
(
(
e
,
i
)
=>
console
.
log
(
`
${
i
+
1
}
)
${
e
}
`
)
)
;
const
ans
=
await
prompt
(
'Choose number or name'
,
rl
,
'V8'
)
;
const
pick
=
/
^
\d
+
$
/
.
test
(
ans
)
?
VALID_ENGINES
[
Number
(
ans
)
-
1
]
:
ans
;
opts
.
engine
=
VALID_ENGINES
.
includes
(
pick
)
?
pick
:
'V8'
;
}
const
booleanPrompts
=
[
{
key
:
'use-host-objects'
,
prop
:
'useHostObjects'
,
desc
:
'Use host objects (useHostObjects)'
}
,
]
;
for
(
const
p
of
booleanPrompts
)
{
// skip host-objects prompt if the selected engine does not support it
if
(
p
.
key
===
'use-host-objects'
&&
!
HOST_OBJECTS_SUPPORTED
.
has
(
opts
.
engine
)
)
{
if
(
opts
[
'use-host-objects'
]
)
{
console
.
log
(
`Warning: host objects not supported for engine
${
opts
.
engine
}
; ignoring --use-host-objects`
)
;
delete
opts
[
'use-host-objects'
]
;
}
continue
;
}
if
(
typeof
opts
[
p
.
key
]
===
'undefined'
)
{
const
ans
=
await
prompt
(
`
${
p
.
desc
}
? [y/N]`
,
rl
,
'N'
)
;
if
(
/
^
y
(
e
s
)
?
$
/
i
.
test
(
ans
)
)
opts
[
p
.
key
]
=
true
;
}
}
}
finally
{
rl
.
close
(
)
;
}
return
opts
;
}
function
buildGradleArgs
(
opts
)
{
const
props
=
[
]
;
if
(
opts
.
engine
)
props
.
push
(
`-Pengine=
${
opts
.
engine
}
`
)
;
if
(
opts
[
'use-host-objects'
]
)
props
.
push
(
'-PuseHostObjects'
)
;
if
(
opts
[
'as-napi-module'
]
)
props
.
push
(
'-PasNapiModule'
)
;
return
props
;
}
async
function
main
(
)
{
const
initial
=
parseArgs
(
process
.
argv
.
slice
(
2
)
)
;
const
opts
=
await
interactiveFill
(
initial
)
;
const
gradleProps
=
buildGradleArgs
(
opts
)
;
const
gradlew
=
process
.
platform
===
'win32'
?
'gradlew'
:
'./gradlew'
;
const
gradleCmd
=
[
gradlew
]
.
concat
(
gradleProps
,
[
]
)
;
console
.
log
(
'\nGradle command:'
)
;
console
.
log
(
gradleCmd
.
join
(
' '
)
,
'\n'
)
;
if
(
opts
[
'dry-run'
]
)
{
console
.
log
(
'Dry run requested. Exiting without executing gradle.'
)
;
return
;
}
const
proc
=
spawn
(
gradleCmd
[
0
]
,
gradleCmd
.
slice
(
1
)
,
{
stdio
:
'inherit'
,
cwd
:
process
.
cwd
(
)
,
shell
:
false
}
)
;
proc
.
on
(
'exit'
,
code
=>
{
if
(
code
===
0
)
{
console
.
log
(
'\nBuild finished successfully.'
)
;
}
else
{
console
.
error
(
`\nBuild failed with exit code
${
code
}
.`
)
;
}
process
.
exit
(
code
)
;
}
)
;
proc
.
on
(
"message"
,
(
message
)
=>
{
console
.
log
(
message
)
;
}
)
proc
.
on
(
'error'
,
err
=>
{
console
.
error
(
'Failed to start gradle:'
,
err
.
message
||
err
)
;
process
.
exit
(
1
)
;
}
)
;
}
main
(
)
.
catch
(
err
=>
{
console
.
error
(
'Error:'
,
err
&&
err
.
message
?
err
.
message
:
err
)
;
process
.
exit
(
1
)
;
}
)
;
You can’t perform that action at this time.