我正在使用React Native版本0.58。
我在所有mipmap文件夹中均使用默认的ic_launcher.png替换了我的应用程序图标。但是应用程序图标仍是默认的android图标。我确定我的png大小适合相应的mipmap文件夹。
谢谢
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.cekilissepeti">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<uses-permission tools:node="remove" android:name="android.permission.READ_PHONE_STATE" />
<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
</application>
答案 0 :(得分:0)
我不得不将文件重命名为与ic_launcher_round
和ic_launcher
不同的名称,
然后我更新了AndroidMaifest.xml
:
<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/launcher_new_name"
android:roundIcon="@mipmap/launcher_new_name_round"
答案 1 :(得分:0)
我必须从app / src / main / res文件夹中删除“ mipmap-anydpi-v26”,该文件夹包含两个xml文件,每个文件分别包含普通图标和圆形图标。