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
200
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
220
Data Bind Everything
cirrious
0
5k
MvvmCross - Presentation to BCS Edinburgh
cirrious
0
190
MobDevCon MvvmCross Workshop
cirrious
0
3.4k
Static Version of MvvmCross Evolve talk
cirrious
0
150
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
Pythonで構築する全国市町村ナレッジグラフ: GraphRAGを用いた意味的地域検索への応用
negi111111
0
230
Design and implementation of "Markdown to Google Slides" / phpconfuk 2025
k1low
1
220
ソフトウェアエンジニアとデータエンジニアの違い・キャリアチェンジ
mtpooh
1
380
20251102 WordCamp Kansai 2025
chiilog
1
560
SREのキャリアから経営に近づく - Enterprise Risk Managementを基に -
shonansurvivors
1
740
文字列操作の達人になる ~ Kotlinの文字列の便利な世界 ~ - Kotlin fest 2025
tomorrowkey
2
510
AIを使ってテストを楽にする
kworkdev
PRO
0
430
書籍『実践 Apache Iceberg』の歩き方
ishikawa_satoru
1
480
今から間に合う re:Invent 準備グッズと現地の地図、その他ラスベガスを周る際の Tips/reinvent-preparation-guide
emiki
1
290
メタプログラミングRuby読書会の活用
willnet
0
120
AI時代に必要なデータプラットフォームの要件とは by @Kazaneya_PR / 20251107
kazaneya
PRO
4
740
CLIPでマルチモーダル画像検索 →とても良い
wm3
2
810
Featured
See All Featured
How GitHub (no longer) Works
holman
315
140k
Rails Girls Zürich Keynote
gr2m
95
14k
Build The Right Thing And Hit Your Dates
maggiecrowley
38
2.9k
The Illustrated Children's Guide to Kubernetes
chrisshort
51
51k
Building an army of robots
kneath
306
46k
Code Review Best Practice
trishagee
72
19k
Optimizing for Happiness
mojombo
379
70k
VelocityConf: Rendering Performance Case Studies
addyosmani
333
24k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3.2k
Rebuilding a faster, lazier Slack
samanthasiow
84
9.2k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
1.7k
GraphQLとの向き合い方2022年版
quramy
49
14k
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