diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-06-25 12:33:57 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 14:33:57 +0200 |
commit | 2f7c50136a0561fde89c678777bf4498cf573234 (patch) | |
tree | cda4c7b60da03355367a14b7b4aa302bea30243a | |
parent | c9149a76631b1b6801555391bb5c435c1c24983f (diff) |
build: uprev all dependencies (#882)
* build: uprev all dependencies
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
* proguard: add keep rule for WhatTheStack
sigh
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
-rw-r--r-- | app/proguard-rules.pro | 5 | ||||
-rw-r--r-- | dependencies.gradle | 18 |
2 files changed, 14 insertions, 9 deletions
diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro index 232f70e7..8e53f558 100644 --- a/app/proguard-rules.pro +++ b/app/proguard-rules.pro @@ -31,3 +31,8 @@ # Tink (for security-crypto) # I'm most certainly not a fan of this catch-all rule -keep class com.google.crypto.tink.proto.** { *; } + +# WhatTheStack +-keep class com.haroldadmin.whatthestack.WhatTheStackInitializer { + <init>(); +} diff --git a/dependencies.gradle b/dependencies.gradle index fe0d0cbd..4030659c 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -27,24 +27,24 @@ ext.deps = [ annotation: 'androidx.annotation:annotation:1.2.0-alpha01', activity_ktx: 'androidx.activity:activity-ktx:1.2.0-alpha06', appcompat: 'androidx.appcompat:appcompat:1.3.0-alpha01', - biometric: 'androidx.biometric:biometric:1.0.1', - constraint_layout: 'androidx.constraintlayout:constraintlayout:2.0.0-beta6', + biometric: 'androidx.biometric:biometric:1.1.0-alpha01', + constraint_layout: 'androidx.constraintlayout:constraintlayout:2.0.0-beta7', core_ktx: 'androidx.core:core-ktx:1.5.0-alpha01', documentfile: 'androidx.documentfile:documentfile:1.0.1', fragment_ktx: 'androidx.fragment:fragment-ktx:1.3.0-alpha06', - lifecycle_common: 'androidx.lifecycle:lifecycle-common-java8:2.3.0-alpha04', - lifecycle_livedata_ktx: 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.0-alpha04', - lifecycle_viewmodel_ktx: 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha04', + lifecycle_common: 'androidx.lifecycle:lifecycle-common-java8:2.3.0-alpha05', + lifecycle_livedata_ktx: 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.0-alpha05', + lifecycle_viewmodel_ktx: 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha05', material: 'com.google.android.material:material:1.3.0-alpha01', preference: 'androidx.preference:preference:1.1.1', - recycler_view: 'androidx.recyclerview:recyclerview:1.2.0-alpha03', + recycler_view: 'androidx.recyclerview:recyclerview:1.2.0-alpha04', recycler_view_selection: 'androidx.recyclerview:recyclerview-selection:1.1.0-rc01', security: 'androidx.security:security-crypto:1.1.0-alpha01', - swiperefreshlayout: 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-rc01' + swiperefreshlayout: 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' ], third_party: [ - bouncycastle: 'org.bouncycastle:bcprov-jdk15on:1.65', + bouncycastle: 'org.bouncycastle:bcprov-jdk15on:1.65.01', fastscroll: 'me.zhanghai.android.fastscroll:library:1.1.4', jsch: 'com.jcraft:jsch:0.1.55', jgit: 'org.eclipse.jgit:org.eclipse.jgit:3.7.1.201504261725-r', @@ -55,7 +55,7 @@ ext.deps = [ ssh_auth: 'org.sufficientlysecure:sshauthentication-api:1.0', timber: 'com.jakewharton.timber:timber:4.7.1', timberkt: 'com.github.ajalt:timberkt:1.5.1', - whatthestack: 'com.github.haroldadmin:WhatTheStack:0.0.2', + whatthestack: 'com.github.haroldadmin:WhatTheStack:0.0.3', ], testing: [ |