BUILD RELEASE ARTIFACTS

Mobile App Builder-Android

Mobile App Builder-Android

SERVER_TYPE

NONOAM

KEY_SERVER_URL

Eg. http://mum00chx.in.oracle.com:3333

WEB_URL

Eg. http://mum00chx.in.oracle.com:3333

SERVER_CERTIFICATE_KEY

Refer point 6.7

SERVER_TYPE

OAM

KEY_SERVER_URL

Eg. http://mum00chx.in.oracle.com:8003

(This URL must be of OHS without webgate)

WEB_URL

Eg. http://mum00chx.in.oracle.com:3333

KEY_OAUTH_PROVIDER_URL

http://mum00aon.in.oracle.com:14100/oauth2/rest/token

APP_CLIENT_ID

<Base64 of clientid:secret> of Mobile App client

APP_DOMAIN

OBDXMobileAppDomain

WATCH_CLIENT_ID

<Base64 of clientid:secret> of wearables

WATCH_DOMAIN

OBDXWearDomain

SNAPSHOT_CLIENT_ID

<Base64 of clientid:secret> of snapshot

SNAPSHOT_DOMAIN

OBDXSnapshotDomain

LOGIN_SCOPE

OBDXMobileAppResServer.OBDXLoginScope

SERVER_CERTIFICATE_KEY

Refer point 6.7

SERVER_TYPE

IDCS

KEY_SERVER_URL

Eg. http://mum00chx.in.oracle.com:8003

(This URL must be of OHS without webgate)

WEB_URL

Eg. http://mum00chx.in.oracle.com:3333

KEY_OAUTH_PROVIDER_URL

http://obdx-tenant01.identity.c9dev0.oc9qadev.com/oauth2/v1/token

APP_CLIENT_ID

<Base64 of clientid:secret> of Mobile App client

WATCH_CLIENT_ID

<Base64 of clientid:secret> of wearables

SNAPSHOT_CLIENT_ID

<Base64 of clientid:secret> of snapshot

LOGIN_SCOPE

OBDXLoginScope

OFFLINE_SCOPE

urn:opc:idm:__myscopes__ offline_access

SERVER_CERTIFICATE_KEY

Refer point 6.7

CHATBOT_ID

The tenant ID

CHATBOT_URL

The web socket URL for the ChatApp application in IBCS

Mobile App Builder-Android

Mobile App Builder-Android

Mobile App Builder-Android

Mobile App Builder-Android

Mobile App Builder-Android

Note: The application has config page to add URL. This is for development purpose only and can be removed using below step. (Update content src tag)

Mobile App Builder-Android

<IfModule mod_headers.c>
	<If "%{HTTP_USER_AGENT} =~ /obdx-mobile-android/">
	Header edit Set-Cookie ^(.*)$ $1;SameSite=None;Secure
</If>
<If "%{HTTP_USER_AGENT} =~ /obdx-softtoken/">
	Header edit Set-Cookie ^(.*)$ $1;SameSite=None;Secure
</If>
</IfModule>

 

With below one as,

<IfModule mod_headers.c>
<If "%{HTTP_USER_AGENT} =~ /obdx-mobile-android/">
	Header edit Set-Cookie "SameSite=Strict" ""
</If>
<If "%{HTTP_USER_AGENT} =~ /obdx-softtoken/">
	Header edit Set-Cookie "SameSite=Strict" ""
</If>
</IfModule>

Note: We strongly recommend you to use https setup with sdk 31 only, as google play store won’t allow app’s below sdk 31.

 

Back