Skip to content

Commit 781de12

Browse files
SUPERCILEXsamtstern
authored andcommitted
Don't ship our lint checks to consumers (#1106)
1 parent 8d4e48a commit 781de12

File tree

9 files changed

+19
-3
lines changed

9 files changed

+19
-3
lines changed

auth/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ dependencies {
5757
testImplementation 'com.facebook.android:facebook-login:4.29.0'
5858
testImplementation("com.twitter.sdk.android:twitter-core:3.1.1@aar") { transitive = true }
5959

60-
lintChecks project(':lint')
60+
implementation project(':internal:lintchecks')
6161
}
6262

6363
javadoc.include([

constants.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ project.ext {
1111
firebaseVersion = '11.8.0'
1212
supportLibraryVersion = '27.0.2'
1313
architectureVersion = '1.0.0'
14-
kotlinVersion = '1.2.10'
14+
kotlinVersion = '1.2.20'
1515
}
File renamed without changes.

internal/lintchecks/build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
apply plugin: 'com.android.library'
2+
3+
android {
4+
compileSdkVersion compileSdk
5+
6+
defaultConfig {
7+
minSdkVersion minSdk
8+
targetSdkVersion targetSdk
9+
}
10+
}
11+
12+
dependencies {
13+
lintChecks project(':internal:lint')
14+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<manifest package="com.firebaseui.lint" />

settings.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
include ':app', ':library', ':database', ':auth', ':storage', ':firestore', ':common', ':lint'
1+
include ':app', ':library', ':database', ':auth', ':storage', ':firestore', ':common',
2+
':internal:lint', ':internal:lintchecks'

0 commit comments

Comments
 (0)