forked from iiordanov/remote-desktop-clients
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
62 lines (54 loc) · 2.44 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
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
compileSdkVersion compileApi
defaultConfig {
targetSdkVersion targetApi
minSdkVersion project.getProperties().get("SDK_VERSION")
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
packagingOptions {
exclude 'lib/armeabi/libsqlcipher.so'
exclude 'lib/mips64/libsqlcipher.so'
exclude 'lib/mips/libsqlcipher.so'
}
useLibrary 'org.apache.http.legacy'
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation project(':pubkeyGenerator')
implementation project(':remoteClientLib')
implementation project(':remoteClientLib:jni:libs:deps:FreeRDP:client:Android:Studio:freeRDPCore')
implementation files('libs/com.antlersoft.android.contentxml.jar')
implementation files('libs/com.antlersoft.android.db.jar')
// Current version of bVNC is built with bouncycastle with DH anon ciphers enabled. See https://github.com/iiordanov/bc-java
//implementation files("libs/bctls-jdk18on-1.70.jar")
implementation group: 'org.bouncycastle', name: 'bctls-jdk15on', version: '1.70'
implementation group: 'androidx.appcompat', name: 'appcompat', version: '1.4.1'
implementation group: 'androidx.legacy', name: 'legacy-support-v4', version: '1.0.0'
implementation group: 'androidx.vectordrawable', name: 'vectordrawable', version: '1.1.0'
implementation group: 'androidx.preference', name: 'preference-ktx', version: '1.2.0'
implementation 'net.zetetic:android-database-sqlcipher:4.5.1@aar'
implementation "androidx.sqlite:sqlite-ktx:2.2.0"
implementation group: 'org.yaml', name: 'snakeyaml', version: '1.23'
implementation 'org.apache.httpcomponents:httpcore:4.4.10'
implementation "com.github.luben:zstd-jni:1.4.3-1@aar"
implementation "androidx.core:core-ktx:1.7.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.google.android.play:review:2.0.1'
implementation 'com.google.android.play:review-ktx:2.0.1'
implementation project(path: ':common')
implementation 'com.google.android.gms:play-services-base:18.0.1'
}
repositories {
mavenCentral()
}