Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Last active June 26, 2017 20:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juucustodio/770ed345110b984eb88f06e0777924d7 to your computer and use it in GitHub Desktop.
Save juucustodio/770ed345110b984eb88f06e0777924d7 to your computer and use it in GitHub Desktop.
Ativando o AOT no projeto Android.
...
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
...
<AotAssemblies>true</AotAssemblies>
...
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
...
<AotAssemblies>true</AotAssemblies>
...
</PropertyGroup>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment