watabee's blog

プログラミング関連のブログです

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

【Android】Gradleでライブラリの依存関係の記述を共通化する

Android 開発において、Unit Test と Instrumented Test で使用するライブラリは、Unit Test では testImplementation、Instrumented Test では androidTestImplementation を使って以下のように build.gradle を記述できます。 dependencies { // Unit Test…

iOS 開発者が知るべきデバッグ手法

最近 iOS の開発はほとんど行なっていないのですが、以前動画で観た WWDC 2018 のセッション Advanced Debugging with Xcode and LLDB の内容をまとめました。 このセッションでは Xcode と LLDB を使用して開発時に役出つデバッグ手法が紹介されています。 …

Retrofit2.5.0 でサポートされた Invocation クラスが便利そう

Retrofit2.5.0 で Invocation クラスというものが追加されたようです。 https://github.com/square/retrofit/blob/master/CHANGELOG.md#version-250-2018-11-18 New: Invocation class provides a reference to the invoked method and argument list as a t…

Android と iOS のロジックを Kotlin Native で共通化する

最近 Kotlin Native が気になっていたので、Kotlin Native の勉強がてらにサンプルプロジェクトを作成してみました。 https://github.com/watabee/RakutenRankingKotlin このサンプルプロジェクトでは以下のことを行なっています。 楽天のランキング API を…