-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
43 lines (34 loc) · 1 KB
/
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
34
35
36
37
38
39
40
41
42
43
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
// Android gradle
ext.android_gradle_version = '4.2.0'
// Android
ext.compile_sdk_version = 30
ext.min_sdk_version = 17
ext.version_code = 4
ext.version_name = '1.0.3'
// Dependencies
ext.android_annotation_version = '1.3.0-alpha01'
ext.appcompat_version = '1.4.0-alpha01'
ext.flexbox_version = '3.0.0'
ext.legacy_support_v4_version = '1.0.0'
repositories {
mavenCentral()
google()
}
dependencies {
classpath "com.android.tools.build:gradle:$android_gradle_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id("io.github.gradle-nexus.publish-plugin") version "1.1.0"
}
allprojects {
repositories {
mavenCentral()
google()
}
}
apply from: "${rootDir}/scripts/publish-root.gradle"