aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle
blob: dd14097d87ae3269bf3de4b2e54f4ad27232ca49 (plain)
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
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
	compileSdkVersion 25
	buildToolsVersion '25.0.0'

	defaultConfig {
		applicationId "org.pacien.tincapp"
		minSdkVersion 14
		targetSdkVersion 21
        multiDexEnabled true
		versionCode 7
		versionName "0.7"
		ndk {
			abiFilters 'x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'arm64-v8a'
		}
	}

	buildTypes {
		release {
			minifyEnabled true
			proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
		}
	}

	externalNativeBuild {
		cmake {
			path "CMakeLists.txt"
		}
	}

	lintOptions {
		disable 'MissingTranslation'
	}
}

dependencies {
	compile fileTree(dir: 'libs', include: ['*.jar'])

	compile 'com.android.support:appcompat-v7:25.4.0'
	compile 'com.android.support:design:25.4.0'
	compile 'com.android.support:support-v4:25.4.0'
	compile 'com.android.support:recyclerview-v7:25.4.0'
	compile 'com.android.support.constraint:constraint-layout:1.0.2'

	compile('org.apache.commons:commons-configuration2:2.1.1') {
		exclude group: 'commons-logging', module: 'commons-logging'
	}
	compile('commons-beanutils:commons-beanutils:1.9.3') {
		exclude group: 'commons-logging', module: 'commons-logging'
	}

	compile 'org.bouncycastle:bcpkix-jdk15on:1.57'

	compile 'net.sourceforge.streamsupport:streamsupport-cfuture:1.5.5'

	compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
}

repositories {
	mavenCentral()
	jcenter()
	maven {
		url "https://maven.google.com"
	}
}