Skip to content

v0.0.3

Compare
Choose a tag to compare
@int02h int02h released this 15 Sep 20:05
· 10 commits to main since this release

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