I am quite new to app-development, and I ran into this problem after finishing my first app. Everything works fine when I launch it from android-studio, but when I build a release-apk and move it to my phone to install it (which works fine), I find no possibility to open it. The open button in the installing-screen is disabled and there is no entry in the app-menu on my phone. Here is my Manifest.xml, I hope that helps:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat.NoActionBar"
android:name="android.support.multidex.MultiDexApplication">
<activity android:name=".activities.MainActivity"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http"
android:host="@string/filter_title_rchat" />
</intent-filter>
</activity>
<activity
android:name=".activities.ChatActivity"
android:label="@string/chatActivityHeader"
android:windowSoftInputMode="adjustResize"/>
<activity android:name=".activities.SignupActivity"/>
</application>
I found several people with a similar problem, however they all seem to have forgotten the
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
part. Also I read that multidex might be a reason for the problem, but in my research i did not find anything more specific on that.
Thank you for your time.