fuse-open / fuselibs

Fuselibs is the Uno-libraries that provide the UI framework used in Fuse apps
https://npmjs.com/package/@fuse-open/fuselibs
MIT License
176 stars 72 forks source link

Fuse.Launcher make not compatible to all only WIFI tablets #1416

Closed ckarmy closed 3 years ago

ckarmy commented 3 years ago

Fuse.Launcher add <uses-permission android:name="android.permission.CALL_PHONE" /> to the manifest and make not compatible to all only WIFI tablets. To solve this and make compatible all tablets we need to add to the manifest: <uses-feature android:name="android.hardware.telephony" android:required="false"/>.

I make a .UXL file to replace the manifest. Any chance to add this by default? Or maybe to add via .unoproj?

Thanks!

ckarmy commented 3 years ago

I'm not sure if CALL_PHONE is added because Fuse.Launcher or is added always

ichan-mb commented 3 years ago

Any chance to add this by default? Or maybe to add via .unoproj?

You can configure it in the unoproj file. just add:

{
    "Android": {
        "UsesFeatures": {
             "AndroidHardwareTelephony": false
        }
    }
}
ckarmy commented 3 years ago

Thanks!!! Problem solved! How can I read more about the unoproj capabilities?