commit
8a2f20b6ed
|
@ -573,7 +573,11 @@ public class StartConversationActivity extends XmppActivity {
|
||||||
setIntent(null);
|
setIntent(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
@TargetApi(16)
|
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
|
||||||
|
Invite getInviteJellyBean(NdefRecord record) {
|
||||||
|
return new Invite(record.toUri());
|
||||||
|
}
|
||||||
|
|
||||||
protected boolean handleIntent(Intent intent) {
|
protected boolean handleIntent(Intent intent) {
|
||||||
if (intent == null || intent.getAction() == null) {
|
if (intent == null || intent.getAction() == null) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -589,10 +593,10 @@ public class StartConversationActivity extends XmppActivity {
|
||||||
Log.d(Config.LOGTAG, "received message=" + message);
|
Log.d(Config.LOGTAG, "received message=" + message);
|
||||||
for (NdefRecord record : ((NdefMessage)message).getRecords()) {
|
for (NdefRecord record : ((NdefMessage)message).getRecords()) {
|
||||||
switch (record.getTnf()) {
|
switch (record.getTnf()) {
|
||||||
case NdefRecord.TNF_WELL_KNOWN:
|
case NdefRecord.TNF_WELL_KNOWN:
|
||||||
if (Arrays.equals(record.getType(), NdefRecord.RTD_URI)) {
|
if (Arrays.equals(record.getType(), NdefRecord.RTD_URI)) {
|
||||||
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
|
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
|
||||||
return new Invite(record.toUri()).invite();
|
return getInviteJellyBean(record).invite();
|
||||||
} else {
|
} else {
|
||||||
byte[] payload = record.getPayload();
|
byte[] payload = record.getPayload();
|
||||||
if (payload[0] == 0) {
|
if (payload[0] == 0) {
|
||||||
|
|
Loading…
Reference in New Issue