I registered device but can not see it in the console?

I registered device but can not see it in the console? What could be the problem? I use android

In Defaults.java is not correctly set server address. correct URL is :public static final String SERVER_URL = “https://api.backendless.com”;

It did not help ((

In the manifest file you specified wrong receiver.

android:name="com.google.android.gms.gcm.GcmReceiver"Receiver must extends BackendlessBroadcastReceiver

See our Code Generation sample’s PushReceiver class and AndroidManifest in order to implement proper receiver.

Thanks, problem solved. Problem was in manifest

Hi!

Please provide code which demonstrates how you register device.
And provide please screenshot of Messaging console (Devices tab).

Regards,
Kate.

public class MainActivity extends ActionBarActivity implements FragmentDrawer.FragmentDrawerListener {

private static String TAG = MainActivity.class.getSimpleName();

private Toolbar mToolbar;
private FragmentDrawer drawerFragment;
private boolean owner;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    mToolbar = (Toolbar) findViewById(R.id.toolbar);

    setSupportActionBar(mToolbar);
    getSupportActionBar().setDisplayShowHomeEnabled(true);

    drawerFragment = (FragmentDrawer)
            getSupportFragmentManager().findFragmentById(R.id.fragment_navigation_drawer);
    drawerFragment.setUp(R.id.fragment_navigation_drawer, (DrawerLayout) findViewById(R.id.drawer_layout), mToolbar);
    drawerFragment.setDrawerListener(this);

    // display the first navigation drawer view on app launch
    displayView(0);

    // ����������� � Backendless
    owner = getIntent().getBooleanExtra( "owner", true );
    if( owner )
    {
    Backendless.setUrl(Defaults.SERVER_URL );
        Backendless.initApp(this, Defaults.APPLICATION_ID, Defaults.SECRET_KEY, Defaults.VERSION);
    }
    Backendless.Messaging.registerDevice(Defaults.GOOGLE_PROJECT_ID, Defaults.DEFAULT_CHANNEL, new AsyncCallback<Void>() {
        @Override
        public void handleResponse(Void response) {
            Toast.makeText(MainActivity.this, "Registered", Toast.LENGTH_SHORT).show();
        }

        @Override
        public void handleFault(BackendlessFault fault) {
            Toast.makeText( MainActivity.this, fault.getMessage(), Toast.LENGTH_SHORT ).show();
        }
    });
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    }

    if(id == R.id.action_search){
        Toast.makeText(getApplicationContext(), "Search action is selected!", Toast.LENGTH_SHORT).show();
        return true;
    }

    return super.onOptionsItemSelected(item);
}

@Override
public void onDrawerItemSelected(View view, int position) {
        displayView(position);
}

private void displayView(int position) {
    Fragment fragment = null;
    String title = getString(R.string.app_name);
    switch (position) {
        case 0:
            fragment = new HomeFragment();
            title = getString(R.string.title_home);
            break;
        case 1:
            fragment = new FriendsFragment();
            title = getString(R.string.title_friends);
            break;
        case 2:
            fragment = new MessagesFragment();
            title = getString(R.string.title_messages);
            break;
        default:
            break;
    }

    if (fragment != null) {
        FragmentManager fragmentManager = getSupportFragmentManager();
        FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
        fragmentTransaction.replace(R.id.container_body, fragment);
        fragmentTransaction.commit();

        // set the toolbar title
        getSupportActionBar().setTitle(title);
    }
}

}

sreenshot anroid mobile

i can’t do that. Could this be a problem with manifest?

Check Defaults.APPLICATION_ID and Defaults.VERSION;
You can download example for messaging service in code generation section

I already download example and check it. it’s ok

Can you check here?

this is project https://cloud.mail.ru/public/GAtE/q4tFwgp21