Advertisement
bluhalcyon

MesosferApp Class

Jan 31st, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1. package com.projects.mikes.temperaturelogger;
  2.  
  3. import android.app.Application;
  4.  
  5. import com.eyro.mesosfer.Mesosfer;
  6.  
  7. /**
  8.  * Created by Mikes-PC on 31-Jan-17.
  9.  */
  10.  
  11. public class MesosferApp extends Application {
  12.  
  13.     @Override
  14.     public void onCreate() {
  15.         super.onCreate();
  16.         Mesosfer.initialize(this,"<already_my_application_ID>","<already_my_application_key>");
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement