M
M
Meteorage2018-08-21 10:43:58
Android
Meteorage, 2018-08-21 10:43:58

How to transfer an intent to a 1C mobile client?

Good day! I am interested in the question regarding the development of a service for Android.
For a mobile application, at one time I used the code to transfer intent to 1C:

inal String ActionName = "com.google.android.c2dm.intent.RECEIVE";
Intent intent1 = new Intent(ActionName);
intent1.addCategory("com.e1c.mobile");
intent1.putExtra("text", "1";);
intent1.putExtra("title", "1C";);
intent1.putExtra("data", barcode);
context.sendBroadcast(intent1);

But for the outgoing 1C mobile client, this situation is not suitable. How can I pass an intent to the mobile client?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
O
Oleg, 2018-08-21
@Meteorage

android:name="com.google.android.c2dm.intent.RECEIVE"
refers to Google Cloud Messaging .
This api DEPRECATED 4/10/2018
Since you used an undocumented feature of the application, it remains
only to re-select the method of communication while studying the application, or it is better to contact the developer for advice.

K
Konstantin Nagibovich, 2018-08-21
@nki

Look here , it might help.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question