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


Top 5 Pokemon Go GLITCHES & TRICKS SECRETS You’ve Never Seen Before!

https://youtu.be/dgdboh6z3nE

Pokémon Go Top 5 Glitches Tips & Tricks Secrets You’ve Never Seen In Pokemon Go!


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:
[code language=”java”]
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;
}
[/code]

pokemon-go-sensor