I updated to Android Studio 2.0 and debugged an app with it. I noticed that the debug-app isn't listed in launchable apps in the menu anymore and thought that this might be due to the new instant-run feature of Android Studio 2.0.
Then, I generated a signed release .apk and uploaded it to the store. Two test devices installed the update but they aren't able to launch the app anymore. It isn't listed in the said menu too and Google Play's only option is to "uninstall" the app, there is no launch button.
Where do I have to search for the cause of this issue and how can I resolve it? I already checked my AndroidManifest.xml to mark the Activity as Main:
<activity
android:name=".activities.LoginActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<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="myapp" />
</intent-filter>
</activity>