Alon Albert | 05de701 | 2013-08-22 11:26:28 -0700 | [diff] [blame] | 1 | // Copyright 2013 Google Inc. All Rights Reserved. |
2 | |||||
3 | package com.android.dialer; | ||||
4 | |||||
5 | import android.app.Application; | ||||
6 | |||||
7 | import com.android.contacts.common.extensions.ExtensionsFactory; | ||||
8 | |||||
9 | public class DialerApplication extends Application { | ||||
10 | |||||
11 | @Override | ||||
12 | public void onCreate() { | ||||
13 | super.onCreate(); | ||||
14 | ExtensionsFactory.init(getApplicationContext()); | ||||
15 | } | ||||
16 | } |