mirror of
				https://github.com/tooot-app/app
				synced 2025-06-05 22:19:13 +02:00 
			
		
		
		
	Update AndroidManifest.xml
Android sharing working, but only one element at a time
This commit is contained in:
		| @@ -19,7 +19,7 @@ | |||||||
|     <meta-data android:name="expo.modules.updates.ENABLED" android:value="true"/> |     <meta-data android:name="expo.modules.updates.ENABLED" android:value="true"/> | ||||||
|     <meta-data android:name="expo.modules.updates.EXPO_UPDATES_CHECK_ON_LAUNCH" android:value="ALWAYS"/> |     <meta-data android:name="expo.modules.updates.EXPO_UPDATES_CHECK_ON_LAUNCH" android:value="ALWAYS"/> | ||||||
|     <meta-data android:name="expo.modules.updates.EXPO_UPDATES_LAUNCH_WAIT_MS" android:value="0"/> |     <meta-data android:name="expo.modules.updates.EXPO_UPDATES_LAUNCH_WAIT_MS" android:value="0"/> | ||||||
|     <activity android:name=".MainActivity" android:label="@string/app_name" android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode" android:launchMode="singleTask" android:windowSoftInputMode="adjustResize" android:theme="@style/Theme.App.SplashScreen" android:screenOrientation="portrait"> |     <activity android:name=".MainActivity" android:label="@string/app_name" android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode" android:launchMode="singleTask" android:windowSoftInputMode="adjustResize" android:theme="@style/Theme.App.SplashScreen" android:screenOrientation="portrait" android:documentLaunchMode="never"> | ||||||
|       <intent-filter> |       <intent-filter> | ||||||
|         <action android:name="android.intent.action.MAIN"/> |         <action android:name="android.intent.action.MAIN"/> | ||||||
|         <category android:name="android.intent.category.LAUNCHER"/> |         <category android:name="android.intent.category.LAUNCHER"/> | ||||||
| @@ -31,6 +31,13 @@ | |||||||
|         <data android:scheme="tooot"/> |         <data android:scheme="tooot"/> | ||||||
|         <data android:scheme="com.xmflsct.app.tooot"/> |         <data android:scheme="com.xmflsct.app.tooot"/> | ||||||
|       </intent-filter> |       </intent-filter> | ||||||
|  |       <intent-filter> | ||||||
|  |         <action android:name="android.intent.action.SEND" /> | ||||||
|  |         <category android:name="android.intent.category.DEFAULT" /> | ||||||
|  |         <data android:mimeType="text/plain" /> | ||||||
|  |         <data android:mimeType="image/*" /> | ||||||
|  |         <!-- Any other mime types you want to support --> | ||||||
|  |       </intent-filter> | ||||||
|     </activity> |     </activity> | ||||||
|   </application> |   </application> | ||||||
| </manifest> | </manifest> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user