Giter VIP home page Giter VIP logo

Comments (24)

ironynet avatar ironynet commented on July 25, 2024 2

try add this in AndroidManifest.xml
<uses-permission android:name="android.permission.RECORD_AUDIO" />

from flutter_callkeep.

LinusU avatar LinusU commented on July 25, 2024 1

@RaashVision hmm, it could be that the call to askForPermissionsIfNeeded is missing in the example. In addition to declaring permissions in the Android Manifest, you also need to call this function which will ask the user to allow the app to make/receive phone calls.

@gopalkrishan123 I'd be happy to accept a PR for that 👍

from flutter_callkeep.

RaashVision avatar RaashVision commented on July 25, 2024 1

Thanks for the reply @LinusU . LL check on that and get back .

from flutter_callkeep.

yukitaka13-1110 avatar yukitaka13-1110 commented on July 25, 2024

I have same issue.

This is my flutter doctor -v outputs

### Version information
[✓] Flutter (Channel master, v1.13.8-pre.3, on Mac OS X 10.14.4)
    • Flutter version 1.13.8-pre.3 at /Users/***/flutter
    • Framework revision 0aed0b61a1 (12 days ago), 2020-01-03 17:53:54 -0800
    • Engine revision eb139936eb
    • Dart version 2.8.0 (build 2.8.0-dev.0.0 2f57602411)

[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
    • Android SDK at /Users/****/Library/Android/sdk
    • Android NDK location not configured (optional; useful for native profiling support)
    • Platform android-29, build-tools 29.0.2
    • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS (Xcode 11.2.1)
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Xcode 11.2.1, Build version 11B500
    • CocoaPods version 1.8.4

[✓] Android Studio (version 3.5)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin version 42.0.1
    • Dart plugin version 191.8593
    • Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)

[✓] VS Code (version 1.41.1)
    • VS Code at /Applications/Visual Studio Code.app/Contents
    • Flutter extension version 3.7.1

from flutter_callkeep.

yukitaka13-1110 avatar yukitaka13-1110 commented on July 25, 2024

Android user-permission error

Finished with error: ProcessException: Process exited abnormally:
Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=alicetest.example.com.flutter_callkeep_test/.MainActivity (has extras) }

java.lang.SecurityException: Permission Denial: starting Intent { act=android.intent.action.RUN flg=0x30000000 cmp=alicetest.example.com.flutter_callkeep_test/.MainActivity (has extras) } from null (pid=25835, uid=2000) requires android.permission.BIND_TELECOM_CONNECTION_SERVICE
	at android.os.Parcel.readException(Parcel.java:1683)
	at android.os.Parcel.readException(Parcel.java:1636)
	at android.app.ActivityManagerProxy.startActivityAsUser(ActivityManagerNative.java:3154)
	at com.android.commands.am.Am.runStart(Am.java:635)
	at com.android.commands.am.Am.onRun(Am.java:388)
	at com.android.internal.os.BaseCommand.run(BaseCommand.java:51)
	at com.android.commands.am.Am.main(Am.java:121)
	at com.android.internal.os.RuntimeInit.nativeFinishInit(Native Method)
	at com.android.internal.os.RuntimeInit.main(RuntimeInit.java:262)

from flutter_callkeep.

Mohammad-AlZabibi avatar Mohammad-AlZabibi commented on July 25, 2024

I tried to figure out where the issue is , i guess it's in hasPhoneAccount() function in the second part of it which is  telecomManager!!.getPhoneAccount(handle).isEnabled in the kotlen file,
the "handle" parameter was given it's value in registerPhoneAccount() function 

should i change any thing to make it work ? 
Thank you 

from flutter_callkeep.

LinusU avatar LinusU commented on July 25, 2024

Sorry about not replying early, this plugin is still very early on in development and thus I haven't written the documentation for it 🙈

Make sure to follow the steps here to add permissions etc.
https://github.com/react-native-webrtc/react-native-callkeep/blob/master/docs/android-installation.md#android-common-step-installation

from flutter_callkeep.

