-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon-android-setup.gradle
More file actions
113 lines (90 loc) · 3.37 KB
/
common-android-setup.gradle
File metadata and controls
113 lines (90 loc) · 3.37 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
101
102
103
104
105
106
107
108
109
110
111
112
113
plugins {
id('com.android.application')
id('kotlin-android')
id('kotlin-kapt')
id("dagger.hilt.android.plugin")
id('androidx.navigation.safeargs.kotlin')
id('kotlin-parcelize')
id('com.android.library')
id('kotlin-android-extensions')
}
android {
compileSdkVersion BuildConfigVersions.COMPILE_SDK_VERSION
buildToolsVersion BuildConfigVersions.BUILD_TOOLS_VERSION
defaultConfig {
applicationId BuildConfigVersions.APPLICATION_ID
minSdkVersion BuildConfigVersions.MIN_SDK_VERSION
targetSdkVersion BuildConfigVersions.TARGET_SDK_VERSION
versionCode BuildConfigVersions.VERSION_CODE
versionName BuildConfigVersions.VERSION_NAME
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
buildConfigField 'String', 'BASE_URL', "\"https://raw.githubusercontent.com/theappbusiness/engineering-challenge/main/endpoints/v2/\""
}
buildFeatures {
viewBinding = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
testOptions {
unitTests.returnDefaultValues = true
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation AndroidXDependencies.coreKtx
implementation AndroidXDependencies.appcompat
implementation MaterialDesignDependencies.materialDesign
implementation AndroidXDependencies.constraintLayout
implementation AndroidXDependencies.liveData
implementation AndroidXDependencies.viewModel
/* HILT */
implementation HiltDependencies.hiltAndroid
kapt HiltDependencies.hiltAndroidCompiler
/* Okhttp and Gson */
implementation OkhttpDependencies.okhttp
implementation OkhttpDependencies.okhttpInterceptor
implementation Gson.gson
/* Retrofit */
implementation RetrofitDependencies.retrofit
implementation RetrofitDependencies.retrofitConverterGson
/* Coroutines */
implementation KotlinDependencies.coroutines
implementation KotlinDependencies.coroutinesAndroid
/* Image Loading - Glide */
implementation ImageLoadingDependencies.glide
/* Navigation */
implementation AndroidXDependencies.navigation
implementation AndroidXDependencies.navigationUi
/* Room */
implementation AndroidXDependencies.roomRuntime
kapt AndroidXDependencies.roomCompiler
implementation AndroidXDependencies.room
/* Test - MockK */
testImplementation TestDependencies.mockk
/* Test - Truth */
androidTestImplementation TestDependencies.truth
testImplementation TestDependencies.truth
/* Test -Junit */
androidTestImplementation TestDependencies.junit
/* Test - Junit4 */
testImplementation TestDependencies.junit
testImplementation AndroidXTestDependencies.junitKtx
testImplementation AndroidXTestDependencies.coreKtx
/* Test - Core Testing */
testImplementation AndroidXTestDependencies.coreTesting
/* Test - Coroutines */
testImplementation TestDependencies.coroutines
/* Test - Espresso */
androidTestImplementation AndroidXTestDependencies.espresso_core
}