Sha256: ba3c0a20dbe62718d533dea597f48c2d7b4d37454563ed32e702f282589bc492
Contents?: true
Size: 307 Bytes
Versions: 14
Compression:
Stored size: 307 Bytes
Contents
package com.rho.rhoelements.services; import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.util.Log; public class PluginService extends Service { @Override public IBinder onBind(Intent arg0) { Log.v("Plugin", "Service onBind"); return null; } }
Version data entries
14 entries across 14 versions & 1 rubygems