출처 : https://developers-kr.googleblog.com/2017/04/update-your-app-to-take-advantage-of.html


최신폰의 화면비에서 테스트 하다보니 화면이 짤려나와서 아래 코드를 매니페스트에

추가하였습니다. 화면비가 달라질때마다 이런 코드들이 추가되어야 한다니 여러모로 귀찮은일이네요.


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <application>
        <activity/>

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


+ Recent posts