Skip to content

Commit

Permalink
update dependencies, custom lint config
Browse files Browse the repository at this point in the history
  • Loading branch information
danthe1st committed Jan 3, 2025
1 parent f1adab7 commit 8cccd5b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 8 deletions.
20 changes: 12 additions & 8 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,20 +59,24 @@ android {
useLegacyPackaging = true
}
}
lint {
// https://github.com/bumptech/glide/issues/4940
lintConfig = file("$rootDir/lint_config.xml")
}
}


dependencies {
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'com.google.android.material:material:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.constraintlayout:constraintlayout:2.2.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation 'org.jsoup:jsoup:1.14.3'
implementation "org.mozilla.geckoview:geckoview:133.0.20241209150345"
implementation 'androidx.preference:preference:1.2.0'
implementation 'com.google.android.gms:play-services-oss-licenses:17.0.0'
implementation 'androidx.preference:preference:1.2.1'
implementation 'com.google.android.gms:play-services-oss-licenses:17.1.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
}
7 changes: 7 additions & 0 deletions app/lint_config.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<!-- https://github.com/bumptech/glide/issues/4940 -->
<lint>
<issue id="NotificationPermission">
<ignore regexp="org.mozilla.thirdparty.com.google.android.exoplayer2.util.NotificationUtil" />
</issue>
</lint>
2 changes: 2 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />

<!-- apparently required for GeckoView -->
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />

<application
android:allowBackup="true"
Expand Down

0 comments on commit 8cccd5b

Please sign in to comment.