All Projects → JimSeker → Service

JimSeker / Service

Licence: apache-2.0
Android Service Examples

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Service

Pwa Cookbook
personally website
Stars: ✭ 107 (+17.58%)
Mutual labels:  service, worker
Bekit
bekit框架致力于解决在应用开发中的公共性痛点,已有“事件总线”、“流程引擎”、“服务引擎”。其中“流程引擎”可作为分布式事务解决方案saga模式的一种实现,并且它很轻量不需要服务端、不需要配置,就可直接使用。
Stars: ✭ 71 (-21.98%)
Mutual labels:  service
Sharebox
家庭看片神器,可以用手机播放电脑里的视频,也可以用电脑播放手机里的视频,使用简单,能稳定运行在后台,目前支持的设备有Windows,Mac,Android。
Stars: ✭ 51 (-43.96%)
Mutual labels:  service
Videosniffer
视频嗅探服务(VideoSniffer API Service On Android)
Stars: ✭ 68 (-25.27%)
Mutual labels:  service
Node Typescript Boilerplate
Minimalistic project template to jump start a Node.js back-end application in TypeScript. ESLint, Jest and type definitions included.
Stars: ✭ 1,061 (+1065.93%)
Mutual labels:  service
Monconn
A TCP connection monitoring tool written in Go.
Stars: ✭ 69 (-24.18%)
Mutual labels:  service
Qtwebapp
QtWebApp is a HTTP server like Java servlets, written in C++ with the Qt framework.
Stars: ✭ 50 (-45.05%)
Mutual labels:  service
Neutron
OpenStack Networking (Neutron). Mirror of code maintained at opendev.org.
Stars: ✭ 1,205 (+1224.18%)
Mutual labels:  service
Sqlite Worker
A simple, and persistent, SQLite database for Web and Workers.
Stars: ✭ 70 (-23.08%)
Mutual labels:  worker
Keychains
🔑 A keychain wrapper that is so easy to use that your cat could use it.
Stars: ✭ 67 (-26.37%)
Mutual labels:  service
S
a go web freamwork for micro service, very very easy to create and deploy, with auto service registry and discover, high performance and based on http/2 no ssl
Stars: ✭ 67 (-26.37%)
Mutual labels:  service
Eve Building Restful Mongodb Backed Apis Course
Course materials and handouts for EVE: Building RESTful MongoDB-backed APIs course
Stars: ✭ 53 (-41.76%)
Mutual labels:  service
Caddy V1 Service
⬛️ Run Caddy as a service
Stars: ✭ 69 (-24.18%)
Mutual labels:  service
Api server boilerplate
typescript express board boilerplate using routing controller
Stars: ✭ 52 (-42.86%)
Mutual labels:  service
Face recognition
Face recognition docker image to provide a web service which is able to register and recognize faces
Stars: ✭ 74 (-18.68%)
Mutual labels:  service
Tasktiger
Python task queue using Redis
Stars: ✭ 1,053 (+1057.14%)
Mutual labels:  worker
Androidlearn
Android Custom Views
Stars: ✭ 66 (-27.47%)
Mutual labels:  service
Automator
Various Automator and AppleScript workflow and scripts for simplifying life
Stars: ✭ 68 (-25.27%)
Mutual labels:  service
Charon
Authorization and authentication service.
Stars: ✭ 79 (-13.19%)
Mutual labels:  service
Horizon
OpenStack Dashboard (Horizon). Mirror of code maintained at opendev.org.
Stars: ✭ 1,195 (+1213.19%)
Mutual labels:  service

Android Service Examples

eclipse/ has the examples in eclipse project format, no longer updated. Otherwise the examples are for android studio.

ServiceDemo is a example of how to call Services, both IntentService and a Service. plus an example of the download service too, which fails in api 30.

ServiceDemoIPC is an very simple example of how to use the binder pieces so an activity/fragment can call into the service.

ServiceDemoMSG is a simple example of passing a messages from the service to the activity via a handler.

ForegroundServiceDemo is an example of how to create a foreground service which can run without an app. It needs a persistent notification and to be started in the foreground. This is required in 26/Oreo+, otherwise use a JobIntentService.

FreeFallSrv is an example of using a service to get sensor data and do things. The activity only starts and stops the service. The code based on the freefall code in the sensor repo. Note with the background restrictions started in API 27, this app doesn't work as well as it used too. Likely a JobService or a foreground service maybe the better way to go.

JobIntentServiceDemo is an example of a jobIntentService. The jobIntentService just toasts a number of random numbers as asked for. this JobIntentServices can run in the background without an app in 26/Oreo+

JobServiceDemo is an example of a jobService. The jobIntentService just toasts a number of random numbers as asked for. Shows how to schedule a one off (with a recurring if you want) and a recurring one that survives reboot as well.

JobServiceJobWorkItemDemo is JobService, but instead of scheduling, it uses the new enqueue and dequeue methods. Note: This is a API 26/Oreo+ example.

WorkManagerDemo is an example of how to use the new Architecture Worker Tasks for background tasks. This examples show a simple one, one with parameters, and a set of tasks chained together. The tasks don't actually do anything interesting.

These are example code for University of Wyoming, Cosc 4730 Mobile Programming course. All examples are for Android.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].