Support latest android phone’s new full screen resolution

Ref: https://android-developers.googleblog.com/2017/03/update-your-app-to-take-advantage-of.html

Add android.max_aspect ratio value larger than 1.86 which is a default max ratio value in the “/proj.android-studio/app/AndroidManifest.xml” as following:

<application>
  ...
  <meta-data android:name="android.max_aspect" android:value="2.1" />
</application>