mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 00:21:07 +01:00
Test Plan: revert-hammer
Differential Revision:
D22118971 (262ad8e6ab)
Original commit changeset: 566e45e8f6f7
fbshipit-source-id: 74cfec0c978b724d84460a6d0c98f97b389811f7
44 lines
1.2 KiB
Groovy
44 lines
1.2 KiB
Groovy
allprojects {
|
|
buildscript {
|
|
ext {
|
|
minSdkVersion = 21
|
|
targetSdkVersion = 28
|
|
compileSdkVersion = 28
|
|
buildToolsVersion = '28.0.3'
|
|
|
|
coreVersion = "1.2.0"
|
|
extJUnitVersion = "1.1.1"
|
|
runnerVersion = "1.2.0"
|
|
rulesVersion = "1.2.0"
|
|
junitVersion = "4.12"
|
|
|
|
androidSupportAppCompatV7Version = "28.0.0"
|
|
fbjniJavaOnlyVersion = "0.0.3"
|
|
soLoaderNativeLoaderVersion = "0.8.0"
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
mavenLocal()
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.3.2'
|
|
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:${GRADLE_BINTRAY_PLUGIN_VERSION}"
|
|
classpath "com.github.dcendents:android-maven-gradle-plugin:${ANDROID_MAVEN_GRADLE_PLUGIN_VERSION}"
|
|
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.9.8"
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
ext.deps = [
|
|
jsr305: 'com.google.code.findbugs:jsr305:3.0.1',
|
|
]
|