ここでthemeを作るじゃないですか
で Style name
を "otdp"
みたいなアルファベットの小文字にしたとします
で tiapp.xml
を変更しますよね
tiapp.xml
<android xmlns:android="http://schemas.android.com/apk/res/android">
<tool-api-level>19</tool-api-level>
<manifest>
<application android:theme="@style/Theme.otdp"/>
</manifest>
</android>
でもこれじゃだめなんですよ
Error: No resource found that matches the given name (at 'theme' with value '@style/Theme.otdp')
ってなっちゃうんですね
でダウンロードしてきたresファイルの中をチラ見してみたら
res/values/styles_otdp.xml
<style name="Theme.Otdp" parent="@style/Theme.AppCompat.Light">
。。。
頭文字大文字になるんかい
ということで
tiapp.xml
<android xmlns:android="http://schemas.android.com/apk/res/android">
<tool-api-level>19</tool-api-level>
<manifest>
<application android:theme="@style/Theme.Otdp"/>
</manifest>
</android>
にしたらビルドできました