
New version hangs when running: ./gradlew :library:assembleAndroidTest --debug Android Studio "strongly recommends" we upgrade to the hanging version, but I guess we'll just have to ignore that until the latest version works again! ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=132063280
38 lines
1.1 KiB
Groovy
38 lines
1.1 KiB
Groovy
// Copyright (C) 2016 The Android Open Source Project
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.1.2'
|
|
classpath 'com.novoda:bintray-release:0.3.4'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
project.ext {
|
|
compileSdkVersion=24
|
|
targetSdkVersion=24
|
|
buildToolsVersion='23.0.3'
|
|
}
|
|
}
|