Alezhka / flutter_incoming_call

Flutter incoming call
https://pub.dev/packages/flutter_incoming_call
GNU General Public License v3.0
21 stars 24 forks source link

Can't work on real device #2

Open jo3ght opened 3 years ago

jo3ght commented 3 years ago

Hi ! I really happy with this package but it's just working when i debug in simulator and does not working when i debug on real device.

CuongNV12 commented 3 years ago

I also had the same problem with my Galaxy S10+

leech001 commented 3 years ago

And I had the same problem with my Xiaomi Mi Note 3.

Alezhka commented 3 years ago

Hi, thx for report. I saw on more devices in next few days.

hanyska commented 3 years ago

+1

Alezhka commented 3 years ago

Hi everyone. Please check 0.0.2+1 version and give feedback worked or not.

CuongNV12 commented 3 years ago

it works on Galaxy S6 (Android 7), but not on Galaxy S10+ (Android 11).

android.content.ActivityNotFoundException: No Activity found to handle Intent { act=com.github.alezhka.flutter_incoming_call.activity.ACTION_INCOMING_CALL

Is it missing something? How do i get the below in my project?

<activity
            android:name="com.github.alezhka.flutter_incoming_call.IncomingCallActivity"
            android:theme="@style/AppCompatTheme"
            android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="com.github.alezhka.flutter_incoming_call.activity.ACTION_INCOMING_CALL" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
</activity>
        <receiver android:name="com.github.alezhka.flutter_incoming_call.CallBroadcastReceiver"
            android:enabled="true"
            android:exported="false"/>

Alezhka commented 3 years ago

@CuongNV12 You need to add to your AndroidManifest.xml (See example/android/app/src/main/AndroidManifest.xml). Today I will add this step to the Readme.

isuru19963 commented 3 years ago

When the app is closed not work incoming call UI. Emulator works fine but in real device not working.

Alezhka commented 3 years ago

@leech001 @isuru19963 Hi! Please tell me on which platform and os version you find bug. Also indicate the steps to reproduce.

leech001 commented 3 years ago

@leech001 Hi! Please tell me on which platform and os version you find bug. Also indicate the steps to reproduce.

Mi Note 3 Android 9

pacifio commented 3 years ago

Yep this does not work on real devices , tried it on Samsung M31 (Android 11)

pacifio commented 3 years ago

I think an update for Android 11 is needed , not sure how

Alezhka commented 3 years ago

@pacifio Please write steps to reproduce bug.

vietkeep commented 3 years ago

Work with my android, xiaomi note 9 pro not working in iphone 7

Alezhka commented 3 years ago

@vietkeep Hi. Need more information. Please write steps to reproduce bug. Have you tried running the example project?