3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Android Studio移行でアプリアイコンが複数出るようになった話

Last updated at Posted at 2015-09-04

exlipse → Android Studioへ移行したらアプリアイコンが複数出るようになって戦ったメモ。

直接的な原因はこの辺でも紹介されているようにManifest.xmlに

Manifest.xml
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />

が複数存在するからなのですが、何度確認しても1つしか見当たらない...

困りはててManifest周りのドキュメント探していたらこんな記事が

Android StudioはGradleを採用しているのでAndroidManifest.xml が複数あった場合マージされるとの事。。。

Android Studio への引っ越しトラブル ~ Manifest Merger編 ~

###Σ(゚□゚(゚□゚*)ナニーッ!!

というわけで利用しているライブラリのAndroidManifest.xmlを確認したところ上記の表記ががが
削除して治りましたとさ...orz

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?