RaashVision avatar RaashVision commented on July 25, 2024

Hi LinusU, first of all thanks to kickstart this lib for flutter. I run the example in the git folder. All the permission already added, still when I click the display button it does not show anything. Is there anything I miss?

from flutter_callkeep.

gopalkrishan123 avatar gopalkrishan123 commented on July 25, 2024

Please update the example project. It is not working.
Also, please update readme
Thank you

from flutter_callkeep.

gopalkrishan123 avatar gopalkrishan123 commented on July 25, 2024

@LinusU what is PR?
and I also tried adding permission. It is still not doing anything.
Please let me know if I am missing anything!
` Future displayIncomingCall() async {
await PermissionHandler().requestPermissions([PermissionGroup.phone]);
final callUUID = '0783a8e5-8353-4802-9448-c6211109af51';
final number = '+46 70 123 45 67';

await CallKeep.displayIncomingCall(
    callUUID, number, number, HandleType.number, false);

}`

from flutter_callkeep.

LinusU avatar LinusU commented on July 25, 2024

@gopalkrishan123 A pull request is a request to accept changes to the repository, you can read more about it here.

Instead of doing await PermissionHandler().requestPermissions([PermissionGroup.phone]); could you try await CallKeep.askForPermissionsIfNeeded();?

from flutter_callkeep.

gopalkrishan123 avatar gopalkrishan123 commented on July 25, 2024

@LinusU thank you
It is working now :)

from flutter_callkeep.

gopalkrishan123 avatar gopalkrishan123 commented on July 25, 2024

@LinusU
can you please provide example of usage of the displayCustomIncomingCall() method.

from flutter_callkeep.

yukitaka13-1110 avatar yukitaka13-1110 commented on July 25, 2024

@gopalkrishan123
Hi !
Could you work displayIncomingCall ?
I couldn't show it. I think it depends on PhoneAccount.
Do you have any idea ?

from flutter_callkeep.

gopalkrishan123 avatar gopalkrishan123 commented on July 25, 2024

@yukitaka13-1110 you can find working example in PR I submitted.
basically you need to call CallKeep.askForPermissionsIfNeeded(); before displayIncomingCall

from flutter_callkeep.

yukitaka13-1110 avatar yukitaka13-1110 commented on July 25, 2024

@gopalkrishan123
Thank you for your reply :)
I already apply resource like the following and call permission.

flutter_callkeep:
    git:
      url: git://github.com/gopalkrishan123/flutter_callkeep.git
      ref: fix/example

Future<void> displayIncomingCall() async {
    final callUUID = '0783a8e5-8353-4802-9448-c6211109af51';
    final number = '+46 70 123 45 67';
    await CallKeep.askForPermissionsIfNeeded(context);
    await CallKeep.displayIncomingCall(
        callUUID, number, number, HandleType.number, false);
  }

Is this correct ?

from flutter_callkeep.

