We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eb3cc37 + 14161f7 commit c00bedfCopy full SHA for c00bedf
README.md
@@ -51,7 +51,7 @@ const options = {
51
}
52
};
53
54
-RNCallKeep.setup(options);
+RNCallKeep.setup(options).then(accepted => {});
55
```
56
57
- `options`: Object
index.js
@@ -187,7 +187,10 @@ class RNCallKeep {
187
188
if (shouldOpenAccounts) {
189
RNCallKeepModule.openPhoneAccounts();
190
+ return true;
191
192
+
193
+ return false;
194
195
196
_hasDefaultPhoneAccount = async (options) => {
0 commit comments