-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
88 lines (72 loc) · 2.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
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
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.2'
}
}
repositories {
google()
mavenCentral()
}
apply plugin: 'com.android.library'
android {
namespace = "me.aap.utils"
compileSdkVersion 34
buildToolsVersion "34.0.0"
defaultConfig {
minSdkVersion 23
targetSdkVersion 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
buildTypes {
release {
minifyEnabled false
buildConfigField "boolean", 'D', 'false'
buildConfigField "boolean", 'FUTURE_TRACE', 'false'
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
debuggable true
buildConfigField "boolean", 'D', 'true'
buildConfigField "boolean", 'FUTURE_TRACE', 'false'
}
}
testOptions {
unitTests.all {
it.useJUnitPlatform()
}
}
}
dependencies {
implementation "androidx.appcompat:appcompat:${ANDROIDX_APPCOMPAT_VERSION}"
implementation "androidx.constraintlayout:constraintlayout:${ANDROIDX_CONSTRAINTLAYOUT_VERSION}"
implementation "com.google.android.play:core:${ANDROID_PLAY_CORE_VERSION}"
implementation "com.google.android.material:material:${ANDROID_MATERIAL_VERSION}"
implementation 'com.github.mwiede:jsch:0.2.1'
implementation 'com.hierynomus:smbj:0.11.5'
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
implementation 'org.bouncycastle:bcpkix-jdk15on:1.70'
implementation 'com.google.android.gms:play-services-auth:21.1.1'
implementation 'com.google.http-client:google-http-client-gson:1.41.8'
implementation('com.google.api-client:google-api-client-android:1.34.1') {
exclude group: 'org.apache.httpcomponents'
}
implementation('com.google.apis:google-api-services-drive:v3-rev197-1.25.0') {
exclude group: 'org.apache.httpcomponents'
exclude group: 'com.google.guava'
}
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.1'
testImplementation "org.junit.jupiter:junit-jupiter-engine:5.7.1"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.7.1"
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}