2017年2月2日 星期四

android bundle

http://blog.csdn.net/android_tutor/article/details/5740845
Android高手进阶教程(十七)之---Android中Intent传递对象的两种方法(Serializable,Parcelable)!


http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2012/1211/694.html
Android中如何使用Bundle传递对象[使用Serializable或者Parcelable]


http://cookiesp.pixnet.net/blog/post/84190702-android-intent%26bundle-%E5%82%B3%E9%81%9E%E8%B3%87%E6%96%99(%E5%8C%85%E5%90%AB%E5%82%B3%E9%81%9E%E8%87%AA%E5%AE%9A%E7%BE%A9%E7%89%A9

Android Intent&Bundle 傳遞資料(包含傳遞自定義物件)


static final long serialVersionUID用途

http://fly-dolphin.blogspot.tw/2011/08/static-final-long-serialversionuid.html

2017年2月1日 星期三

android firebase google map 遇到的問題

這行
compile 'com.google.firebase:firebase-database:10.0.1'
跟google map的這行會有衝突到
compile 'com.google.android.gms:play-services:10.0.1'

所以要在前面多加上
compile 'com.google.firebase:firebase-core:10.0.1'

一開始以為是storage的問題,因為顯示error地的是storage的問題
結果另創一個專案再加上google map就沒問題,沒有使用firebase的database
所以才知道是database跟google map可能有衝突到
可能有其他方法解決,例如database降版本

花了一整個下午,都在搞這個太痛苦了......

參考網址:
http://stackoverflow.com/questions/38127053/google-play-services-gcm-9-2-0-asks-to-update-back-to-9-0-0