Android Manifest being created/updated incorrectly causing Android build to fail

Wappler Version: 6.8.0
Operating System: Windows
Server Model: Capacitor
Database Type: SQLite

Expected behavior

The AndroidManifest.xml should not add category or action elements in the Permission section

Actual behavior

Duplicate category and action elements are being added in the permission section.

<?xml version="1.0" encoding="utf-8" ?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
  <application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme"
  >
    <activity
      android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
      android:name=".MainActivity"
      android:label="@string/title_activity_main"
      android:theme="@style/AppTheme.NoActionBarLaunch"
      android:launchMode="singleTask"
      android:exported="true"
    >
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>

      <intent-filter>
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />
      </intent-filter>
    </activity>

    <provider
      android:name="androidx.core.content.FileProvider"
      android:authorities="${applicationId}.fileprovider"
      android:exported="false"
      android:grantUriPermissions="true"
    >
      <meta-data
        android:name="android.support.FILE_PROVIDER_PATHS"
        android:resource="@xml/file_paths"
      />
    </provider>
  </application>

  <!-- Permissions -->
  <uses-permission android:name="android.permission.INTERNET" />
  **<action android:name="android.intent.action.VIEW" />**
  **<category android:name="android.intent.category.DEFAULT" />**
  **<category android:name="android.intent.category.BROWSABLE" />**
</manifest>

How to reproduce

Build an Android app and view the Android Manifest.

1 Like

Indeed, this is quite annoying... As every build it is inserted again and again.