Coder Social home page Coder Social logo

Comments (2)

shounakmulay avatar shounakmulay commented on June 12, 2024 1

No. You can't mark messages read or delete them.
Android has some restrictions around such functionality. To be able to delete a SMS you're app needs to be the default sms app.

from telephony.

cs145442 avatar cs145442 commented on June 12, 2024

Hey, this is regarding using the default handler,.

Do I need to explicitly request permissions in AndroidManifest.xml when the App is the default SMS App?

My App is being rejected, saying..
`Requested permissions do not match core functionality of the app
You declared Default SMS handler (and any other core functionality usage while default handler) as the core functionality of your app. However, after review, we found that your app does not match the declared use case(s). Learn more about permitted uses and exceptions.
Please either:
• Make changes to your app so that it meets the requirements of the declared core functionality or,
• Select a use case that matches your app’s functionality

This guy in the youtube video suggests removing the default permissions when the app is the default handler.

  • Removed the Permissions in AndroidManifest.xml (Only the

Now, When I check for permissions (main.dart) and My app is already the default SMS handler (
.
Telephony telephony = Telephony.instance; bool permissionsGranted = await telephony.requestSmsPermissions ?? false; print("permissionsGranted: $permissionsGranted");

It results,
I/flutter (27544): permissionsGranted: true

However, When I try to getConversations as
getAllConversations() async { print("getAllConversations"); smsConversationsList = await telephony.getConversations( sortOrder: [OrderBy(ConversationColumn.THREAD_ID, sort: Sort.ASC)]); }

I get this.
I/flutter (27544): getAllConversations I/flutter (27544): Error: PlatformException(failed_to_fetch_sms, Permission Denial: opening provider com.android.providers.telephony.SmsProvider from ProcessRecord{9d93ae0 27544:com.fiftygramx.ethosai/u0a303} (pid=27544, uid=10303) requires android.permission.READ_SMS or android.permission.WRITE_SMS, null, null)

Please let me know if there's a workaround because my app has been rejected three times this week since the version integrating SMS conversations and in my app. Thanks in advance.

from telephony.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.