-
Notifications
You must be signed in to change notification settings - Fork 172
Expand file tree
/
Copy pathbuild.gradle
More file actions
51 lines (42 loc) · 1.15 KB
/
build.gradle
File metadata and controls
51 lines (42 loc) · 1.15 KB
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
44
45
46
47
48
49
50
51
group 'com.bluechilli.flutteruploader'
version '1.0-SNAPSHOT'
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.1'
}
}
rootProject.allprojects {
repositories {
google()
mavenCentral()
}
}
apply plugin: 'com.android.library'
android {
namespace 'com.bluechilli.flutteruploader'
compileSdkVersion 31
defaultConfig {
minSdkVersion 16
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
disable 'InvalidPackage'
}
}
dependencies {
implementation "androidx.work:work-runtime:2.7.1"
implementation "androidx.concurrent:concurrent-futures:1.1.0"
implementation "androidx.annotation:annotation:1.2.0"
implementation "androidx.lifecycle:lifecycle-livedata:2.3.1"
implementation "androidx.core:core:1.5.0"
implementation "com.squareup.okhttp3:okhttp:4.9.0"
implementation "com.google.code.gson:gson:2.8.6"
}