com.jaspersoft.android.samples.jaspermobile.action.ADD_SERVER_PROFILE
com.jaspersoft.android.samples.jaspermobile.action.EDIT_SERVER_PROFILE
1 Answer:
Posted on November 22, 2012 at 4:44am
Hmm... What do you hope to find?
These are just action names (action name is just a String ID, not a constant or class).
For more details see AndroidManifest.xml:
...<activity android:name=".activities.ServerProfileActivity">
<intent-filter>
<action android:name="com.jaspersoft.android.samples.jaspermobile.action.ADD_SERVER_PROFILE" />
<action android:name="com.jaspersoft.android.samples.jaspermobile.action.EDIT_SERVER_PROFILE" />
</intent-filter>
</activity>
...
thanks.......i can understand that issue........no problem now