-
Notifications
You must be signed in to change notification settings - Fork 172
/
Copy pathbuild.gradle
100 lines (83 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
89
90
91
92
93
94
95
96
97
98
99
100
buildscript {
repositories {
maven {
url 'https://dl.google.com/dl/android/maven2'
}
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.2'
}
}
apply plugin: 'com.android.application'
android {
buildToolsVersion '33.0.1'
compileSdkVersion 34
namespace 'dk.bearware.gui'
buildFeatures {
buildConfig = true
}
androidResources {
generateLocaleConfig true
}
defaultConfig {
applicationId "dk.bearware.gui"
minSdkVersion 21
targetSdkVersion 34
versionCode 134
versionName '5.16'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
splits {
abi {
enable true
reset()
include "arm64-v8a", "armeabi-v7a", "x86", "x86_64"
universalApk true
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'teamtalk-proguard-rules.txt'
}
}
repositories {
mavenCentral()
maven { url 'https://maven.google.com/' }
maven { url 'https://jitpack.io' }
}
lint {
disable 'MissingTranslation'
}
}
dependencies {
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'androidx.annotation:annotation:1.7.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.core:core:1.12.0'
implementation 'androidx.fragment:fragment:1.6.0'
implementation 'androidx.media:media:1.6.0'
implementation 'androidx.preference:preference:1.2.1'
implementation 'androidx.viewpager:viewpager:1.0.0'
implementation 'com.google.android.material:material:1.9.0'
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))
api "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1"
implementation files('libs/TeamTalk5.jar')
// Required -- JUnit 4 framework
implementation 'com.android.support.constraint:constraint-layout:2.0.4'
testImplementation 'junit:junit:4.12'
testImplementation files('libs/TeamTalk5Test.jar')
// Core library
androidTestImplementation 'androidx.test:core:1.4.0'
// AndroidJUnitRunner and JUnit Rules
androidTestImplementation 'androidx.test:runner:1.4.0'
androidTestImplementation 'androidx.test:rules:1.4.0'
// Assertions
androidTestImplementation files('libs/TeamTalk5Test.jar')
}