~ free bytes and 2MB until OOM 에러

manifests > AndroidManifest.xml 안에 android:largeHeap="true" 와 android:hardwareAccelerated="false" 를 추가해준다.

<application
      android:name=".SetApplication"
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:supportsRtl="true"
      android:largeHeap="true"
      android:hardwareAccelerated="false"
      android:theme="@style/AppTheme">

이유나 문서가 필요하면 안드로이드 개발 사이트를 참고하면 된다.
https://developer.android.com/topic/performance/graphics/index.html

 

Subscribe
Notify of
guest

이 사이트는 스팸을 줄이는 아키스밋을 사용합니다. 댓글이 어떻게 처리되는지 알아보십시오.

0 댓글
Inline Feedbacks
View all comments
TOP