I'm using google-play-services library in my app which is a eclipse project. When final apk creating, it's containing some extra entries in manifest.xml file which is showing as containing ads alert when publishing app. Extra entries showing like -
<activity android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
android:name="com.google.android.gms.ads.AdActivity"
android:theme="@android:style/Theme.Translucent" />
How could we ignore/remove these entries from final apk?
<activity android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
android:name="com.google.android.gms.ads.AdActivity"
android:theme="@android:style/Theme.Translucent"
tools:node="remove" />
I think tools:node="remove"
can be used for gradle build or will work for eclipse build as well?