BaGRoS Active Member Licensed User Longtime User May 17, 2013 #1 How do I that my application was not visible in the app drawer? In the management of applications in the settings menu can be seen. It has run only as a service. RESOLVED Last edited: May 17, 2013
How do I that my application was not visible in the app drawer? In the management of applications in the settings menu can be seen. It has run only as a service. RESOLVED
corwin42 Expert Licensed User Longtime User May 18, 2013 #2 Adding the following lines to the manifest editor should do the trick: B4X: AddReplacement(<action android:name="android.intent.action.MAIN" />, ) AddReplacement(<category android:name="android.intent.category.LAUNCHER" />, ) Upvote 0
Adding the following lines to the manifest editor should do the trick: B4X: AddReplacement(<action android:name="android.intent.action.MAIN" />, ) AddReplacement(<category android:name="android.intent.category.LAUNCHER" />, )
BaGRoS Active Member Licensed User Longtime User May 20, 2013 #3 How to do a similar thing from the application? So like it does the license key PowerAMP. RESOLVED -> http://www.b4x.com/forum/basic4andr...3-how-hide-icon-two-icons-app-app-drawer.html I set .main as activity to hide, and works fine. Last edited: May 20, 2013 Upvote 0
How to do a similar thing from the application? So like it does the license key PowerAMP. RESOLVED -> http://www.b4x.com/forum/basic4andr...3-how-hide-icon-two-icons-app-app-drawer.html I set .main as activity to hide, and works fine.