Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Play pre-launch reports - resource name

How I should provide id of EditText for filling credentials for pre-launch reports on Google Play (Beta/Alpha versions of the app)? I tried @+id/editTextLogin, editTextLogin, R.id.editTextLogin and always get description "wrong resource name".

What is correct schema for resource name there?

like image 275
Michał Tajchert Avatar asked May 26 '17 20:05

Michał Tajchert


People also ask

What is pre launch report Google Play?

A pre-launch report is automatically generated when you publish an app to internal, closed, or open testing. It helps to identify issues proactively before your app reaches users. It includes tests for: Stability issues. Android compatibility issues.


1 Answers

As information icon says:

The Android resource name of the text field within your app where the given username should be entered.

AND Android Resources documentations says:

<resource name> is either the resource filename without the extension or the android:name attribute value in the XML element (for simple values).

So in your case editTextLogin will go in that field.


I would like to share my case as it is quite different than normal sign-in:

It is quite similar to Google sign-in. I am asking for username first and after validating it, on next fragment I am showing his/her name and designation and asking for password.

For above scenario I used two fragments. In Username fragment I kept one EditText with resource name username and next Button with resource name login and in other fragment (Password fragment) I used EditText with resource name password and again one Button with resource name login.

And this is how I provided my credentials: Pre-launch credential screenshot

Example Username field:

<android.support.v7.widget.AppCompatEditText
    android:id="@+id/username"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />

Example Password field:

<android.support.v7.widget.AppCompatEditText
    android:id="@+id/password"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:inputType="textPassword" />

Example Login button:

<android.support.v7.widget.AppCompatButton
    android:id="@+id/login"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="8dp" />

EDIT

Reference of new Google Play Store console

enter image description here

like image 194
Omkar Avatar answered Sep 20 '22 16:09

Omkar