I converted a legacy Android app to library and placed it into my current flutter project to call it using Method Channel. It's working fine, but the problem is that flutter is installing those two apps at the same time and showing two icons on device screen! Even using this second app as library and dependency. Flutter is installing both as regular apps.
I am using flutter 1.7.8.
I tried to follow this answer -> How to use a library project in android studio
I would like to install only my flutter app and using the second one as library/dependency inside of it.