TOHO, SOFT BANK Sponsor Found in Pokémon Go 0.39.0

We found that there are two more sponsor companies added in Pokemon Go 0.39.0, the previous company in sponsors was McDonalds.

Both of them are Japanese Company
The code we found in the APK is TOHO, if not mistaken it is
Toho Co., Ltd. 東宝株式会社 http://toho.co.jp

The another code we found is SOFTBANK
SoftBank Group
ソフトバンクグループ株式会社

http://www.softbank.jp/en/mobile/

 

The below image contains the code excerpts.
found-two-more-sponsors-in-pokemon


Pokémon Go Will Try To Use Most Of Your Mobile Device Sensor

When you start Pokémon Go App, there is a Sensor Manager by Niantic Labs will check your device for all possible sensors to help you improve the game experience. Those sensors will try to sense your movement, step, location, speed even gravity and gyroscope.

If you are using different device, the data you give them is different, the step calculation is different too. That’s why the hatching egg speed is different time with different device. Because some of the mobile phone or some older phone device do not have so much sensors.

Gravity, Gyroscope, Accelerometer, Magnetic, Rotation, LinearAcceleration Sensors are being detected when the game start.

Here are some of the sample codes:

private void startSensorManager()
  {
    if (this.gravity != null)
      this.sensorManager.registerListener(this, this.gravity, 3, ContextService.getServiceHandler());
    if (this.gyroscope != null)
      this.sensorManager.registerListener(this, this.gyroscope, 3, ContextService.getServiceHandler());
    if (this.accelerometer != null)
      this.sensorManager.registerListener(this, this.accelerometer, 2, ContextService.getServiceHandler());
    if (this.magnetic != null)
      this.sensorManager.registerListener(this, this.magnetic, 2, ContextService.getServiceHandler());
    if (this.rotation != null)
      this.sensorManager.registerListener(this, this.rotation, 2, ContextService.getServiceHandler());
    if (this.linearAcceleration != null)
      this.sensorManager.registerListener(this, this.linearAcceleration, 3, ContextService.getServiceHandler());
    this.status = ServiceStatus.INITIALIZED;
  }

pokemon-go-sensor


Real Exeggutor found by trainer in Bangkok


Exeggutor is existing in the real world !! It  found by a trainer name Kolf in Bangkok.

Exeggutor originally came from the tropics. It heads steadily grow larger from exposure to strong sunlight. It is said that when the heads fall off, they group together to form Exeggcute.


Evolution Calculator for Pokémon Go Is Ready to use

Evolution Calculator for Pokemon Go Is Ready to use, always check your Pokemon before evolve.

Please comment us for any bug or suggestion, Thank you.
Continue reading…


Try Again Later Error Bug in Pokémon Go

Try Again Later

When you twist items from the Poke Stop, you may see the error “Try Again Later”. It is a bug in Pokemon Go that forget to refresh to Poke Stop, no matter how many times you twist again, it will appear the same error, actually the items already grabbed into your bag.
Continue reading…


CP Multiplier List For Level 1 to Level 40

It use use for calculate the CP IV for Pokemon Go, every level with different multiplier.
Continue reading…