Action_Send

У меня стоит андроид 12.
Хочу получить простой текстовый файл из Проводника в моё приложение через Поделиться.
Вот что я написал:

 <activity
            android:name=".MainActivity"
	    android:launchMode="singleTask"
            android:exported="true">
            <intent-filter>
                ...
			<intent-filter>
			<action android:name = "android.intent.action.SEND" />
			<category android:name = "android.intent.category.DEFAULT" />
			<data android:mimeType="text/*" />
			</intent-filter>
        </activity>

И

@Override
	protected void onNewIntent(Intent intt) {
		final String act = intt.getAction();
		if(Intent.ACTION_SEND.equals(act) ){
			title.post( new Runnable() {
				@Override
				public void run() {
					title.setText(""
					+intt.getExtras()
					);
				}
			});
		}
	}

Приложение показывает:

Bundle[mParcelledData.dataSize=516]

Тоесть, данные есть, но как их извлечь я не знаю.

Вызывать нужные методы у него, например getStringExtra

https://developer.android.com/training/sharing/receive

Вызывал, выдаёт null.

intent.getStringExtra (“android.intent.extra.TEXT”) выдаёт null.