v0.0.3
What's new
- Fix for the issue in the plugin which could not handle the case when in manifest there is more than one tag within the same parent with the same name and set of attributes. Like the following one:
<activity android:name=".MainActivity" android:exported="true">
<intent-filter>
<action android:name="android.intent.action.SEND"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="image/*"/>
</intent-filter>
</activity>
Full Changelog: v0.0.2...v0.0.3