diff options
-rw-r--r-- | app/build.gradle | 1 | ||||
-rw-r--r-- | build.gradle | 4 | ||||
-rw-r--r-- | docs/Changelog.md | 4 | ||||
-rw-r--r-- | gradle.properties | 18 |
4 files changed, 16 insertions, 11 deletions
diff --git a/app/build.gradle b/app/build.gradle index 4025568a..409a109b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -7,6 +7,7 @@ apply plugin: 'com.getkeepsafe.dexcount' apply plugin: 'com.gladed.androidgitversion' apply from: '../spotless.gradle' +group = APP_GROUP android { compileSdkVersion kau.targetSdk diff --git a/build.gradle b/build.gradle index 64e324d2..33031d0b 100644 --- a/build.gradle +++ b/build.gradle @@ -8,13 +8,13 @@ buildscript { dependencies { classpath "ca.allanwang:kau:${KAU}" - classpath 'com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta02' +// classpath 'com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta02' classpath "com.android.tools.build:gradle:${ANDROID_GRADLE}" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${KOTLIN}" classpath "com.bugsnag:bugsnag-android-gradle-plugin:${BUGSNAG_PLUGIN}" classpath "com.diffplug.spotless:spotless-plugin-gradle:${SPOTLESS}" classpath "com.getkeepsafe.dexcount:dexcount-gradle-plugin:${DEX_PLUGIN}" - classpath "gradle.plugin.com.gladed.gradle.androidgitversion:gradle-android-git-version:${GIT_PLUGIN}" + classpath "com.gladed.androidgitversion:gradle-android-git-version:${GIT_PLUGIN}" } wrapper.setDistributionType(Wrapper.DistributionType.ALL) diff --git a/docs/Changelog.md b/docs/Changelog.md index e58b8f5f..4d90b7fb 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -1,5 +1,9 @@ # Changelog +## v2.2.3 +* Add ability to hide stories +* Remove fbclid from urls + ## v2.2.2 * New marketplace shortcut * Fix crash when internet disconnects (may still need app restart) diff --git a/gradle.properties b/gradle.properties index f95fed2b..b1125720 100644 --- a/gradle.properties +++ b/gradle.properties @@ -15,22 +15,22 @@ APP_ID=Frost APP_GROUP=com.pitchedapps KAU=4.0.0-alpha02 -KOTLIN=1.3.11 +KOTLIN=1.3.21 # https://mvnrepository.com/artifact/com.android.tools.build/gradle?repo=google -ANDROID_GRADLE=3.2.1 +ANDROID_GRADLE=3.3.2 # https://github.com/diffplug/spotless/blob/master/plugin-gradle/CHANGES.md -SPOTLESS=3.17.0 +SPOTLESS=3.21.1 # https://github.com/bugsnag/bugsnag-android/releases -BUGSNAG=4.9.3 +BUGSNAG=4.12.0 # https://github.com/bugsnag/bugsnag-android-gradle-plugin/releases -BUGSNAG_PLUGIN=3.6.0 +BUGSNAG_PLUGIN=4.1.1 # https://github.com/KeepSafe/dexcount-gradle-plugin/releases DEX_PLUGIN=0.8.5 # https://github.com/gladed/gradle-android-git-version/releases -GIT_PLUGIN=0.4.7 +GIT_PLUGIN=0.4.9 # https://mvnrepository.com/artifact/org.apache.commons/commons-text # Updates blocked due to javax.script dependency COMMONS_TEXT=1.4 @@ -41,7 +41,7 @@ EXOMEDIA=4.3.0 # https://github.com/InsertKoinIO/koin/blob/master/CHANGELOG.md KOIN=1.0.2 # https://github.com/mockk/mockk/releases -MOCKK=1.8.13.kotlin13 +MOCKK=1.9.3 # https://mvnrepository.com/artifact/androidx.core/core-ktx?repo=google KTX=1.0.1 @@ -54,9 +54,9 @@ LEAK_CANARY=1.6.2 # https://github.com/zsmb13/MaterialDrawerKt/releases MATERIAL_DRAWER_KT=2.0.1 # https://github.com/square/okhttp/releases -OKHTTP=3.12.1 +OKHTTP=3.14.0 # http://robolectric.org/getting-started/ -ROBOELECTRIC=4.1 +ROBOELECTRIC=4.2 # https://github.com/davemorrissey/subsampling-scale-image-view#quick-start SCALE_IMAGE_VIEW=3.10.0 # https://github.com/umano/AndroidSlidingUpPanel#importing-the-library |