|
18 | 18 | * the License. |
19 | 19 | */ |
20 | 20 |
|
| 21 | +import static androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP; |
| 22 | + |
21 | 23 | import android.annotation.SuppressLint; |
22 | 24 | import android.content.res.ColorStateList; |
23 | 25 | import android.content.res.Resources; |
|
37 | 39 | import android.graphics.drawable.Drawable; |
38 | 40 | import android.graphics.drawable.VectorDrawable; |
39 | 41 | import android.os.Build; |
| 42 | +import android.util.AttributeSet; |
| 43 | +import android.util.LayoutDirection; |
| 44 | +import android.util.Log; |
| 45 | +import android.util.Xml; |
| 46 | + |
40 | 47 | import androidx.annotation.DrawableRes; |
41 | 48 | import androidx.annotation.NonNull; |
42 | 49 | import androidx.annotation.Nullable; |
43 | 50 | import androidx.annotation.RequiresApi; |
44 | 51 | import androidx.annotation.RestrictTo; |
45 | | -import androidx.core.graphics.drawable.DrawableCompat; |
46 | 52 | import androidx.collection.ArrayMap; |
47 | | -import android.util.AttributeSet; |
48 | | -import android.util.LayoutDirection; |
49 | | -import android.util.Log; |
50 | | -import android.util.Xml; |
| 53 | +import androidx.core.graphics.drawable.DrawableCompat; |
51 | 54 |
|
52 | 55 | import org.xmlpull.v1.XmlPullParser; |
53 | 56 | import org.xmlpull.v1.XmlPullParserException; |
|
56 | 59 | import java.util.ArrayList; |
57 | 60 | import java.util.Stack; |
58 | 61 |
|
59 | | -import static androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP; |
60 | | - |
61 | 62 |
|
62 | 63 | public class VectorDrawableCompat extends VectorDrawableCommon { |
63 | 64 | static final String LOGTAG = "VectorDrawableCompat"; |
|
0 commit comments