mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
Test Plan: revert-hammer
Differential Revision:
D27469727 (507b46f23e)
Original commit changeset: 2ab22879e81c
fbshipit-source-id: d656463b81a02fbf870dded5d3868bb33e016fe0
41 lines
965 B
Groovy
41 lines
965 B
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:4.1.2'
|
|
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.14.2'
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
ext.deps = [
|
|
jsr305: 'com.google.code.findbugs:jsr305:3.0.1',
|
|
]
|