我有一个用 Go 编写的网络应用程序。从 Go 1.5 开始,我也可以为 android 设备构建它,使用 gomobile 工作正常,几乎没有任何变化。
但我无法更改应用程序的默认 android 图标。
我正在使用自定义清单文件构建应用程序:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="name.app" android:installLocation="auto"
android:versionCode="1" android:versionName="1.0-alpha">
<uses-sdk android:minSdkVersion="9" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="18" />
<application android:label="name.app" android:debuggable="true" android:icon="@assets/ic_launcher" android:persistent="true">
<activity android:name="org.golang.app.GoNativeActivity" android:configChanges="orientation|keyboardHidden"
android:alwaysRetainTaskState="true" android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<meta-data android:name="android.app.lib_name" android:value="name.app" />
</activity>
</application>
</manifest>
并尝试将图标 png 文件放在 assets 子目录中:
.
├── *.go
├── AndroidManifest.xml
└── assets
├── drawable-hdpi
│ └── ic_launcher.png
├── drawable-mdpi
│ └── ic_launcher.png
├── drawable-xhdpi
│ └── ic_launcher.png
├── drawable-xxhdpi
│ └── ic_launcher.png
├── drawable-xxxhdpi
│ └── ic_launcher.png
└── ic_launcher.png
而不是android:icon="@assets/ic_launcher"
我也尝试过android:icon="@drawable/ic_launcher"
但android:icon="@assets/drawable/ic_launcher"
没有任何结果。
有什么解决办法吗?
注意:gomobile 只有 assets 目录作为自定义文件的位置。