Skip to content

Commit

Permalink
Bump version to 4.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
brettchabot committed May 30, 2019
1 parent ceca1b8 commit 429defe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions build.gradle
Expand Up @@ -138,6 +138,7 @@ afterEvaluate {
task prefetchSdks() {
AndroidSdk.ALL_SDKS.each { androidSdk ->
doLast {
System.out.println("Prefetching ${androidSdk.coordinates}...")
println("Prefetching ${androidSdk.coordinates}...")
// prefetch into maven local repo...
def mvnCommand = "mvn -q dependency:get -DrepoUrl=http://maven.google.com \
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,4 +1,4 @@
thisVersion=4.3-beta-1
thisVersion=4.3

apiCompatVersion=4.2

Expand Down
Expand Up @@ -91,6 +91,7 @@ private void whileLocked(Runnable runnable) {
try (RandomAccessFile raf = new RandomAccessFile(lockFile, "rw")) {
try (FileChannel channel = raf.getChannel()) {
try (FileLock ignored = channel.lock()) {
System.out.println("Downloading from maven ");
runnable.run();
}
}
Expand Down

0 comments on commit 429defe

Please sign in to comment.