Not able to connect to back4App.
I am following the steps from back4App I am able to get the App running in emulator. However, I don't see anything in Back4App dashboard.
Login at Back4App. Find your app and click on Dashboard. Click on Core. Go to Browser.
I don't see installation under Core -> Database-browser.
I verified many times the applictionID and .NET key.
Tried to put try/catch around SaveAync code, but I don't see any exception. Stuck here.
using Android.App;
using Android.Widget;
using Android.OS;
using Android.Support.V7.App;
using Android.Support.V7.AppCompat;
using Parse;
namespace App1
{
[Activity(Label = "App1", MainLauncher = true)]
public class MainActivity : AppCompatActivity
{
protected override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
ParseClient.Initialize(new ParseClient.Configuration
{
ApplicationId = GetString(Resource.String.back4app_app_id),
WindowsKey = GetString(Resource.String.back4app_dotnet_key),
Server = "https://parseapi.back4app.com"
});
SetContentView(Resource.Layout.Main);
ParseInstallation.CurrentInstallation.SaveAsync();
}
}
}
I expect installation folder to be created in Back4App.