ParseSendClient


Source link: https://github.com/bowyer-app/ParseSendClient

ParseSendClient

Parse push send client.

Use Parse REST API Push Notifications

Parse REST API

Usage

Create notification Object

ParsePushModel model = ParsePushModel.to().setTitle(pushTitle).setMessage(

 pushMessage).setUrl(pushUrl);

Create channel

String[] channel = new String[1]; channel[0] = "demo";

Send push now.

PushSendLogic.sendPush(model, channel, new PushSendLogic.PushSendCallBack() {

  @Override
  public void onSuccess() {

}

@Override
  public void onFailure(String message) {

}
  
}
);

Send scheduling push.

Calendar calendar = Calendar.getInstance();
 //set push date calendar.set(year, monthOfYear, dayOfMonth);
 //set push time calendar.set(Calendar.HOUR_OF_DAY, hourOfDay);
 calendar.set(Calendar.MINUTE, minute);
 //call sendSchedulingPush PushSendLogic.sendSchedulingPush(model, calendar, channel,
  new PushSendLogic.PushSendCallBack() {

 @Override

 public void onSuccess() {

}

 @Override

public void onFailure(String message) {

}
 
}
);

Here's Custom push Object

public class ParsePushModel {

String title;

String message;

String url;

public ParsePushModel to() {

return new ParsePushModel();

  
}

public ParsePushModel setTitle(String title) {

this.title = title;

return this;
  
}

public ParsePushModel setMessage(String message) {

this.message = message;

return this;
  
}

public ParsePushModel setUrl(String url) {

this.url = url;

return this;
  
}

public String getTitle() {

return title;
  
}

public String getMessage() {

return message;
  
}

public String getUrl() {

return url;
  
}
  
}

Download

Download via Gradle:

repositories {

  maven {

  jcenter()
  
}
 
}
  dependencies {

 compile 'com.bowyer.app:parsesendclient:0.1.0@aar'
 compile 'com.squareup.retrofit:retrofit:1.9.0'
 compile 'com.google.code.gson:gson:1.7.2'
 compile 'com.squareup.okhttp:okhttp:2.2.0'
 compile 'com.squareup.okhttp:okhttp-urlconnection:2.2.0' 
}
 

parsepush.properties

add parsepush.properties into resources dir

property description
PARSE_APPLICATION_ID your Application ID
PARSE_REST_API_KEY your Client Key
PARSE_REST_API_KEY your REST API Key

License

Copyright (c) 2015 Bowyer Released under the MIT license http://opensource.org/licenses/mit-license.php 

Resources

This library will help developers to avoid writing repetitive code as mostly developers do while writing Adapter for RecyclerView. This library also provide convenient way to get position of a view which is clicked by user. This tiny library can save developers time and help them writing clean code inside Adapters.

A sweet message box designed for Android developers.

Android Simple Network Library for HTTP and Image Requests with cool features implemented with Simple Demo using some Material Design UI Elements.

Simple Universal Adapter and ViewHolders generator for Recycler View.

A progress view. It is similar to the Fitbit application's progress bar.

Create a simple button to play a media source.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes