File tree Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,9 @@ android {
55
55
includeAndroidResources = true
56
56
}
57
57
}
58
+ lintOptions {
59
+ baseline file(" lint-baseline.xml" )
60
+ }
58
61
}
59
62
60
63
dependencies {
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <issues format =" 5" by =" lint 3.4.1" client =" gradle" variant =" all" version =" 3.4.1" >
3
+ <!-- TODO: remove when bazel support tools:targetApi -->
4
+ <issue
5
+ id =" UnusedAttribute"
6
+ message =" Attribute `directBootAware` is only used in API level 24 and higher (current min is 14)"
7
+ errorLine1 =" android:directBootAware=" true" android:exported=" false" />"
8
+ errorLine2 =" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" >
9
+ <location
10
+ file =" src/main/AndroidManifest.xml"
11
+ line =" 11"
12
+ column =" 9" />
13
+ </issue >
14
+
15
+ </issues >
Original file line number Diff line number Diff line change 8
8
<application >
9
9
10
10
<service android : name =" com.google.firebase.components.ComponentDiscoveryService"
11
- android : directBootAware =" true" android : exported =" false"
12
- tools : targetApi =" n" />
11
+ android : directBootAware =" true" android : exported =" false" />
13
12
14
13
<provider
15
14
android : name =" com.google.firebase.provider.FirebaseInitProvider"
You can’t perform that action at this time.
0 commit comments