This file contains hidden or 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
| Pal bot approval for 10 Palringo Groups. |
This file contains hidden or 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
| package com.db.chatpluskotlin.xmpp | |
| import org.jivesoftware.smack.AbstractXMPPConnection | |
| /** | |
| * Created by DB on 23-12-2017. | |
| */ | |
| public object XMPPLogic { | |
| var connection: AbstractXMPPConnection? = null |
This file contains hidden or 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
| package com.db.smsotpautofillkotlin.interfaces | |
| /** | |
| * Created by DB on 03-01-2018. | |
| */ | |
| interface SmsListener { | |
| fun messageReceived(messageText: String) | |
| } |
This file contains hidden or 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
| package com.db.smsotpautofillkotlin.interfaces | |
| /** | |
| * Created by DB on 03-01-2018. | |
| */ | |
| interface EditCodeWatcher { | |
| fun onCodeChanged(code: String) | |
| } |
This file contains hidden or 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
| package com.db.smsotpautofillkotlin.interfaces | |
| /** | |
| * Created by DB on 03-01-2018. | |
| */ | |
| interface EditCodeListener { | |
| fun onCodeReady(code: String) | |
| } |
This file contains hidden or 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
| package com.db.smsotpautofillkotlin | |
| import android.support.v7.app.AppCompatActivity | |
| import android.os.Bundle | |
| import android.util.Log | |
| import com.db.smsotpautofillkotlin.interfaces.EditCodeWatcher | |
| import com.db.smsotpautofillkotlin.interfaces.EditCodeListener | |
| import android.view.WindowManager | |
| import com.db.smsotpautofillkotlin.editable.EditCodeView | |
| import com.db.smsotpautofillkotlin.interfaces.SmsListener |
This file contains hidden or 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
| package com.db.smsotpautofillkotlin.receivers | |
| import android.content.BroadcastReceiver | |
| import android.content.Context | |
| import android.content.Intent | |
| import android.support.v4.app.NotificationCompat.getExtras | |
| import android.os.Bundle | |
| import android.R.attr.data | |
| import android.telephony.SmsMessage | |
| import java.util.regex.Pattern |
This file contains hidden or 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
| package com.db.smsotpautofillkotlin.editable | |
| import android.view.View | |
| import android.view.inputmethod.BaseInputConnection | |
| import android.text.Editable | |
| import android.view.KeyEvent | |
| /** | |
| * Created by DB on 03-01-2018. | |
| */ |
This file contains hidden or 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
| package com.db.smsotpautofillkotlin.editable | |
| import android.annotation.SuppressLint | |
| import android.content.Context | |
| import android.graphics.Canvas | |
| import android.graphics.Paint | |
| import android.graphics.Rect | |
| import android.graphics.Typeface | |
| import android.support.annotation.ColorInt | |
| import android.support.v4.content.ContextCompat |
This file contains hidden or 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
| package com.db.listviewbaseadapterkotlin | |
| import android.content.Context | |
| import android.view.View | |
| import android.view.ViewGroup | |
| import android.widget.BaseAdapter | |
| import android.view.LayoutInflater | |
| import android.widget.ImageView | |
| import android.widget.TextView |
NewerOlder