-
Notifications
You must be signed in to change notification settings - Fork 290
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix emoji only filter #393
Changes from all commits
24474b9
7c152f3
ac299c7
c91c0c6
0fb8abb
43d0be0
ae31690
d87c862
7902c4a
abf0caa
ad3b1f1
1868718
a55662c
e77823d
43f6a04
52c2c34
6de2568
5f5de32
a8fde45
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ buildscript { | |
], | ||
'runner': "com.android.support.test:runner:${versions.testRules}", | ||
'rules': "com.android.support.test:rules:${versions.testRules}", | ||
'autoService': "com.google.auto.service:auto-service:1.0-rc4", | ||
], | ||
'material': "com.google.android.material:material:1.1.0-beta01", | ||
], | ||
|
@@ -100,7 +101,8 @@ ext { | |
junit : 'junit:junit:4.13-beta-3', | ||
robolectric : 'org.robolectric:robolectric:4.3.1', | ||
privateConstructor: 'com.pushtorefresh.java-private-constructor-checker:checker:1.2.0', | ||
assertJ : 'org.assertj:assertj-core:2.9.1' | ||
assertJ : 'org.assertj:assertj-core:2.9.1', | ||
autoService : 'com.google.auto.service:auto-service:1.0-rc4' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same |
||
] | ||
|
||
javaVersion = JavaVersion.VERSION_1_7 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ dependencies { | |
testImplementation rootProject.ext.testing.assertJ | ||
testImplementation rootProject.ext.testing.robolectric | ||
testImplementation rootProject.ext.testing.privateConstructor | ||
androidTestAnnotationProcessor deps.support.test.autoService | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What do we need this for? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. One of the lints complained about it missing. |
||
} | ||
|
||
apply plugin: "com.vanniktech.maven.publish" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same