43 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
<?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>AppGroupId</key>
 | 
						|
    <string>$(CUSTOM_GROUP_ID)</string>
 | 
						|
    <key>CFBundleVersion</key>
 | 
						|
    <string>$(FLUTTER_BUILD_NUMBER)</string>
 | 
						|
    <key>NSExtension</key>
 | 
						|
    <dict>
 | 
						|
        <key>NSExtensionAttributes</key>
 | 
						|
        <dict>
 | 
						|
            <key>PHSupportedMediaTypes</key>
 | 
						|
            <array>
 | 
						|
                <!--TODO: Add this flag, if you want to support sharing video into your app-->
 | 
						|
                <string>Video</string>
 | 
						|
                <!--TODO: Add this flag, if you want to support sharing images into your app-->
 | 
						|
                <string>Image</string>
 | 
						|
            </array>
 | 
						|
            <key>NSExtensionActivationRule</key>
 | 
						|
            <dict>
 | 
						|
                <key>NSExtensionActivationSupportsText</key>
 | 
						|
                <true/>
 | 
						|
                <key>NSExtensionActivationSupportsWebURLWithMaxCount</key>
 | 
						|
                <integer>1</integer>
 | 
						|
                <key>NSExtensionActivationSupportsWebPageWithMaxCount</key>
 | 
						|
                <integer>1</integer>
 | 
						|
                <key>NSExtensionActivationSupportsImageWithMaxCount</key>
 | 
						|
                <integer>100</integer>
 | 
						|
                <key>NSExtensionActivationSupportsMovieWithMaxCount</key>
 | 
						|
                <integer>100</integer>
 | 
						|
                <key>NSExtensionActivationSupportsFileWithMaxCount</key>
 | 
						|
                <integer>100</integer>
 | 
						|
            </dict>
 | 
						|
        </dict>
 | 
						|
        <key>NSExtensionMainStoryboard</key>
 | 
						|
        <string>MainInterface</string>
 | 
						|
        <key>NSExtensionPointIdentifier</key>
 | 
						|
        <string>com.apple.share-services</string>
 | 
						|
    </dict>
 | 
						|
</dict>
 | 
						|
</plist>
 |