thatsmanmeet / Tasky

Tasky is a highly intuitive and easy-to-use todo list application designed for those who seek a powerful yet minimalistic way to manage their daily tasks.
https://thatsmanmeet.github.io/tasky-web/
GNU General Public License v3.0
190 stars 8 forks source link

Please remove bad and unnecessary permissions #84

Closed serrq closed 2 months ago

serrq commented 9 months ago

This app works 100% offline. No need to view network connections.

1000100490

thatsmanmeet commented 9 months ago

Wait that's a bug my app doesn't have any network permission in the android manifest. These are all the permissions that my app use and there's no mention of the view network connection permission

 <uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM"/>
    <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
    <uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM"/>
    <uses-permission android:name="android.permission.USE_EXACT_ALARM" />
serrq commented 9 months ago

See in Fdroid.

thatsmanmeet commented 9 months ago

Oh I got it, that permission might be from some library as mentioned in some of these stack overflow threads.

https://stackoverflow.com/questions/65832322/android-app-has-permission-view-network-connections-without-it-being-listed-in https://stackoverflow.com/questions/60142230/android-app-is-able-to-make-network-calls-without-network-permissions-defined-in?rq=3 https://stackoverflow.com/questions/30660853/my-android-app-suddenly-requires-permissions-not-set-in-androidmanifest-xml-why?rq=3

Don't worry I will fix this. I got it why this is happening. Will fix that in next release, It's not an privacy issue :)