sms_retriever icon indicating copy to clipboard operation
sms_retriever copied to clipboard

Flutter plugin to retrieve sms in Android using SMS Retrieval API

Results 10 sms_retriever issues
Sort by recently updated
recently updated
newest added

How to get SMS for a particular date range or after a specific date ?

I am using Flutter: 2.5.1 and app is crashing after receiving SMS. log on crash: W/BpBinder(32619): Slow Binder: BpBinder transact took 305 ms, interface=com.google.android.gms.auth.api.phone.internal.ISmsRetrieverApiService, code=1 oneway=false E/getSimpleName(32619): task started D/AndroidRuntime(32619):...

after updating to flutter 2.5.... getting following error/warning message... Please have a look... ``` The plugin `sms_retriever` uses a deprecated version of the Android embedding. To avoid unexpected runtime failures,...

When we call `String smsCode = await SmsRetriever.startListening();` , `startListening` return a `Future` , once SMS received it resolved But if we call `SmsRetriever.stopListening();`, assume the user enter the code...

You need to add a software license to the project. It just says TODO now.

FAILURE: Build failed with an exception. * What went wrong: The Android Gradle plugin supports only Kotlin Gradle plugin version 1.3.10 and higher. The following dependencies do not satisfy the...

Getting the error `WARNING: This version of path_provider will break your Android build if it or its dependencies aren't compatible with AndroidX. ` Can you update lib to androidx?

Hey, how about to migrate to AndroidX libraries?

error: resource android:attr/dialogCornerRadius not found. /Users/viral/Developer/partner_app/build/sms_retriever/intermediates/res/merged/release/values-v28/values-v28.xml:11: error: resource android:attr/dialogCornerRadius not found. /Users/viral/Developer/partner_app/build/sms_retriever/intermediates/res/merged/release/values/values.xml:3842: error: resource android:attr/fontVariationSettings not found. /Users/viral/Developer/partner_app/build/sms_retriever/intermediates/res/merged/release/values/values.xml:3843: error: resource android:attr/ttcIndex not found.

Hi, In `SmsRetrieverPlugin.kt` file, `SmsRetriever`, `CommonStatusCodes` and `Status` are used without importing packages. Add lines below should fix the build problem : ``` import com.google.android.gms.auth.api.phone.SmsRetriever; import com.google.android.gms.common.api.CommonStatusCodes; import com.google.android.gms.common.api.Status; ```...