CORDEA blog

Android applications engineer

2021-01-01から1年間の記事一覧

Windows PC で BSoD 頻発してたのを直した

Windows PC が BSoD 起こすようになったけど直ったメモ大まかな構成 AMD Ryzen 7 5800X NVIDIA GeForce RTX 3070 Driver 30.0.14.7111 ASRock B550M-ITX/ac 問題としては BSoD (VIDEO_TDR_FAILURE) BSoD (DPC_WATCHDOG_VIOLATION) Driver 読み込みエラー (co…

Flutter で 2 つの Path を組み合わせる Path#combine

Android における Path#op あるいは Canvas#clipPath のようなことをする Path#combine api.flutter.dev 以下のような形で Path を組み合わせる final path = Path.combine( _pathOperation, Path() ..addOval(Rect.fromCircle( center: Offset(centerX - 50…

Lua で SQLCipher (lsqlcipher) を使う

lsqlcipher の Install から使うまで Install LuaRocks で install します。luarocks.org $ luarocks install lsqlcipher 私の今の環境 (macOS) だと LDFLAGS で指定されている path に lcrypto がないので sqlcipher の install に失敗します。 $ luarocks …

Ktor Client で Twitter の Filtered stream を取得する

小ネタdeveloper.twitter.com HttpClient このへんはあまり関係ないのでよしなに val client = HttpClient(CIO) { defaultRequest { url { protocol = URLProtocol.HTTPS host = "api.twitter.com" } header("Authorization", "Bearer $token") } Json { ser…

Android app の Owner 変更と Google Play Developer account の削除

をしたので手順のメモOwner 変更はだいたいここに書いてあるとおり。 チェックすべきことも書いてあるので一度目を通しておくと良さそうです。Transfer apps to a different developer account - Play Console Help 1. 移行先の Google Play Developer accou…