-
Notifications
You must be signed in to change notification settings - Fork 64
/
build.gradle
68 lines (54 loc) · 1.88 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
60
61
62
63
64
65
66
67
68
buildscript {
ext {
// ----- SDK Compile and Build Versions ----- //
compileSdkVersion = 31
buildToolsVersion = '30.0.3'
minSdkVersion = 14
targetSdkVersion = 31
// ----- App dependencies ----- //
// AndroidX
// https://developer.android.com/jetpack/androidx/explorer
appcompat_library_version = '1.4.0'
legacy_support_v4_version = '1.0.0'
// Material Design
// https://github.com/material-components/material-components-android/releases
material_design_version='1.4.0'
// Google Play (For Google In-App Review)
// https://developer.android.com/guide/playcore
// https://developers.google.com/android/guides/setup
play_core_version = '1.10.3'
play_services_base_version = '18.0.1'
// ------- Testing ------- //
// Junit
// https://mvnrepository.com/artifact/junit/junit
junit_version = '4.13.2'
// PowerMock
// https://github.com/powermock/powermock
powermock_version = '2.0.9'
// AndroidX
// https://developer.android.com/jetpack/androidx/explorer
// https://developer.android.com/jetpack/androidx/releases/test
annotation_version = '1.3.0'
androidx_test_version = '1.4.0'
}
repositories {
google() // "https://maven.google.com"
mavenCentral()
}
dependencies {
// Android Gradle
// https://developer.android.com/studio/releases/gradle-plugin
classpath 'com.android.tools.build:gradle:4.2.2'
// Kotlin
// https://kotlinlang.org/docs/gradle.html
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
// HockeyApp
classpath 'com.github.3mph4515:gradle-hockeyapp-plugin:3.7.6'
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}