When I debug an app written in Android Studio on my devices (Galaxy Note 3 and Ouya) The app debugs fine and runs on the devices, however the app never appears in the app drawer so I can not run it on a disconnected device (ie show other people the app running when away from my dev computer). My apps used to install as runnable apps but this no longer appears to happen. The app is however listed in Application Manager as an App I can uninstall, close etc.
Why does the app no longer appear in my app drawer?
-------------------------------update--------------------------
This is my manifest file
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.frd.game" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.frd.game.GameRun"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.Main" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
------------Update---------------
I have now tried to install the apk manually via the adb command and exactly the same thing happens (ie App appears in application manager but not in app drawer) So that rules out the issue being with android studio
------Update-----
I have now manually installed another test app (not a gradle one as far as I know) and it installs fine, the manifest is pretty much identical to the one I have above although obviously with different package name.