yukitaka13-1110 avatar yukitaka13-1110 commented on July 25, 2024
2020-02-21 17:42:17.255 1335-583/? V/Telecom: [TELECOM][Logging]: START_SESSION
2020-02-21 17:42:17.255 1335-583/? D/Telecom: [TELECOM][TelecomServiceImpl]: enforcePhoneAccountModificationForPackage(): packageName com..flutter_android_call_test, result -1
2020-02-21 17:42:17.255 1335-583/? D/Telecom: [TELECOM][TelecomServiceImpl]: enforcePhoneAccountModificationForPackage(): permission not granted
2020-02-21 17:42:17.255 1335-583/? D/Telecom: [TELECOM][PhoneAccountRegistrar]: addOrReplacePhoneAccount(ComponentInfo{com..flutter_android_call_test/io.wazo.callkeep.VoiceConnectionService}, [bc58b4615f7b390584c0ad537fa36bfb0bae1751], UserHandle{0} -> [[ ] PhoneAccount: ComponentInfo{com..flutter_android_call_test/io.wazo.callkeep.VoiceConnectionService}, [bc58b4615f7b390584c0ad537fa36bfb0bae1751], UserHandle{0} Capabilities: CallProvider  Schemes: tel  Extras: null])
2020-02-21 17:42:17.256 1335-583/? I/Telecom: [TELECOM][PhoneAccountRegistrar]: [ComponentInfo{com..flutter_android_call_test/io.wazo.callkeep.VoiceConnectionService}, [bc58b4615f7b390584c0ad537fa36bfb0bae1751], UserHandle{0}]
2020-02-21 17:42:17.256 1335-583/? D/Telecom: [TELECOM][PhoneAccountRegistrar]: account isEnabled = false
2020-02-21 17:42:17.258 1335-583/? I/Telecom: [TELECOM][]: Sending phone-account registered intent as user
2020-02-21 17:42:17.258 1335-583/? V/Telecom: [TELECOM][Logging]: END_SUBSESSION (dur: 3 mS)
2020-02-21 17:42:17.258 1335-583/? V/Telecom: [TELECOM][Logging]: END_SESSION (dur: 3 ms): TSI.rPA@Gog
2020-02-21 17:42:17.259 14579-14579/? D/RNCK:VoiceConnectionService: setAvailable: true
2020-02-21 17:42:17.287 1335-3144/? V/Telecom: [TELECOM][Logging]: START_SESSION
2020-02-21 17:42:17.288 1335-3144/? D/Telecom: [TELECOM][AsusTelephonyUtils]: getSlotIdFromAccountHandle, slotId = -1, subId = 0, mId = flutter_android_call_test
2020-02-21 17:42:17.288 1335-3144/? V/Telecom: [TELECOM][Logging]: END_SUBSESSION (dur: 1 mS)
2020-02-21 17:42:17.288 1335-3144/? V/Telecom: [TELECOM][Logging]: END_SESSION (dur: 1 ms): TSI.gPA@Gok
2020-02-21 17:42:17.293 14579-14579/? D/RNCK:VoiceConnectionService: setAvailable: false
2020-02-21 17:42:17.296 1335-2108/? V/Telecom: [TELECOM][Logging]: START_SESSION
2020-02-21 17:42:17.296 1335-2108/? D/Telecom: [TELECOM][TelecomServiceImpl]: enforcePhoneAccountModificationForPackage(): packageName com..flutter_android_call_test, result -1
2020-02-21 17:42:17.296 1335-2108/? D/Telecom: [TELECOM][TelecomServiceImpl]: enforcePhoneAccountModificationForPackage(): permission not granted
2020-02-21 17:42:17.297 1335-2108/? D/Telecom: [TELECOM][PhoneAccountRegistrar]: addOrReplacePhoneAccount(ComponentInfo{com..flutter_android_call_test/io.wazo.callkeep.VoiceConnectionService}, [bc58b4615f7b390584c0ad537fa36bfb0bae1751], UserHandle{0} -> [[ ] PhoneAccount: ComponentInfo{com..flutter_android_call_test/io.wazo.callkeep.VoiceConnectionService}, [bc58b4615f7b390584c0ad537fa36bfb0bae1751], UserHandle{0} Capabilities: CallProvider  Schemes: tel  Extras: null])
2020-02-21 17:42:17.297 1335-2108/? I/Telecom: [TELECOM][PhoneAccountRegistrar]: [ComponentInfo{com..flutter_android_call_test/io.wazo.callkeep.VoiceConnectionService}, [bc58b4615f7b390584c0ad537fa36bfb0bae1751], UserHandle{0}]
2020-02-21 17:42:17.297 1335-2108/? D/Telecom: [TELECOM][PhoneAccountRegistrar]: account isEnabled = false
2020-02-21 17:42:17.299 1335-2108/? I/Telecom: [TELECOM][]: Sending phone-account registered intent as user
2020-02-21 17:42:17.300 1335-2108/? V/Telecom: [TELECOM][Logging]: END_SUBSESSION (dur: 4 mS)
2020-02-21 17:42:17.300 1335-2108/? V/Telecom: [TELECOM][Logging]: END_SESSION (dur: 4 ms): TSI.rPA@Goo
2020-02-21 17:42:17.300 14579-14579/? D/RNCK:VoiceConnectionService: setAvailable: true
2020-02-21 17:42:17.311 1335-3145/? I/ActivityManager: Displayed com..flutter_android_call_test/.MainActivity: +360ms [aosp]
2020-02-21 17:42:17.311 1335-3145/? I/ActivityManager: Fully drawn com..flutter_android_call_test/.MainActivity: +360ms
2020-02-21 17:42:17.315 1335-582/? V/Telecom: [TELECOM][Logging]: START_SESSION
2020-02-21 17:42:17.315 1335-582/? D/Telecom: [TELECOM][AsusTelephonyUtils]: getSlotIdFromAccountHandle, slotId = -1, subId = 0, mId = flutter_android_call_test
2020-02-21 17:42:17.315 1335-582/? V/Telecom: [TELECOM][Logging]: END_SUBSESSION (dur: 1 mS)
2020-02-21 17:42:17.315 1335-582/? V/Telecom: [TELECOM][Logging]: END_SESSION (dur: 1 ms): TSI.gPA@Gos

