-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
61 lines (51 loc) · 1.64 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
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}
android {
namespace 'shoham.guy.ktorserverandroid'
compileSdk 33
defaultConfig {
applicationId "shoham.guy.ktorserverandroid"
minSdk 26
targetSdk 33
versionCode 1
versionName "1.0"
}
packagingOptions {
merge 'META-INF/*'
}
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'
}
}
dependencies {
def ktor_version = '2.2.4'
implementation "io.ktor:ktor-server-core:$ktor_version"
implementation "io.ktor:ktor-server-netty:$ktor_version"
// Rate Limit
implementation "io.ktor:ktor-server-rate-limit:$ktor_version"
// Auth
implementation "io.ktor:ktor-server-auth:$ktor_version"
implementation "io.ktor:ktor-server-auth-jwt:$ktor_version"
// HTTPS
implementation "io.ktor:ktor-network-tls-certificates:$ktor_version"
// Call Logging
implementation "io.ktor:ktor-server-call-logging:$ktor_version"
implementation "org.slf4j:slf4j-android:1.7.36"
implementation 'androidx.core:core-ktx:1.10.0'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4'
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.8.0'
}