0

我正在开发一个应用程序,我想通过通知向所有安装了我的应用程序的用户发送我的应用程序更新。但问题是我将如何与安装了我的应用程序的用户进行交互?

我知道通过

      TelephonyManager tMgr = (TelephonyManager)mAppContext.getSystemService(Context.TELEPHONY_SERVICE);
       mPhoneNumber = tMgr.getLine1Number();
       System.out.println("Phone number"+mPhoneNumber);
       Toast.makeText(Splashscreen.this, "Phone No." +""+mPhoneNumber,Toast.LENGTH_LONG).show();

上面的代码我们可以导入电话号码,但是上面的代码不适用于 Android 2.3 ,4.1,4.2。

我需要一些可靠的媒介,我和所有安装了我的应用程序的用户可以通过它进行交互?

4

1 回答 1

1

在您的应用程序中集成 C2DM。

于 2013-06-27T13:11:52.183 回答