Skip to content

Commit 85bcd65

Browse files
committed
Fix lint errors
1 parent a143c84 commit 85bcd65

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

app/AndroidManifest.xml

-4
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
<uses-permission android:name="android.permission.INTERNET" />
1717

1818
<application
19-
android:allowBackup="false"
20-
android:fullBackupContent="false"
2119
android:icon="@mipmap/ic_launcher"
2220
android:label="@string/app_name_short"
2321
android:theme="@style/AppTheme"
@@ -27,7 +25,6 @@
2725
<!-- Main activity -->
2826
<activity
2927
android:name=".LoginActivity"
30-
android:label="@string/app_name_short"
3128
android:theme="@style/AppTheme"
3229
android:windowSoftInputMode="stateHidden"
3330
android:exported="true">
@@ -39,7 +36,6 @@
3936

4037
<activity
4138
android:name=".TokenActivity"
42-
android:label="@string/app_name_short"
4339
android:theme="@style/AppTheme"
4440
android:windowSoftInputMode="stateHidden" >
4541
</activity>

app/build.gradle

+4
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ android {
3131
targetCompatibility JavaVersion.VERSION_1_8
3232
}
3333

34+
lintOptions {
35+
lintConfig = file("${projectDir}/lint.xml")
36+
}
37+
3438
buildTypes {
3539
debug {
3640
signingConfig signingConfigs.debugAndRelease

app/java/net/openid/appauthdemo/ConnectionBuilderForTesting.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public final class ConnectionBuilderForTesting implements ConnectionBuilder {
5555
private static final String HTTP = "http";
5656
private static final String HTTPS = "https";
5757

58-
@SuppressLint("TrustAllX509TrustManager")
58+
@SuppressLint({"TrustAllX509TrustManager", "CustomX509TrustManager"})
5959
private static final TrustManager[] ANY_CERT_MANAGER = new TrustManager[] {
6060
new X509TrustManager() {
6161
public X509Certificate[] getAcceptedIssuers() {

app/lint.xml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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>

0 commit comments

Comments
 (0)