File tree 4 files changed +11
-5
lines changed
java/net/openid/appauthdemo
4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 16
16
<uses-permission android : name =" android.permission.INTERNET" />
17
17
18
18
<application
19
- android : allowBackup =" false"
20
- android : fullBackupContent =" false"
21
19
android : icon =" @mipmap/ic_launcher"
22
20
android : label =" @string/app_name_short"
23
21
android : theme =" @style/AppTheme"
27
25
<!-- Main activity -->
28
26
<activity
29
27
android : name =" .LoginActivity"
30
- android : label =" @string/app_name_short"
31
28
android : theme =" @style/AppTheme"
32
29
android : windowSoftInputMode =" stateHidden"
33
30
android : exported =" true" >
39
36
40
37
<activity
41
38
android : name =" .TokenActivity"
42
- android : label =" @string/app_name_short"
43
39
android : theme =" @style/AppTheme"
44
40
android : windowSoftInputMode =" stateHidden" >
45
41
</activity >
Original file line number Diff line number Diff line change @@ -31,6 +31,10 @@ android {
31
31
targetCompatibility JavaVersion . VERSION_1_8
32
32
}
33
33
34
+ lintOptions {
35
+ lintConfig = file(" ${ projectDir} /lint.xml" )
36
+ }
37
+
34
38
buildTypes {
35
39
debug {
36
40
signingConfig signingConfigs. debugAndRelease
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ public final class ConnectionBuilderForTesting implements ConnectionBuilder {
55
55
private static final String HTTP = "http" ;
56
56
private static final String HTTPS = "https" ;
57
57
58
- @ SuppressLint ("TrustAllX509TrustManager" )
58
+ @ SuppressLint ({ "TrustAllX509TrustManager" , "CustomX509TrustManager" } )
59
59
private static final TrustManager [] ANY_CERT_MANAGER = new TrustManager [] {
60
60
new X509TrustManager () {
61
61
public X509Certificate [] getAcceptedIssuers () {
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <lint >
3
+ <issue id =" NotificationPermission" >
4
+ <ignore regexp =" com.bumptech.glide.request.target.NotificationTarget" />
5
+ </issue >
6
+ </lint >
You can’t perform that action at this time.
0 commit comments