Had a crash while trying to use the new TextInputField for Android and wanted to share my solution.
TextInputField
Trying the new TextInputField in the android appcomp
you might have added it compile 'com.android.support:appcompat-v7:22.2.0' but you need to add compile 'com.android.support:design:22.2.0'
compile 'com.android.support:appcompat-v7:22.2.0'
compile 'com.android.support:design:22.2.0'
you can try this dependencies:
compile 'com.android.support:appcompat-v7:22.2.0' compile 'com.android.support:design:22.2.0'
in your gradle file.