Sendkeys function not working in appium studio

sendkeys() function not working in appium studio - 12.12

I try to execute my code the code fails and stopped when running the sendkey function

We haven’t seen any problems with other users.
Please paste the code what you are using

//package ;
import io.appium.java_client.remote.AndroidMobileCapabilityType;
import io.appium.java_client.android.AndroidDriver;
import io.appium.java_client.android.AndroidElement;
import io.appium.java_client.remote.MobileCapabilityType;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.openqa.selenium.By;
import org.testng.annotations.*;
import java.net.URL;
import java.net.MalformedURLException;
import java.util.logging.Level;

public class Untitled {
private String reportDirectory = “reports”;
private String reportFormat = “xml”;
private String testName = “Untitled”;
protected AndroidDriver driver = null;

DesiredCapabilities dc = new DesiredCapabilities();

@BeforeMethod
public void setUp() throws MalformedURLException {
    dc.setCapability("reportDirectory", reportDirectory);
    dc.setCapability("reportFormat", reportFormat);
    dc.setCapability("testName", testName);
    dc.setCapability(MobileCapabilityType.UDID, "33003660511683ab");
    driver = new AndroidDriver<>(new URL("http://localhost:4723/wd/hub"), dc);
    driver.setLogLevel(Level.INFO);
}

@Test
public void testUntitled() {
    driver.findElement(By.xpath("//*[@class='android.widget.Button' and (./preceding-sibling::* | ./following-sibling::*)[@class='android.widget.ScrollView']]")).click();
    driver.findElement(By.xpath("//*[@text='Developer International School 

Wed, Jan 29 2020 - 10:36 AM
test message g’]")).click();
driver.findElement(By.xpath("//[@class=‘android.widget.EditText’]")).sendKeys(“this is 1”);
new WebDriverWait(driver, 10).until(ExpectedConditions.presenceOfElementLocated(By.xpath("//
[@class=‘android.widget.EditText’]")));
driver.findElement(By.xpath("//[@class=‘android.widget.EditText’]")).click();
driver.findElement(By.xpath("//
[@class=‘android.widget.ScrollView’]")).click();
driver.findElement(By.xpath("(//[@class=‘android.view.View’ and ./parent::[@class=‘android.view.View’ and ./parent::[@class=‘android.view.View’ and ./parent::[@class=‘android.view.View’]]]]/[@class=‘android.view.View’])[7]")).click();
driver.findElement(By.xpath("//
[@text=‘PDF’]")).click();
driver.findElement(By.xpath("//[@class=‘android.view.View’ and (./preceding-sibling:: | ./following-sibling::)[@id=‘nameplate’ and ./[@text=‘شلاؤبقسز.pdf_1579519650328.pdf_1579672939681.pdf_1579782437260.pdf’]] and ./parent::[@class=‘android.widget.RelativeLayout’]]")).click();
driver.findElement(By.xpath("//
[@class=‘android.view.View’ and (./preceding-sibling::* | ./following-sibling::)[@id=‘nameplate’ and ./[@text=‘شلاؤبقسز.pdf_1579519650328.pdf_1579672939681.pdf_1579782437260.pdf’]] and ./parent::*[@class=‘android.widget.RelativeLayout’]]")).click();
}

@AfterMethod
public void tearDown() {
    driver.quit();
}

}

And what you get in Log section

03:06:51 PM Set device to: adb:SM-A710F

03:06:51 PM Device Information
Name: SM-A710F
S/N: 33003660511683ab
OS: Android
Manufacture: samsung
Model: SM-A710F
Version: 7.0
Screen size: 1080x1920
Connected to: 127.0.0.1:5037

03:06:52 PM Click ‘xpath=//[@class=‘android.widget.Button’ and (./preceding-sibling:: | ./following-sibling::*)[@class=‘android.widget.ScrollView’]]’ in zone NATIVE, index: 0, click count: 1

03:06:53 PM Click ‘xpath=//*[@text=‘Developer International School
Wed, Jan 29 2020 - 10:36 AM
test message g’]’ in zone NATIVE, index: 0, click count: 1

03:06:55 PM Send text hello world to element NATIVE:xpath=//*[@class=‘android.widget.EditText’][0]

03:06:56 PM Wait for ‘xpath=//*[@class=‘android.widget.ScrollView’]’ in zone NATIVE, timeout: 10000

03:06:56 PM Found: true

03:06:56 PM Click ‘xpath=//*[@class=‘android.widget.ScrollView’]’ in zone NATIVE, index: 0, click count: 1

ERROR: ----> 03:07:08 PM Click ‘xpath=(//[@class=‘android.view.View’ and ./parent::[@class=‘android.view.View’ and ./parent::[@class=‘android.view.View’ and ./parent::[@class=‘android.view.View’]]]]/*[@class=‘android.view.View’])[7]’ in zone NATIVE, index: 0, click count: 1

ERROR: ----> 03:07:08 PM Element was not identified: ‘xpath=(//[@class=‘android.view.View’ and ./parent::[@class=‘android.view.View’ and ./parent::[@class=‘android.view.View’ and
ERROR: ----> ./parent::
[@class=‘android.view.View’]]]]/*[@class=‘android.view.View’])[7]’ at zone NATIVE

@kishore I would like to share my project with you in this regard Pls provide the available option i’m waiting

I Dont see any errors on sendkeys in this, only find element error