Skip to content

Commit

Permalink
fix(android): add missing import (#130)
Browse files Browse the repository at this point in the history
This PR adds a missing import.

Close #134 

Related to #128

```
npm i @capacitor-community/[email protected]
```
  • Loading branch information
robingenz authored Oct 2, 2024
1 parent ec880ff commit 5e3f53f
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import androidx.activity.result.ActivityResult;
import com.getcapacitor.JSArray;
import com.getcapacitor.JSObject;
import com.getcapacitor.Logger;
import com.getcapacitor.PermissionState;
import com.getcapacitor.Plugin;
import com.getcapacitor.PluginCall;
Expand All @@ -27,6 +28,8 @@
)
public class ContactsPlugin extends Plugin {

public static final String TAG = "Contacts";

private Contacts implementation;

@Override
Expand Down

0 comments on commit 5e3f53f

Please sign in to comment.