1/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17multidexInstanciable:
18  @@com.android.jack.annotations.MultiDexInstaller
19  class *
20    is {
21      public
22    }
23    extends {
24        class android.app.Instrumentation
25      | class android.app.Activity
26      | class android.app.Service
27      | class android.content.ContentProvider
28      | class android.content.BroadcastReceiver
29      | class android.app.backup.BackupAgent
30      | class android.app.Application
31    }
32    do {
33      @@com.android.jack.annotations.MultiDexInstaller
34      method void <init>();
35    }
36
37multidexInstaller:
38  class *
39    is {
40      public
41    }
42    extends {
43      class android.app.Application
44    }
45    do {
46      @@com.android.jack.annotations.MultiDexInstaller
47      method void attachBaseContext(class android.content.Context)
48      ;
49    }
50