-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathbuild.gradle
More file actions
68 lines (52 loc) · 1.7 KB
/
build.gradle
File metadata and controls
68 lines (52 loc) · 1.7 KB
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.library'
apply plugin: 'maven'
group = 'com.github.barteksc.devjtafork'
version = '2.8.3'
uploadArchives {
repositories {
mavenDeployer {
repository(url: mavenLocal().getUrl())
}
}
}
ext {
bintrayRepo = 'maven'
bintrayName = 'android-pdf-viewer'
publishedGroupId = 'com.github.barteksc.devjtafork'
libraryName = 'AndroidPdfViewer'
artifact = 'android-pdf-viewer'
libraryDescription = 'Android view for displaying PDFs rendered with PdfiumAndroid'
siteUrl = 'https://github.com/devjta/AndroidPdfViewerV2'
gitUrl = 'https://github.com/devjta/AndroidPdfViewerV2.git'
libraryVersion = '2.8.3'
developerId = 'devjta'
developerName = 'Joerg Taschek'
developerEmail = 'behaveu@gmail.com'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
/* ndk {
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86' // <- only the supported ones
}*/
minSdkVersion 14
targetSdkVersion 26
versionCode 1
versionName "2.8.3"
}
packagingOptions{
doNotStrip '*/mips/*.so'
doNotStrip '*/mips64/*.so'
}
}
dependencies {
compile 'com.android.support:support-compat:28.0.0'
compile 'com.android.support:support-v4:28.0.0'
compile 'com.github.barteksc:pdfium-android:1.9.0'
}
//apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
//apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'