1

Possible Duplicate:
largeHeap=true manifest tag not working?

I put android:largeHeap="true" in the application tag of the manifest file and set the minSdk version to android:minSdkVersion="12" and android:targetSdkVersion="15" but it does not work and I get the error message "error: no resource identifier found for attribute 'large heap' in package 'android'

How do I get it working?

Community
  • 1
  • 1
Kevik
  • 9,181
  • 19
  • 92
  • 148
  • That's funny, the linked answer which is supposedly a duplicate talks about the directive being accepted but not working, whereas this question talks about the directive not even being accepted. – Michael Dec 30 '14 at 04:23
  • and alas, I have a real answer to this question, but I cannot tell it to you because the question has been closed. – Michael Dec 30 '14 at 04:34

2 Answers2

-1

Try to put android:largeHeap="true" in application tag in manifest file. Also check your project properties.

andy
  • 208
  • 1
  • 7
-1

Please check this SO

also go through documentation of largeHeap attribute. It clearly states that It only applies to the first application loaded into a process and if you're using a shared user ID to allow multiple applications to use a process, they all must use this option consistently or they will have unpredictable results.

Community
  • 1
  • 1
silwar
  • 6,470
  • 3
  • 46
  • 66