1# Only classes listed here can use the hoststubgen annotations.
2
3# For each class, we check each item in this file, and when a match is found, we
4# either allow it if the line doesn't have a !, or disallow if the line has a !.
5# All the lines after the matching line will be ignored.
6
7
8# To allow a specific class to use annotations:
9# com.android.hoststubgen.test.tinyframework.TinyFrameworkAnnotations
10
11# To disallow a specific class to use annotations:
12# !com.android.hoststubgen.test.tinyframework.TinyFrameworkAnnotations
13
14# To allow a specific package to use annotations:
15# com.android.hoststubgen.test.*
16
17# To disallow a specific package to use annotations:
18# !com.android.hoststubgen.test.*
19
20
21com.android.hoststubgen.test.tinyframework.*
22com.supported.*
23com.unsupported.*
24
25# Use this to allow all packages
26# *
27
28# Use this to allow all packages
29# !*