This site permanently moved to
https://droidscript.github.io
. Please update links accordingly.
You are being forwarded automatically in 3...
[stay here]
Back
IsPremium
JS
Py
Hello World
Checks if the user has a DroidScript premium subscription inside the IDE.
app.IsPremium() →
Boolean
Example - Check Premium subscription
click to expand contents
function
OnStart
(
)
{
var
premium
=
app
.
IsPremium
(
)
;
app
.
Alert
(
premium
,
"IsPremium"
)
;
}
from
native
import
app
def
OnStart
(
)
:
premium
=
app
.
IsPremium
(
)
app
.
Alert
(
premium
,
"IsPremium"
)
Copy
Copy All
Run
loading