Avoid multiple PRs from Dependabot when a new version of com.vanniktech:emoji* is available

Not updating the vesion here, dependabot will do it.
This commit is contained in:
Benoit Marty 2021-09-28 11:29:30 +02:00 committed by Benoit Marty
parent 6d91482da1
commit 7d7ea3b9ad
2 changed files with 7 additions and 2 deletions

View File

@ -22,6 +22,7 @@ def epoxy = "4.6.2"
def glide = "4.12.0" def glide = "4.12.0"
def bigImageViewer = "1.8.1" def bigImageViewer = "1.8.1"
def jjwt = "0.11.2" def jjwt = "0.11.2"
def vanniktechEmoji = "0.7.0"
// Testing // Testing
def mockk = "1.12.0" def mockk = "1.12.0"
@ -122,6 +123,10 @@ ext.libs = [
'jjwtImpl' : "io.jsonwebtoken:jjwt-impl:$jjwt", 'jjwtImpl' : "io.jsonwebtoken:jjwt-impl:$jjwt",
'jjwtOrgjson' : "io.jsonwebtoken:jjwt-orgjson:$jjwt" 'jjwtOrgjson' : "io.jsonwebtoken:jjwt-orgjson:$jjwt"
], ],
vanniktech: [
'emojiMaterial' : "com.vanniktech:emoji-material:$vanniktechEmoji",
'emojiGoogle' : "com.vanniktech:emoji-google:$vanniktechEmoji"
],
tests : [ tests : [
'kluent' : "org.amshove.kluent:kluent-android:1.68", 'kluent' : "org.amshove.kluent:kluent-android:1.68",
'timberJunitRule' : "net.lachlanmckee:timber-junit-rule:1.0.1", 'timberJunitRule' : "net.lachlanmckee:timber-junit-rule:1.0.1",

View File

@ -473,8 +473,8 @@ dependencies {
implementation 'me.dm7.barcodescanner:zxing:1.9.13' implementation 'me.dm7.barcodescanner:zxing:1.9.13'
// Emoji Keyboard // Emoji Keyboard
implementation 'com.vanniktech:emoji-material:0.7.0' implementation libs.vanniktech.emojiMaterial
implementation 'com.vanniktech:emoji-google:0.7.0' implementation libs.vanniktech.emojiGoogle
implementation 'im.dlg:android-dialer:1.2.5' implementation 'im.dlg:android-dialer:1.2.5'