How can I set preferenced data type - PDF on Sharesheet for my app?

When I tap my app's icon on suggestion of safari sharesheet, I gets URL of website through Share Extension. I want to get PDF file cached url for default. User can select PDF inside option menu on the top of sharesheet. Can I set it to PDF as default?

ShareExtension Info-plist

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    
	<key>NSExtension</key>

	<dict>
        
		<key>NSExtensionAttributes</key>
		<dict>
			<key>NSExtensionActivationRule</key>
			<dict>
                
				<key>NSExtensionActivationSupportsAttachmentsWithMaxCount</key>
				<integer>20</integer>
                
                <key>NSExtensionActivationSupportsFileWithMaxCount</key>
                <integer>20</integer>
                
                <key>NSExtensionActivationSupportsWebPageWithMaxCount</key>
                <integer>0</integer>
                
                <key>NSExtensionActivationSupportsWebURLWithMaxCount</key>
                <integer>0</integer>
                
			</dict>
		</dict>
        
		<key>NSExtensionMainStoryboard</key>
		<string>MainInterface</string>
        
		<key>NSExtensionPointIdentifier</key>
		<string>com.apple.share-services</string>
	</dict>

</dict>
</plist>

Main App info-plist

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>CFBundleDocumentTypes</key>
	<array>
		<dict>
			<key>CFBundleTypeName</key>
			<string>PDF</string>
			<key>CFBundleTypeRole</key>
			<string>Editor</string>
			<key>LSHandlerRank</key>
			<string>Owner</string>
			<key>LSItemContentTypes</key>
			<array>
				<string>com.adobe.pdf</string>
			</array>
			<key>UIActivityTypes</key>
			<array>
				<string>UIActivityTypeAirDrop</string>
				<string>UIActivityTypeCopyToPasteboard</string>
				<string>UIActivityTypeAddToReadingList</string>
				<string>UIActivityTypeMarkupAsPDF</string>
				<string>UIActivityTypeOpenInIBooks</string>
				<string>UIActivityTypePrint</string>
			</array>
		</dict>
	</array>
	<key>CFBundleURLTypes</key>
	<array>
		<dict>
			<key>CFBundleTypeRole</key>
			<string>Editor</string>
			<key>CFBundleURLSchemes</key>
			<array>
				<string>sharePDF</string>
			</array>
		</dict>
		<dict>
			<key>CFBundleTypeRole</key>
			<string>Editor</string>
			<key>CFBundleURLSchemes</key>
			<array>
				<string>quickAction</string>
			</array>
		</dict>
	</array>
	<key>ITSEncryptionExportComplianceCode</key>
	<string>$(PRODUCT_NAME)</string>
	<key>UIFileSharingEnabled</key>
	<true/>
	<key>UTExportedTypeDeclarations</key>
	<array>
		<dict>
			<key>UTTypeConformsTo</key>
			<array>
				<string>public.data</string>
				<string>public.composite-content</string>
			</array>
			<key>UTTypeDescription</key>
			<string>PDF Document</string>
			<key>UTTypeIdentifier</key>
			<string>com.adobe.pdf</string>
			<key>UTTypeTagSpecification</key>
			<dict>
				<key>public.filename-extension</key>
				<string>pdf</string>
				<key>public.mime-type</key>
				<string>application/pdf</string>
			</dict>
		</dict>
	</array>
</dict>
</plist>

How can I set preferenced data type - PDF on Sharesheet for my app?
 
 
Q