-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
59 lines (49 loc) · 1.59 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}
android {
namespace 'com.example.isowatch'
compileSdk 32
defaultConfig {
applicationId "com.example.isowatch"
minSdk 30
targetSdk 32
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
buildFeatures {
viewBinding true
}
}
dependencies {
// Samsung SDK
implementation fileTree(dir: 'libs', include: '*.aar')
// Standards
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'com.google.android.gms:play-services-wearable:18.0.0'
implementation 'androidx.percentlayout:percentlayout:1.0.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
// Wear
implementation 'androidx.wear:wear:1.2.0'
implementation 'androidx.wear:wear-input:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'com.google.android.material:material:1.7.0'
// Volley
implementation 'com.android.volley:volley:1.2.1'
// Retrofit
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
// Moshi
implementation "com.squareup.retrofit2:converter-moshi:$moshi_version"
// OkHttp
implementation "com.squareup.okhttp3:okhttp:$okhttp_version"
// WorkManager
implementation "androidx.work:work-runtime-ktx:$work_version"
}