Skip to content

Instantly share code, notes, and snippets.

@juanchehin
Created March 30, 2022 16:21
Show Gist options
  • Save juanchehin/bf7a7a08407205407710e2fcc37669ce to your computer and use it in GitHub Desktop.
Save juanchehin/bf7a7a08407205407710e2fcc37669ce to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.ionic.starter">
<application
android:allowBackup="true"
android:cleartextTrafficPermitted="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="io.ionic.starter.MainActivity"
android:label="@string/title_activity_main"
android:theme="@style/AppTheme.NoActionBarLaunch"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</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"></meta-data>
</provider>
</application>
<application android:usesCleartextTraffic="true"></application>
<network-security-config>
<domain-config>
<domain includeSubdomains="true">localhost</domain>
<domain includeSubdomains="true">localhost:3000</domain>
<domain includeSubdomains="true">http://localhost:3000</domain>
</domain-config>
</network-security-config>
<!-- Permissions -->
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment