i++

プログラム系のメモ書きなど

2015-08-13から1日間の記事一覧

Android : Warning:Conflict with dependency 'com.android.support:support-annotations'. Resolved versions for app (22.2.1) and test app (22.2.0) differ.

Espresso が 22.2.0 を必要としていてそれが conflict を招いているので gradle で ResolutionStrategy を設定して解消します。 Warning:Conflict with dependency 'com.android.support:support-annotations'. Resolved versions for app (22.2.1) and test…

TypeScript : Visual Studio のプロジェクトでコンパイルオプションを指定する

Visual Studio で TypeScript のコンパイルオプションを指定するには、プロジェクトのプロパティの TypeScript パネルから設定しますが、そこにないオプションについては(プロジェクト名).csproj を直に編集します。 例えば Decorator を使用するには、--emi…