Android studioを1.2→1.3にあげたら以下のエラー
Error:(2) Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'.
このエラーの対処法
build.gradleのcompileSdkVersionを23にする
build.gradleのtargetSdkVersionを23にする
もしくは
compile 'com.android.support:appcompat-v7:22.2.1' にする
buildToolsVersion "22.0.1" にする
これでsync押せば解決するはず。