如何在解析中注册。在www.parse.com,没有注册按钮。

问题描述 投票:0回答:1

我想在parse中建立一个账户来建立一个应用程序,但没有注册按钮。www.parse.com.能做什么呢?

parse-platform
1个回答
2
投票

https:/www.back4app.com

用back4app注册并使用parse。他们在BaaS服务方面真的很不错。


0
投票

我的账户已经创建,但我试图按照他们在Dashboard->Help->Guid->Android中显示的步骤来安装SDK。

我已经做了所有的事情,但仍然有一些错误显示,我现在应该做什么。请在这里输入图片描述

这是主活动的图片。我觉得android studio没有检测到parse.我现在应该怎么做?

package com.dishanmdv.whatsappclone;

import android.app.Application;

import com.parse.Parse;


public class MainActivity extends Application {

    @Override
    protected void onCreate() {
        super.onCreate();


        Parse.initialize(new Parse.Configuration.Builder(this)
                .applicationId(getString(R.string.back4app_app_id))
                // if defined
                .clientKey(getString(R.string.back4app_client_key))
                .server(getString(R.string.back4app_server_url))
                .build()
        );
        setContentView(R.layout.activity_main);
        // Save the current Installation to Back4App
        ParseInstallation.getCurrentInstallation().saveInBackground();
    }
}

这是我在main_activity中写的代码。

请大家帮忙。

© www.soinside.com 2019 - 2024. All rights reserved.