Here is my android manifest file. I can install the apk, but I cannot open it. How do I allow it to open?
`
<application
android:allowBackup="true"
android:icon="@drawable/lockicon"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<!-- ATTENTION: This was auto-generated to add Google Play services to your project for
App Indexing. See https://g.co/AppIndexing/AndroidStudio for more information. -->
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
</application>
`