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

时间:2016-12-30 07:12:54

标签: android android-studio android-debugging

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

截图

enter image description here

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>

2 个答案:

答案 0 :(得分:0)

我编辑了我的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>

我认为应该用于隐藏动作栏名称,而文本选择..但它不起作用。所以我删除了线..它的工作..抱歉,在尝试我发布在这里..

答案 1 :(得分:0)

清单就绪,请在此处检查您的设置==&gt;的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"
 }
}