/* * Copyright (c) 2016 Magnet Systems, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package com.magnet.samples.android.quickstart; import android.app.Application; import android.content.Intent; import com.magnet.max.android.Max; import com.magnet.max.android.config.MaxAndroidPropertiesConfig; import com.magnet.mmx.client.api.MMX; public class QuickStartApplication extends Application { private static QuickStartApplication instance; public void onCreate() { super.onCreate(); instance = this; Max.init(this.getApplicationContext(), new MaxAndroidPropertiesConfig(this, R.raw.magnetmax)); com.magnet.mmx.client.common.Log.setLoggable(null, com.magnet.mmx.client.common.Log.VERBOSE); MMX.registerWakeupBroadcast(this, new Intent("MY_PUSH_ACTION")); } public static QuickStartApplication getInstance() { return instance; } }