Skip to content

Commit

Permalink
Move to stable android plugin. Fix lint error, see square/okio#58 (co…
Browse files Browse the repository at this point in the history
…mment) (#321)

Signed-off-by: digitaldan <[email protected]>
  • Loading branch information
digitaldan committed Jun 20, 2017
1 parent da50c85 commit a155e1e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.4.0-alpha7'
classpath 'com.android.tools.build:gradle:2.3.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand Down
3 changes: 3 additions & 0 deletions mobile/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ android {
testOptions {
unitTests.returnDefaultValues = true
}
lintOptions {
lintConfig file("lint.xml")
}
}

repositories {
Expand Down
6 changes: 6 additions & 0 deletions mobile/lint.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<issue id="InvalidPackage">
<ignore regexp=".*okio.*" />
</issue>
</lint>

0 comments on commit a155e1e

Please sign in to comment.