无法在其他设备上打开我的应用程序?

Unable to Open my App in other Devices?

我的应用程序运行 finely when i run..但它无法在其他一些 Android 设备上打开..这里我包括我的 screenshots + Android Manifest..请帮助我..

截图

Android Manifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="ajay.com.mydict">
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".ListActi">
        </activity>
        <activity android:name=".OnlyDes" />
        <activity android:name=".BothLay" />
        <activity android:name=".Listing" />
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <data android:mimeType="text/plain" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

我编辑了我的 AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="ajay.com.mydict">
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".ListActi">
        </activity>
        <activity android:name=".OnlyDes" />
        <activity android:name=".BothLay" />
        <activity android:name=".Listing" />
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

我认为应该用于在文本选择时隐藏 Actionbar 名称..但它不起作用..所以我删除了该行..它起作用了..抱歉,在尝试之前我把它贴在这里..

清单准备就绪,请在此处检查您的设置==> build.gradle(模块:应用程序)

android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
defaultConfig {
    applicationId "www.appcodeinfotech.com"
    minSdkVersion 15
    targetSdkVersion 24
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
 }
}