Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Working around Linker problems in MvvmCross
Search
Stuart Lodge
May 14, 2013
Technology
1
190
Working around Linker problems in MvvmCross
Stuart Lodge
May 14, 2013
Tweet
Share
More Decks by Stuart Lodge
See All by Stuart Lodge
Future Decoded - VisualStudio and Xamarin talk
cirrious
0
210
Data Bind Everything
cirrious
0
4.9k
MvvmCross - Presentation to BCS Edinburgh
cirrious
0
190
MobDevCon MvvmCross Workshop
cirrious
0
3.4k
Static Version of MvvmCross Evolve talk
cirrious
0
140
Jago?
cirrious
0
180
Presenters in MvvmCross
cirrious
1
32k
Saying SOLID with PCL
cirrious
0
3.5k
Using SQLite.Net In MvvmCross
cirrious
0
1.1k
Other Decks in Technology
See All in Technology
Google Cloud で学ぶデータエンジニアリング入門 2025年版 #GoogleCloudNext / 20250805
kazaneya
PRO
22
5.4k
「AIと一緒にやる」が当たり前になるまでの奮闘記
kakehashi
PRO
3
150
AIに目を奪われすぎて、周りの困っている人間が見えなくなっていませんか?
cap120
1
650
生成AI導入の効果を最大化する データ活用戦略
ham0215
0
160
リモートワークで心掛けていること 〜AI活用編〜
naoki85
0
160
AIに頼りすぎない新人育成術
cuebic9bic
3
310
React Server ComponentsでAPI不要の開発体験
polidog
PRO
0
280
MCP認可の現在地と自律型エージェント対応に向けた課題 / MCP Authorization Today and Challenges to Support Autonomous Agents
yokawasa
5
2.4k
PL/pgSQLの基本と使い所
tameguro
2
190
[OCI Technical Deep Dive] OracleのAI戦略(2025年8月5日開催)
oracle4engineer
PRO
1
180
バクラクによるコーポレート業務の自動運転 #BetAIDay
layerx
PRO
1
960
【OptimizationNight】数理最適化のラストワンマイルとしてのUIUX
brainpadpr
2
490
Featured
See All Featured
Building a Modern Day E-commerce SEO Strategy
aleyda
43
7.4k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
10
1k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
26k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
46
7.6k
It's Worth the Effort
3n
185
28k
Building Adaptive Systems
keathley
43
2.7k
Large-scale JavaScript Application Architecture
addyosmani
512
110k
Facilitating Awesome Meetings
lara
54
6.5k
Adopting Sorbet at Scale
ufuk
77
9.5k
Visualization
eitanlees
146
16k
Designing for Performance
lara
610
69k
Done Done
chrislema
185
16k
Transcript
LinkerIncludePlease
Data-Binding Uses Reflection Views In your App MvvmCross Data-Binding Android
Views/Widgets or CocoaTouch UIViews CreateBinding .For(view => view.Text) .To(vm => vm.Name) UITextField::Text UITextField
Android Views/Widgets or CocoaTouch UIViews Linker Removes ‘Unused’ Symbols Views
In your App MvvmCross Data-Binding CreateBinding .For(view => view.Text) .To(vm => vm.Name) NullReference UITextField
Solutions… • Turn off Linking • Add fake references: LinkerIncludePlease.cs
• Linker Parameters: --linkskip=ASSEMBLY • Preserve: [Preserve] --xml=file
LinkerIncludePlease.cs