Before set your app as launcher please consider a way to quit your app in case you couldn't quit your app any more.
Set your app as launcher:
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
<category android:name="android.intent.category.HOME"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
Set your app as default launcher:
Intent intentlauncher = new Intent("android.intent.action.launcher");
intentlauncher.putExtra("application","com.telpo.tpui/com.telpo.tpui.UserDeskActivity");// here is your packagename and the launcher activity name
sendBroadcast(intentlauncher);