cancel
Showing results for 
Search instead for 
Did you mean: 

How to fix APK is launchable (launchable-activity)?

mbodekaer
Honored Guest
Hey guys,

I'm getting the error APK is launchable (launchable-activity). What should I add in the manifest file to fix this issue?

Thanks!
3 REPLIES 3

mbodekaer
Honored Guest
Found it. I just need to comment <category android:name="android.intent.category.LAUNCHER" /> from the manifest.

Next question, how do I remove this warning?
GLES version is (not specified) (uses-gl-es)

dsky9
Honored Guest
THANK YOU!
dSky builds the worlds best VR apps for SCIENCE. GPU : HD 7990 6GB, CPU : i5-4690K @ 3.5GHz, MB : Asus Z87, RAM : 16GB DDR3, PSU : EVGA 850w, mouse : Razer Naga, kybd : MS Sculpt Ergo, OS : Win7sp1, OC : 0.8.0, HMDs: DK2 + GearVR, LAP : 2012 MBAir

dsky9
Honored Guest
"mbodekaer" wrote:
Found it. I just need to comment
<category android:name="android.intent.category.LAUNCHER" /> from the manifest.


and replace it with:
<category android:name="android.intent.category.INFO" />


"mbodekaer" wrote:
Next question, how do I remove this warning?
GLES version is (not specified) (uses-gl-es)


add this line:
<uses-feature android:glEsVersion="0x00030000" android:required="true" />


This is the best, latest resource I've found on the AndroidManifest.xml file:
https://developer.oculus.com/documentat ... -manifest/
dSky builds the worlds best VR apps for SCIENCE. GPU : HD 7990 6GB, CPU : i5-4690K @ 3.5GHz, MB : Asus Z87, RAM : 16GB DDR3, PSU : EVGA 850w, mouse : Razer Naga, kybd : MS Sculpt Ergo, OS : Win7sp1, OC : 0.8.0, HMDs: DK2 + GearVR, LAP : 2012 MBAir