mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-22 17:35:54 +03:00
Merge pull request #3842 from vector-im/feature/fix_jwt_release
Fix Authenticated Jitsi not working in release #3841
This commit is contained in:
commit
a101bbe849
3 changed files with 14 additions and 3 deletions
1
changelog.d/3841.bugfix
Normal file
1
changelog.d/3841.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Authenticated Jitsi not working in release
|
13
vector/proguard-rules.pro
vendored
13
vector/proguard-rules.pro
vendored
|
@ -64,4 +64,15 @@
|
|||
-keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup <methods>; }
|
||||
|
||||
-dontwarn com.facebook.react.**
|
||||
-keep,includedescriptorclasses class com.facebook.react.bridge.** { *; }
|
||||
-keep,includedescriptorclasses class com.facebook.react.bridge.** { *; }
|
||||
|
||||
-keepattributes InnerClasses
|
||||
|
||||
# JWT dependencies
|
||||
-keep class io.jsonwebtoken.** { *; }
|
||||
-keepnames class io.jsonwebtoken.* { *; }
|
||||
-keepnames interface io.jsonwebtoken.* { *; }
|
||||
|
||||
-keep class org.bouncycastle.** { *; }
|
||||
-keepnames class org.bouncycastle.** { *; }
|
||||
-dontwarn org.bouncycastle.**
|
|
@ -1185,8 +1185,7 @@
|
|||
<string name="open_settings">Apri le Impostazioni</string>
|
||||
<string name="settings_troubleshoot_test_account_settings_title">Impostazioni account.</string>
|
||||
<string name="settings_troubleshoot_test_account_settings_success">Le notifiche sono abilitate per il tuo account.</string>
|
||||
<string name="settings_troubleshoot_test_account_settings_failed">Le notifiche sono disabilitate per il tuo account.
|
||||
\nControlla le impostazioni dell\'account.</string>
|
||||
<string name="settings_troubleshoot_test_account_settings_failed">Le notifiche sono disabilitate per il tuo account.\nControlla le impostazioni dell\'account.</string>
|
||||
<string name="settings_troubleshoot_test_account_settings_quickfix">Abilita</string>
|
||||
<string name="settings_troubleshoot_test_device_settings_title">Impostazioni sessione.</string>
|
||||
<string name="settings_troubleshoot_test_device_settings_success">Le notifiche sono attive per questa sessione.</string>
|
||||
|
|
Loading…
Reference in a new issue