aERROR getting 'android:icon' attribute: attribute is not a string value
678 ワード
Apkがアプリにアップロードしたとき、テンセントはエラーを検出した.
aaptツールの解析結果は以下の通りです(エラーコード:11050401):
aERROR getting'android:icon'attribute:attribute is not a string valueというエラーが発生しました
色の値をiconに直接設定する可能性が高い:
iconを透明な画像に設定することをお勧めします.これで上記の問題は発生しません.
考え方:色は整形でstringではありません
aaptツールの解析結果は以下の通りです(エラーコード:11050401):
aERROR getting'android:icon'attribute:attribute is not a string valueというエラーが発生しました
色の値をiconに直接設定する可能性が高い:
<activity
android:name=".appendplug.im.xxxActivity"
android:icon="@color/transparent"
android:logo="@color/transparent"
android:screenOrientation="sensorPortrait"
android:theme="@style/MainTheme"
android:windowSoftInputMode="stateHidden" />
iconを透明な画像に設定することをお勧めします.これで上記の問題は発生しません.
考え方:色は整形でstringではありません