2️⃣ Create Android Page Object
Example Page Object class
In the following example, I have used the same page object which I had created for Web assuming the application under test has Android and Web version with same UI.
import static io.appium.java_client.AppiumBy.accessibilityId;
import static org.openqa.selenium.By.id;
import io.github.boykaframework.builders.Locator;
import lombok.Getter;
@Getter
public class LoginPage {
    private static final LoginPage LOGIN_PAGE = new LoginPage ();
    public static LoginPage loginPage () {
        return LOGIN_PAGE;
    }
    private final Locator loginButton = Locator.buildLocator ()
        .web (id ("login-button"))
        .android (accessibilityId ("test-LOGIN"))
        .name ("Login Button")
        .build ();
    private final Locator password = Locator.buildLocator ()
        .web (id ("password"))
        .android (accessibilityId ("test-Password"))
        .name ("Password")
        .build ();
    private final Locator username = Locator.buildLocator ()
        .web (id ("user-name"))
        .android (accessibilityId ("test-Username"))
        .name ("User Name")
        .build ();
    private LoginPage () {
        // Avoid explicit class initialization.
    }
}