2020-02-21 17:42:19.836 2539-2540/? I/WCNSS_FILTER: do_write: IBS write: fd
2020-02-21 17:42:19.837 2396-2446/? E/SQLiteLog: (5) database is locked
2020-02-21 17:42:19.839 2396-2446/? E/SQLiteDatabase: Failed to open database '/data/user/0/com.asus.focusapplistener/databases/openedTimeAppInfo.db'.
    android.database.sqlite.SQLiteDatabaseLockedException: database is locked (code 5): , while compiling: PRAGMA journal_mode
        at android.database.sqlite.SQLiteConnection.nativePrepareStatement(Native Method)
        at android.database.sqlite.SQLiteConnection.acquirePreparedStatement(SQLiteConnection.java:889)
        at android.database.sqlite.SQLiteConnection.executeForString(SQLiteConnection.java:634)
        at android.database.sqlite.SQLiteConnection.setJournalMode(SQLiteConnection.java:320)
        at android.database.sqlite.SQLiteConnection.setWalModeFromConfiguration(SQLiteConnection.java:294)
        at android.database.sqlite.SQLiteConnection.open(SQLiteConnection.java:215)
        at android.database.sqlite.SQLiteConnection.open(SQLiteConnection.java:193)
        at android.database.sqlite.SQLiteConnectionPool.openConnectionLocked(SQLiteConnectionPool.java:463)
        at android.database.sqlite.SQLiteConnectionPool.open(SQLiteConnectionPool.java:185)
        at android.database.sqlite.SQLiteConnectionPool.open(SQLiteConnectionPool.java:177)
        at android.database.sqlite.SQLiteDatabase.openInner(SQLiteDatabase.java:808)
        at android.database.sqlite.SQLiteDatabase.open(SQLiteDatabase.java:793)
        at android.database.sqlite.SQLiteDatabase.openDatabase(SQLiteDatabase.java:696)
        at android.app.ContextImpl.openOrCreateDatabase(ContextImpl.java:692)
        at android.content.ContextWrapper.openOrCreateDatabase(ContextWrapper.java:296)
        at android.database.sqlite.SQLiteOpenHelper.getDatabaseLocked(SQLiteOpenHelper.java:223)
        at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:163)
        at com.asus.focusapplistener.OpenedTimeAppInfoProvider.update(Unknown Source)
        at android.content.ContentProvider$Transport.update(ContentProvider.java:356)
        at android.content.ContentResolver.update(ContentResolver.java:1454)
        at com.asus.focusapplistener.b.m.a(Unknown Source)
        at com.asus.focusapplistener.b.m.a(Unknown Source)
        at com.asus.focusapplistener.MessengerService$g.handleMessage(Unknown Source)
        at android.os.Handler.dispatchMessage(Handler.java:102)
        at android.os.Looper.loop(Looper.java:159)
        at android.os.HandlerThread.run(HandlerThread.java:61)
