Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chayuto/android-emotoapp


https://github.com/chayuto/android-emotoapp

Last synced: 14 days ago
JSON representation

Awesome Lists containing this project

README

        

# eMotoApp #

-----------------------
## 1.User Interface ##

-----------------------
## 2.App Logic ##

### 2.1. eMotoBackground Service ###

* keeping track of the eMotoCell device and upload to server
* update authentication token in background
* handle bluetooth communications (to be Implemented)

```
#!xml

```

```
#!java
//The filter's action is BROADCAST_ACTION
IntentFilter statusIntentFilter = new IntentFilter( eMotoService.BROADCAST_ACTION);

//Sets the filter's category to DEFAULT
statusIntentFilter.addCategory(Intent.CATEGORY_DEFAULT);

//Instantiates a new DownloadStateReceiver
mServiceResponseReceiver = new ServiceResponseReceiver();

//Registers the DownloadStateReceiver and its intent filters
LocalBroadcastManager.getInstance(this).registerReceiver( mServiceResponseReceiver,statusIntentFilter);
```

### 2.2. Ads Management Classes ###

### 2.3. Supporting Class ###

### 2.4. Dependentcies ###