-
Notifications
You must be signed in to change notification settings - Fork 277
Expand file tree
/
Copy pathbuild.gradle
More file actions
100 lines (85 loc) · 2.8 KB
/
build.gradle
File metadata and controls
100 lines (85 loc) · 2.8 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
group 'com.amazonaws.amplify.amplify_datastore'
version '1.0-SNAPSHOT'
buildscript {
ext.kotlin_version = '2.2.0'
repositories {
mavenLocal()
google()
mavenCentral()
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:8.13.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'org.jlleitschuh.gradle:ktlint-gradle:14.0.1'
}
}
rootProject.allprojects {
repositories {
mavenLocal()
google()
mavenCentral()
}
}
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-parcelize'
apply plugin: 'org.jlleitschuh.gradle.ktlint'
android {
compileSdk 36
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
test.java.srcDirs += 'src/test/kotlin'
test.resources.srcDirs += '../test/resources'
}
defaultConfig {
minSdkVersion 24
}
lintOptions {
disable 'InvalidPackage'
disable 'AndroidGradlePluginVersion'
informational 'GradleDependency'
abortOnError true
warningsAsErrors true
checkTestSources true
xmlReport false
htmlReport false
}
compileOptions {
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '17'
}
testOptions {
unitTests {
includeAndroidResources = true
}
}
namespace 'com.amazonaws.amplify.amplify_datastore'
}
dependencies {
coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:2.1.5"
implementation 'com.amplifyframework:aws-auth-cognito:2.34.0'
implementation "com.amplifyframework:aws-api:2.34.0"
implementation "com.amplifyframework:aws-datastore:2.34.0"
implementation "com.amplifyframework:aws-api-appsync:2.34.0"
implementation 'com.google.code.gson:gson:2.13.1'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2'
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-core:5.21.0'
testImplementation 'org.mockito:mockito-inline:5.2.0'
testImplementation 'androidx.test:core:1.7.0'
testImplementation 'com.google.code.gson:gson:2.13.1'
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.2'
// Tests must be updated if bumped
//noinspection GradleDependency
testImplementation 'org.robolectric:robolectric:4.16.1'
testImplementation 'com.fasterxml.jackson.core:jackson-core:2.21.0'
testImplementation 'com.fasterxml.jackson.core:jackson-annotations:2.21'
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.21.0'
}