forked from TomRoush/PdfBox-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (29 loc) · 857 Bytes
/
build.gradle
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
defaultTasks 'clean','build','connectedCheck'
buildscript {
repositories {
mavenCentral()
google()
jcenter() // jp2-android
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
}
}
allprojects {
version = VERSION_NAME
repositories {
// Enable downloading snapshot versions
// maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" }
mavenCentral()
google()
jcenter()
}
// Show more warnings if desired
// gradle.projectsEvaluated {
// tasks.withType(JavaCompile) {
// options.encoding = 'UTF-8'
// options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
// }
// }
}