tech_learner
tech_learner

Reputation: 725

The method getActivity in the type PendingIntent is not applicable for the arguements

I am getting this error while implementing SMS sending in android. Attaching the image as the error is too long :)enter image description here

Upvotes: 0

Views: 878

Answers (1)

rochdev
rochdev

Reputation: 3855

Bit hard to see but try this.

PendingIntent pi = PendingIntent.getActivity(<YourActivityClass>.this, 0, ...

Upvotes: 1

Related Questions