"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7693/android/app/src/main/AndroidManifest.xml" (8 Dec 2023, 2058 Bytes) of package /linux/misc/jitsi-meet-7693.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) XML source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 <manifest
    2     xmlns:android="http://schemas.android.com/apk/res/android"
    3     package="org.jitsi.meet"
    4     android:installLocation="auto">
    5   <application
    6       android:allowBackup="true"
    7       android:extractNativeLibs="true"
    8       android:icon="@mipmap/ic_launcher"
    9       android:label="@string/app_name"
   10       android:networkSecurityConfig="@xml/network_security_config"
   11       android:theme="@style/AppTheme">
   12     <meta-data
   13         android:name="android.content.APP_RESTRICTIONS"
   14         android:resource="@xml/app_restrictions" />
   15     <activity
   16         android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
   17         android:exported="true"
   18         android:label="@string/app_name"
   19         android:launchMode="singleInstance"
   20         android:taskAffinity=""
   21         android:name=".MainActivity"
   22         android:resizeableActivity="true"
   23         android:supportsPictureInPicture="true"
   24         android:windowSoftInputMode="adjustResize">
   25       <meta-data android:name="firebase_crashlytics_collection_enabled" android:value="false" />
   26       <intent-filter>
   27         <action android:name="android.intent.action.MAIN" />
   28         <category android:name="android.intent.category.LAUNCHER" />
   29       </intent-filter>
   30       <intent-filter>
   31         <action android:name="android.intent.action.VIEW" />
   32         <category android:name="android.intent.category.BROWSABLE" />
   33         <category android:name="android.intent.category.DEFAULT" />
   34         <data android:host="alpha.jitsi.net" android:scheme="https" />
   35         <data android:host="beta.meet.jit.si" android:scheme="https" />
   36         <data android:host="meet.jit.si" android:scheme="https" />
   37       </intent-filter>
   38       <intent-filter>
   39         <action android:name="android.intent.action.VIEW" />
   40         <category android:name="android.intent.category.BROWSABLE" />
   41         <category android:name="android.intent.category.DEFAULT" />
   42         <data android:scheme="org.jitsi.meet" />
   43       </intent-filter>
   44     </activity>
   45   </application>
   46 </manifest>