Accela Amobile
File: AuthorizationActivity.java
Accela, Inc.
Copyright (C): 2013
Description:
The activity which presents the authorization web view, handle the data returned from the authorization web view.
Notes:
This activity must be declared in your Android project's AndroidManifest.xml file because it is required in user authorization.
And the value of android:scheme should be assigned to the urlSchema property when AccelaMobile class is initialized.
Here is the complete content of the activity definition which should be added in AndroidManifest.xml file.
<activity android:name="com.accela.mobile.AuthorizationActivity" android:windowSoftInputMode="stateHidden" >
<intent-filter>
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:scheme="amtest" android:host="authorize"></data>
</intent-filter>
</activity>
Revision History
@since 3.0