2020-02-21 17:42:19.839 2396-2446/? E/MessengerService: m crash in FocusAppReceiverThread: 1
    android.database.sqlite.SQLiteDatabaseLockedException: database is locked (code 5): , while compiling: PRAGMA journal_mode
        at android.database.sqlite.SQLiteConnection.nativePrepareStatement(Native Method)
        at android.database.sqlite.SQLiteConnection.acquirePreparedStatement(SQLiteConnection.java:889)
        at android.database.sqlite.SQLiteConnection.executeForString(SQLiteConnection.java:634)
        at android.database.sqlite.SQLiteConnection.setJournalMode(SQLiteConnection.java:320)
        at android.database.sqlite.SQLiteConnection.setWalModeFromConfiguration(SQLiteConnection.java:294)
        at android.database.sqlite.SQLiteConnection.open(SQLiteConnection.java:215)
        at android.database.sqlite.SQLiteConnection.open(SQLiteConnection.java:193)
        at android.database.sqlite.SQLiteConnectionPool.openConnectionLocked(SQLiteConnectionPool.java:463)
        at android.database.sqlite.SQLiteConnectionPool.open(SQLiteConnectionPool.java:185)
        at android.database.sqlite.SQLiteConnectionPool.open(SQLiteConnectionPool.java:177)
        at android.database.sqlite.SQLiteDatabase.openInner(SQLiteDatabase.java:808)
        at android.database.sqlite.SQLiteDatabase.open(SQLiteDatabase.java:793)
        at android.database.sqlite.SQLiteDatabase.openDatabase(SQLiteDatabase.java:696)
        at android.app.ContextImpl.openOrCreateDatabase(ContextImpl.java:692)
        at android.content.ContextWrapper.openOrCreateDatabase(ContextWrapper.java:296)
        at android.database.sqlite.SQLiteOpenHelper.getDatabaseLocked(SQLiteOpenHelper.java:223)
        at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:163)
        at com.asus.focusapplistener.OpenedTimeAppInfoProvider.update(Unknown Source)
        at android.content.ContentProvider$Transport.update(ContentProvider.java:356)
        at android.content.ContentResolver.update(ContentResolver.java:1454)
        at com.asus.focusapplistener.b.m.a(Unknown Source)
        at com.asus.focusapplistener.b.m.a(Unknown Source)
        at com.asus.focusapplistener.MessengerService$g.handleMessage(Unknown Source)
        at android.os.Handler.dispatchMessage(Handler.java:102)
        at android.os.Looper.loop(Looper.java:159)
        at android.os.HandlerThread.run(HandlerThread.java:61)
2020-02-21 17:42:19.839 15868-15868/? D/KeyguardUpdateMonitor: received broadcast android.intent.action.BATTERY_CHANGED
2020-02-21 17:42:19.839 2396-2446/? I/AppOpsStatusUpdateHandler: pkgName = com..flutter_android_call_test
2020-02-21 17:42:19.840 15868-15868/? D/PowerUI: oldTemp=285, mTemp=290
2020-02-21 17:42:19.840 15868-15868/? D/PowerUI: findUsbOtg =false,supportReverseCharging =0
2020-02-21 17:42:19.840 2344-2344/? E/QtiImsExtUtils: getConfigForPhoneId subId is invalid
2020-02-21 17:42:19.840 2344-2344/? E/QtiImsExtUtils: isCarrierConfigEnabled bundle is null
2020-02-21 17:42:19.840 2539-2539/? I/WCNSS_FILTER: ibs_recv_ibs_cmd: Received IBS_WAKE_ACK: 0xFC
2020-02-21 17:42:19.841 4470-4470/? V/CameraApp: battery event level=81
2020-02-21 17:42:19.842 2396-2396/? D/PowerSaverUpdateIcon: update animated icon: 81% , 1時間28分
2020-02-21 17:42:19.842 2539-2539/? I/WCNSS_FILTER: ibs_recv_ibs_cmd: Received IBS_WAKE_IND: 0xFD
2020-02-21 17:42:19.842 2539-2539/? I/WCNSS_FILTER: ibs_recv_ibs_cmd: Writing IBS_WAKE_ACK
2020-02-21 17:42:19.842 2539-2539/? I/WCNSS_FILTER: do_write: IBS write: fc

