Skip to content
This repository has been archived by the owner on Aug 17, 2020. It is now read-only.

Dev (EN)

Bruno Luca edited this page Aug 21, 2016 · 10 revisions

Menu

  1. How can I help?
  2. Where is ApplicationKeys?
  3. PoGo Common Errors

How can I help?

First of all, we recommend you join one of our group chats - Discord, Telegram or Skype. We also have a SubReddit. This means you can join the discussion, and help us to push new lines of code, improve our UI or translate the app. This application is developed by the community for the community. Any suggestion is welcome, but please remember to always respect the opinions of others. Remember, there is no me, you or other, but only us - we are a team!

Where is ApplicationKeys?

There is no ApplicationKeys.cs inside the project - you must create it. If you require a Bing Maps API key, register for one at https://www.bingmapsportal.com. After you have obtained the key, copy this class into the project and insert your API key in the place of {Bing Map API key}. You do not require a HockeyApp token.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace PokemonGo_UWP.Utils
{
    public static class ApplicationKeys
    {
        public static string MapServiceToken = "{Bing Map API key}";
        public static string HockeyAppToken = null;
        public static string[] MapBoxTokens = {};
        public static string[] MapBoxStylesLight = {};
        public static string[] MapBoxStylesDark = {};
    }
}

#PoGo Common Errors

I have some problems with safe code

Select a random file in the API project (doesn't matter what).Then go to Project > Properties > Build > Safe Code and check Allow unsafe code.

#Other informations

If you think there are common mistakes that need to be added, write in this issue.

Clone this wiki locally