參照網路上的教學毫無難度!
2020年2月19日 星期三
2020年2月16日 星期日
Goolge map release map not show | 上架地圖空白
總之,專案有使用到 Google map 要上架時要注意幾點:
0. 使用私人 sha 重新申請google api,在 OAuth 2.0 用戶端 ID 這個分類裡面會是使用私人的 sha,私人的 sha 用 build app 時的那把鑰匙,這篇有說明
標籤:
上架,
android,
google map
2020年2月7日 星期五
Android room migration with new table and column not primitive type
最近 room 的 Migration 是新增一個 table
@Entity
@TypeConverters(RolesConverter::class)
data class BikePositionRoom(
@PrimaryKey
val id: String = UUID.randomUUID().toString(),
var city: String,
var positionName: String,
var latLng: LatLng,
var available: Int? = null,
var total: Int? = null
)
訂閱:
文章 (Atom)