已安装的未签名APK缺少启动器图标

时间:2018-02-19 09:45:30

标签: android

我已经在Android Studio中执行了以下步骤来构建未签名的APK:

Build > Build APK(s)

构建APK后,按下屏幕右下方弹出窗口中的Locate超链接,在我的Finder中找到APK。

我把这个APK放在Dropbox上,并打开我要测试的手机上的公共链接。我在手机上下载并安装了APK,一切正常。该应用程序启动正常。

唯一的问题是它似乎没有与之关联的启动器图标。

这是我的清单文件中的内容:

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity
        android:name=".SelectCoin"
        android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>
            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>
</application>

3 个答案:

答案 0 :(得分:0)

以下列方式使用 Image Asset Studio

enter image description here

然后创建一个传统的启动器图标。

enter image description here

有关更多参考,请阅读android developer Doc.

答案 1 :(得分:0)

不好意思承认我在这个特定手机上安装的所有其他应用程序中找到了可扩展的6点图标下的启动器图标。我只是在主屏幕上看。

答案 2 :(得分:-1)

您应该导入所需的启动器图标 按新 - &gt; android studio中的图像资源

希望这会有所帮助