If you're not careful and you're trying to disable something in your app manifest make sure you don't disable the app...
<application
android:allowBackup="false"
android:enabled="true"
...
I accidentally set enabled
to "false" instead of allowBackup
. Wasted 2 hours searching for a solution.