Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chayuto/android-emotoapp
https://github.com/chayuto/android-emotoapp
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/chayuto/android-emotoapp
- Owner: chayuto
- Created: 2022-03-05T11:14:57.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-03-05T11:15:31.000Z (almost 3 years ago)
- Last Synced: 2024-11-07T10:29:13.723Z (2 months ago)
- Language: Java
- Size: 473 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 ###