From 37e0ce6e269c7771105cd140ad50c0acd502f4ed Mon Sep 17 00:00:00 2001 From: Vijay Chouhan Date: Wed, 25 Mar 2020 12:37:04 +0530 Subject: [PATCH] Added missing comment Added missing comment, this is required to add in MainActivity.java, otherwise throwing an error /MainActivity.java:28: error: cannot find symbol SendSMSPackage.getInstance().onActivityResult(requestCode, resultCode, data); ^ symbol: variable SendSMSPackage location: class MainActivity 1 error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e1cb443..fcde65b 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Just a few quick & easy things you need to set up in order to get SendSMS up and At the top of the file ```Java import android.content.Intent; // <-- include if not already there -import com.tkporter.sendsms.SendSMSPackage; +import com.tkporter.sendsms.SendSMSPackage; // <-- include if not already there ``` Inside MainActivity (place entire function if it's not there already)