Java code is not generating after stooping the record button in appium studio 11.2.32 version

Hi Team,

java code is not generating after stopping the record button using appium studio 11.2.32 version.
i have checked the agent properties and changed , tried and still i am getting same issue.
is there issues with latest version …? or did i missed any thing in settings?

//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.ScreenOrientation;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.openqa.selenium.By;
import org.junit.*;
import java.net.URL;
import java.net.MalformedURLException;

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

DesiredCapabilities dc = new DesiredCapabilities();

@Before
public void setUp() throws MalformedURLException {
dc.setCapability(“reportDirectory”, reportDirectory);
dc.setCapability(“reportFormat”, reportFormat);
dc.setCapability(“testName”, testName);
dc.setCapability(MobileCapabilityType.UDID, “3208491f96be5191”);
dc.setCapability(AndroidMobileCapabilityType.APP_PACKAGE, “com.experitest.ExperiBank”);
dc.setCapability(AndroidMobileCapabilityType.APP_ACTIVITY, “.LoginActivity”);
driver = new AndroidDriver(new URL(“http://localhost:4723/wd/hub”), dc);
}

@Test
public void testUntitled() {
}

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

hi

Do you see the lines generated in the commads panel? or is it also empty after your recording

can you share a screenshot of Appium Studio after you record?