Skip to content

Commit 5e3f53f

Browse files
authored
fix(android): add missing import (#130)
This PR adds a missing import. Close #134 Related to #128 ``` npm i @capacitor-community/[email protected] ```
1 parent ec880ff commit 5e3f53f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

android/src/main/java/getcapacitor/community/contacts/ContactsPlugin.java

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import androidx.activity.result.ActivityResult;
99
import com.getcapacitor.JSArray;
1010
import com.getcapacitor.JSObject;
11+
import com.getcapacitor.Logger;
1112
import com.getcapacitor.PermissionState;
1213
import com.getcapacitor.Plugin;
1314
import com.getcapacitor.PluginCall;
@@ -27,6 +28,8 @@
2728
)
2829
public class ContactsPlugin extends Plugin {
2930

31+
public static final String TAG = "Contacts";
32+
3033
private Contacts implementation;
3134

3235
@Override

0 commit comments

Comments
 (0)