I would like to define my own "SetupWizard" application. To do so, I am using this intent-filter and it works fine :
<intent-filter android:priority="5">
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.DEVICE_INITIALIZATION_WIZARD" />
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
However I don't know how to tell that the Wizard is over. For now, it is just looping after my last finish() call.
How can I tell it ?
Tkx.