On Jan 10, 2014, at 11:20 AM, catalina.chioveanu <catalina.chiove...@gmail.com> 
wrote:
> It works if I set Sdk Assemblies only but not if is set it to Sdk and User 
> Assemblies. 

Linking both SDK and User assemblies is generally a good way to break things, 
as your assemblies won't be annotated with [Preserve] to ensure that everything 
actually needed is kept by the linker.

Don't use it unless you really need to.

> While it would't be a problem to use Sdk Assemblies only this causes the app 
> to crash if the user clears the app cache from the phone's settings.

This doesn't make sense; is this a Debug build or a Release build?

Debug builds with Fast Deployment work by placing the assemblies into the app's 
`files` directory. Consequently, if the you clear the App's cache & data from 
the Settings app, you will also nuke the assemblies.

This is (more or less) By Design, and should only impact Developers; Debug 
builds are NOT intended for use in App stores or for end users.

Release builds embed the assemblies into the .apk, and they are never located 
into the `files` directory. Consequently, clearing the App's cache & data will 
have no impact on Release builds.

- Jon

_______________________________________________
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid

Reply via email to