from flutter_callkeep.

gopalkrishan123 avatar gopalkrishan123 commented on July 25, 2024

@gopalkrishan123
Thank you for your reply :)
I already apply resource like the following and call permission.

flutter_callkeep:
    git:
      url: git://github.com/gopalkrishan123/flutter_callkeep.git
      ref: fix/example
Future<void> displayIncomingCall() async {
    final callUUID = '0783a8e5-8353-4802-9448-c6211109af51';
    final number = '+46 70 123 45 67';
    await CallKeep.askForPermissionsIfNeeded(context);
    await CallKeep.displayIncomingCall(
        callUUID, number, number, HandleType.number, false);
  }

Is this correct ?

Yes

from flutter_callkeep.

yukitaka13-1110 avatar yukitaka13-1110 commented on July 25, 2024

@gopalkrishan123
Thanks!
I still not showing incoming call screen.
Do you have any idea ?

from flutter_callkeep.

gopalkrishan123 avatar gopalkrishan123 commented on July 25, 2024

If you are using example project from git It should work.
If not please make sure to make changes in android manifest from the link below
AndroidManifest.xml

and you main method like below

`
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await CallKeep.setup();
runApp(MaterialApp(home: MyApp()));
}

`

from flutter_callkeep.

yukitaka13-1110 avatar yukitaka13-1110 commented on July 25, 2024

@gopalkrishan123
It's my AndroidManifest.xml.
I don't know why incoming screen not showing.

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.xxxxx.quando.flutter_callkeep_elecom">

    <uses-permission android:name="android.permission.BIND_TELECOM_CONNECTION_SERVICE"/>
    <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.CALL_PHONE" />
    <!-- io.flutter.app.FlutterApplication is an android.app.Application that
         calls FlutterMain.startInitialization(this); in its onCreate method.
         In most cases you can leave this as-is, but you if you want to provide
         additional functionality it is fine to subclass or reimplement
         FlutterApplication and put your custom class here. -->
    <application
        android:name="io.flutter.app.FlutterApplication"
        android:label="flutter_callkeep_elecom"
        android:icon="@mipmap/ic_launcher">
        <activity
            android:name=".MainActivity"
            android:launchMode="singleTop"
            android:theme="@style/LaunchTheme"
            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
            android:hardwareAccelerated="true"
            android:windowSoftInputMode="adjustResize">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
        <!-- Don't delete the meta-data below.
             This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
        <meta-data
            android:name="flutterEmbedding"
            android:value="2" />

        <service android:name="io.wazo.callkeep.VoiceConnectionService"
            android:label="Wazo"
            android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE">
            <intent-filter>
                <action android:name="android.telecom.ConnectionService" />
            </intent-filter>
        </service>
    </application>
</manifest>

from flutter_callkeep.

waelHamed avatar waelHamed commented on July 25, 2024

Hi @LinusU @ironynet @RaashVision @yukitaka13-1110 @Mohammad-AlZabibi !
I see you added the following:
final callUUID = '0783a8e5-8353-4802-9448-c6211109af51';
final number = '+46 70 123 45 67';

But how to receive real incoming calls? I want to get the number calling me. Any help here would be appreciated.

from flutter_callkeep.

aponski avatar aponski commented on July 25, 2024

Example for android is not working. I've tried on emulator and device (Samsung, Android 10). Nothing happens if button is clicked. For iOS this lib does't work either (compilation errors).

from flutter_callkeep.

payam-zahedi avatar payam-zahedi commented on July 25, 2024

try add this in AndroidManifest.xml
<uses-permission android:name="android.permission.RECORD_AUDIO" />

I ran the Example app on android and Nothing happened when I clicked the button.
this comment solved my problem.
I think RECORD_AUDIO permission missed in the android example manifest file.

from flutter_callkeep.

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.