johncarl81 / transfuse

:syringe: Transfuse - A Dependency Injection and Integration framework for Google Android
http://androidtransfuse.org/
Apache License 2.0
220 stars 28 forks source link

hardwareAccelerated attribute doesn't seem to be included in AndroidManifest.xml #181

Closed justincpollard closed 9 years ago

justincpollard commented 9 years ago

We're specifying hardwareAccelerated = true in our @Application class annotation:

@Application(
    label = "@string/app_name",
    icon  = "@drawable/ic_launcher",
    logo  = "@drawable/header_logo",
    largeHeap = true,
    allowBackup = true,
    hardwareAccelerated = false
)

However, our AndroidManifest.xml doesn't reflect that attribute:

<application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:largeHeap="true" android:logo="@drawable/header_logo" android:name=".MyApplication" t:tag="+,ab,i,l,lh,n,o">
dbachelder commented 9 years ago

@justincpollard it's false if it's not set at the application level.