Skip to content

Commit a155e1e

Browse files
authored
Move to stable android plugin. Fix lint error, see square/okio#58 (comment) (#321)
Signed-off-by: digitaldan <[email protected]>
1 parent da50c85 commit a155e1e

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
mavenCentral()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:2.4.0-alpha7'
9+
classpath 'com.android.tools.build:gradle:2.3.3'
1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files
1212
}

mobile/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ android {
2828
testOptions {
2929
unitTests.returnDefaultValues = true
3030
}
31+
lintOptions {
32+
lintConfig file("lint.xml")
33+
}
3134
}
3235

3336
repositories {

mobile/lint.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<lint>
3+
<issue id="InvalidPackage">
4+
<ignore regexp=".*okio.*" />
5+
</issue>
6+
</lint>

0 commit comments

Comments
 (0)