| 12345678910111213141516171819202122232425 |
- package com.usai.apex;
- import android.app.Service;
- import android.content.Intent;
- import android.os.IBinder;
- public class ApexPushService extends Service
- {
-
- // @Override
- // public void onCreate()
- // {
- //
- // super.onCreate();
- // }
- @Override
- public IBinder onBind(Intent intent)
- {
- // TODO Auto-generated method stub
- return null;
- }
- }
|