-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (34 loc) · 861 Bytes
/
build.gradle
File metadata and controls
39 lines (34 loc) · 861 Bytes
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
buildscript {
repositories {
jcenter()
}
dependencies {
// replace with the current version of the android-apt plugin
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
}
repositories {
jcenter()
}
apply plugin: 'com.android.application'
apply plugin: 'android-apt'
android {
compileSdkVersion 26
buildToolsVersion "26.1.0"
defaultConfig {
minSdkVersion 11
targetSdkVersion 25
versionCode 3
versionName "2.0.0"
}
packagingOptions{
doNotStrip '*/mips/*.so'
doNotStrip '*/mips64/*.so'
}
}
dependencies {
compile project(':android-pdf-viewer')
compile 'com.android.support:appcompat-v7:26.1.0'
provided 'org.androidannotations:androidannotations:4.0.0'
compile 'org.androidannotations:androidannotations-api:4.0.0'
}