This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.text.Editable; | |
import android.text.TextWatcher; | |
/** | |
* Listen to "EmptyChange" events on an EditText. | |
* <p/> | |
* Created by KANGOD on 8/18/2016. | |
*/ | |
public abstract class EditTextOnEmptyChangedListener implements TextWatcher { | |
@Override |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
android { | |
// omitting... | |
signingConfigs { | |
release { | |
readKeystoreProperties() | |
} | |
} |