當我嘗試在平板電腦上安裝我的應用程序時,屏幕上顯示「您想安裝此應用程序嗎?」我只能按取消按鈕,而不是安裝按鈕(但看起來很正常)。我從未知來源啓動安裝設置,Android版本足夠晚。我的清單看起來是這樣的:平板電腦上的Android安裝按鈕無法正常工作
<?xml version="1.0" encoding="utf-8"?>
<uses-sdk android:minSdkVersion="14"/>
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
>
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
我認爲,支持屏標籤可以解決這個問題,但顯然事實並非如此。 如果代碼或其他文件是必要的,請告訴我。 我可以在android studio模擬器的平板電腦上安裝應用程序。沒有錯誤信息,這是我第一次遇到這種情況。
你有什麼建議嗎?謝謝你的幫助!
你有沒有嘗試從命令行或Android工作室安裝? –
我發郵件給我apk並打開它 – nic2307
嘗試關閉應用驗證。請參閱[此處](https://support.google.com/accounts/answer/2812853?hl=en)以獲取步驟。 –