Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
919 views
in Technique[技术] by (71.8m points)

custom extension issue with Android Cross-Platforming

I am not able to open the file on the android device which is exported from the I-phone device. where Android to android device is working and Android to I-phone also working. In both cases, the user can import files. The only issue with I-phone to android.

I applied this code and reference:- Creating app which opens a custom file extension

<intent-filter android:icon="your_drawable-resource"
               android:label="your_string_resource"
               android:priority="integer"> 
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <data android:scheme="file" />
    <data android:host="*" />
    <data android:pathPattern=".*\.YOUR_CUSTOM_FILE_EXTENSION" />
</intent-filter>
question from:https://stackoverflow.com/questions/65880126/custom-extension-issue-with-android-cross-platforming

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...