-
-
Notifications
You must be signed in to change notification settings - Fork 316
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (29 loc) · 806 Bytes
/
build.gradle
File metadata and controls
34 lines (29 loc) · 806 Bytes
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
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:3.5.2"
classpath "com.github.dcendents:android-maven-gradle-plugin:2.1"
}
}
plugins {
id "com.github.ben-manes.versions" version "0.27.0"
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
ext {
compileSdkVersion = 29
minSdkVersion = 15
targetSdkVersion = 29
appcompat = "androidx.appcompat:appcompat:1.1.0"
parse = "com.github.parse-community.Parse-SDK-Android:parse:1.22.1"
parseFacebookUtils = "com.github.parse-community:ParseFacebookUtils-Android:1.14.0"
parseTwitterUtils = "com.github.parse-community:ParseTwitterUtils-Android:1.13.0"
}