diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-05 15:19:18 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-05 15:19:18 +0300 |
| commit | 5d602a3018c5cb1303f0b0da026de668ed221007 (patch) | |
| tree | c0de7125c3ae93fff7adbdcad638a541ad99a3c9 /org.fox.ttrss/build.gradle | |
| parent | a3851a525e81eeff11bcd3cc17741e3f9c54bbb3 (diff) | |
upgrade all dependencies to latest versions, bump compile SDK to 35
Diffstat (limited to 'org.fox.ttrss/build.gradle')
| -rwxr-xr-x | org.fox.ttrss/build.gradle | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/org.fox.ttrss/build.gradle b/org.fox.ttrss/build.gradle index 387de61d..53cedb03 100755 --- a/org.fox.ttrss/build.gradle +++ b/org.fox.ttrss/build.gradle @@ -13,9 +13,11 @@ android { buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L" buildConfigField "boolean", "ENABLE_UPDATER", "false" minSdkVersion 24 + //noinspection ExpiredTargetSdkVersion targetSdkVersion 31 - versionCode 557 - versionName "1.322" + compileSdkVersion 35 + versionCode 558 + versionName "1.323" } signingConfigs { @@ -62,14 +64,14 @@ dependencies { implementation 'com.bogdwellers:pinchtozoom:0.1' implementation 'com.github.bumptech.glide:glide:3.8.0' implementation files('libs/glide-transformations-2.0.2.jar') - implementation 'androidx.recyclerview:recyclerview:1.3.2' + implementation 'androidx.recyclerview:recyclerview:1.4.0' implementation 'androidx.legacy:legacy-support-v4:1.0.0' - implementation 'androidx.appcompat:appcompat:1.6.0' - implementation 'androidx.browser:browser:1.4.0' - implementation 'androidx.coordinatorlayout:coordinatorlayout:1.2.0' + implementation 'androidx.appcompat:appcompat:1.7.0' + implementation 'androidx.browser:browser:1.8.0' + implementation 'androidx.coordinatorlayout:coordinatorlayout:1.3.0' implementation 'com.github.natario1:NestedScrollCoordinatorLayout:5a33a7dbd8' - implementation 'com.google.android.material:material:1.6.0' - implementation 'com.google.code.gson:gson:2.8.5' + implementation 'com.google.android.material:material:1.12.0' + implementation 'com.google.code.gson:gson:2.10.1' implementation 'com.ToxicBakery.viewpager.transforms:view-pager-transforms:1.2.32@aar' implementation 'me.relex:circleindicator:1.2.2@aar' implementation 'com.nineoldandroids:library:2.4.0' |