Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

build.gradle 967 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  1. allprojects {
  2. buildscript {
  3. ext {
  4. minSdkVersion = 21
  5. targetSdkVersion = 28
  6. compileSdkVersion = 28
  7. buildToolsVersion = '28.0.3'
  8. coreVersion = "1.2.0"
  9. extJUnitVersion = "1.1.1"
  10. runnerVersion = "1.2.0"
  11. rulesVersion = "1.2.0"
  12. junitVersion = "4.12"
  13. androidSupportAppCompatV7Version = "28.0.0"
  14. fbjniJavaOnlyVersion = "0.0.3"
  15. soLoaderNativeLoaderVersion = "0.10.5"
  16. pytorchAndroidVersion = "1.12"
  17. }
  18. repositories {
  19. google()
  20. mavenCentral()
  21. }
  22. dependencies {
  23. classpath 'com.android.tools.build:gradle:4.1.2'
  24. classpath 'com.vanniktech:gradle-maven-publish-plugin:0.14.2'
  25. }
  26. }
  27. repositories {
  28. google()
  29. mavenCentral()
  30. }
  31. }
  32. ext.deps = [
  33. jsr305: 'com.google.code.findbugs:jsr305:3.0.1',
  34. ]
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...