我的應用程序運行finely when i run
..但它並不能在一些其他Android devices..Here我包括我的screenshots + Android Manifest
..please幫我開..無法在其他設備中打開我的應用程序?
截圖
的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>