android - Launcher and Home Application causes Samsung device to get stuck on reboot -


sorry long question , sorry if not right place post it. real question in end below. created application launcher application. here's code androidmanifest.xml

   <activity          android:name=".ui.activity.mainactivity"         android:excludefromrecents="true"         android:label="@string/app_name"         android:launchmode="singletask"         android:configchanges="uimode|keyboard|keyboardhidden|orientation"         android:screenorientation="sensorlandscape"         android:theme="@style/apptheme.toolbar"         android:windowsoftinputmode="adjustnothing">         <intent-filter>             <action android:name="android.intent.action.main"/>              <category android:name="android.intent.category.launcher"/>             <category android:name="android.intent.category.default"/>             <category android:name="android.intent.category.home"/>         </intent-filter>      </activity> 

the issue have when restart device (samsung sm-t365 - galaxy tab active 8.0) application installed, device gets stuck @ samsung logo loading. have factory reset (wipe data) able access device again. when don't have application installed there's no problem when restart device.

the question is

is there known issue causes devices have issue or should in home application avoid issue?


Comments

Popular posts from this blog

javascript - Clear button on addentry page doesn't work -

c# - Selenium Authentication Popup preventing driver close or quit -

tensorflow when input_data MNIST_data , zlib.error: Error -3 while decompressing: invalid block type -