Back to project page SNISI-droid.
The source code is released under:
Apache License
If you think the Android project SNISI-droid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.yeleman.snisidroid; //from ww w. ja v a2s . co m import android.telephony.SmsMessage; import java.util.ArrayList; public interface SMSUpdater { void gotSms(ArrayList<SmsMessage> messages); void gotSMSStatusUpdate(int status, String message); }