forked from linkedin/dexmaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- newest version of all dependencies (including gradle 3) This required me to do the nasty guava hack in buildSrc/build.gradle. This seems to be a known quirk with gradle and this was the recommended workaround - Consistent format of build files - Parallel build (cuts build time in half)
- Loading branch information
1 parent
4946f6c
commit 6290cb2
Showing
10 changed files
with
55 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
apply plugin: 'com.android.application' | ||
|
||
android { | ||
compileSdkVersion 25 | ||
buildToolsVersion "25.0.0" | ||
compileSdkVersion 27 | ||
buildToolsVersion '27.0.3' | ||
|
||
lintOptions { | ||
abortOnError false | ||
} | ||
|
||
defaultConfig { | ||
applicationId "com.android.dexmaker.mockito.inline.dispatcher" | ||
minSdkVersion 25 | ||
targetSdkVersion 25 | ||
applicationId 'com.android.dexmaker.mockito.inline.dispatcher' | ||
minSdkVersion 27 | ||
targetSdkVersion 27 | ||
versionName VERSION_NAME | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
apply plugin: 'com.android.application' | ||
|
||
repositories { | ||
jcenter() | ||
google() | ||
} | ||
|
||
android { | ||
compileSdkVersion 25 | ||
buildToolsVersion '25.0.0' | ||
compileSdkVersion 27 | ||
buildToolsVersion '27.0.3' | ||
|
||
defaultConfig { | ||
applicationId "com.linkedin.dexmaker" | ||
applicationId 'com.linkedin.dexmaker' | ||
minSdkVersion 8 | ||
targetSdkVersion 25 | ||
targetSdkVersion 27 | ||
versionCode 1 | ||
versionName VERSION_NAME | ||
|
||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | ||
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner' | ||
} | ||
} | ||
|
||
repositories { | ||
jcenter() | ||
google() | ||
} | ||
|
||
dependencies { | ||
compile project(":dexmaker") | ||
implementation project(":dexmaker") | ||
|
||
androidTestCompile 'com.android.support.test:runner:0.5' | ||
androidTestCompile 'junit:junit:4.12' | ||
androidTestImplementation 'com.android.support.test:runner:0.5' | ||
androidTestImplementation 'junit:junit:4.12' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters