AppIndexingLegacyWrapperService.java 1013 Bytes
package com.bitstrips.imoji.firebase;

import android.app.IntentService;
import android.content.Intent;
import android.support.annotation.Nullable;
import com.bitstrips.imoji.InjectorApplication;
import com.bitstrips.imoji.manager.AppIndexingManager;
import javax.inject.Inject;

public class AppIndexingLegacyWrapperService
  extends IntentService
{
  @Inject
  AppIndexingManager a;
  
  public AppIndexingLegacyWrapperService()
  {
    super("AppIndexingLegacyWrapperService");
  }
  
  public void onCreate()
  {
    super.onCreate();
    ((InjectorApplication)getApplication()).inject(this);
  }
  
  protected void onHandleIntent(@Nullable Intent paramIntent)
  {
    this.a.updateIndex(new AppIndexingParams.Builder().setForceRequestAvatarInfo(true).setIndexingReason("scheduled").build());
  }
}


/* Location:              /home/merong/decompile/hackery-dex2jar.jar!/com/bitstrips/imoji/firebase/AppIndexingLegacyWrapperService.class
 * Java compiler version: 6 (50.0)
 * JD-Core Version:       0.7.1
 */