署名付きアプリケーションをアップロードしようとしました。 Playストアショーアンドロイドmanifest.xml.343 'android:label'値の参照が存在しないエラー。私はAndroidManifest.xml
とStringsを行ごとにチェックしましたが、残念ながら私は把握しませんでした。Aapt dumb badgingエラー
ローカルで同じエラーをシミュレートします。私は "./aapt dump badging myapp.apk"を実行します。同じエラーが表示されます。
マニフェストファイル
<application
android:name=".MainApplication"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:largeHeap="true"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:replace="android:name,android:theme">
<activity
android:name=".settings.ui.MainBoardActivity"
android:launchMode="singleTop"
android:screenOrientation="portrait"
android:theme="@style/masterapp_core_theme.NoActionBar" />
<activity
android:name=".settings.ui.MASplashScreenActivity"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Translucent.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER"
/>
</intent-filter>
</activity>
.........
</application>
マニフェストを表示してください。 –
短縮しないでください。そして343番を指し示します – Zoe
Line 343はAndroid Manifestファイルとは関係ありません。 アプリケーション:label = 'App'アイコン= 'res/drawable-mdpi-v4/ic_launcher.png' launchable-activity:name = 'com.app.oneapp.settings.ui.MASplashScreenActivity' 'android:label'属性を取得中にエラーが発生しました:属性値の参照が存在しません – gokhan