| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- apply plugin: 'com.android.library'
- ext {
- bintrayRepo = 'maven'
- bintrayName = 'android-pdf-viewer'
- publishedGroupId = 'com.github.barteksc'
- libraryName = 'AndroidPdfViewer'
- artifact = 'android-pdf-viewer'
- libraryDescription = 'Android view for displaying PDFs rendered with PdfiumAndroid'
- siteUrl = 'https://github.com/barteksc/AndroidPdfViewer'
- gitUrl = 'https://github.com/barteksc/AndroidPdfViewer.git'
- libraryVersion = '2.7.0-beta.1'
- developerId = 'barteksc'
- developerName = 'Bartosz Schiller'
- developerEmail = 'barteksch@boo.pl'
- licenseName = 'The Apache Software License, Version 2.0'
- licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
- allLicenses = ["Apache-2.0"]
- }
- android {
- compileSdkVersion rootProject.ext.android.compileSdkVersion
- buildToolsVersion rootProject.ext.android.buildToolsVersion
- defaultConfig {
- minSdkVersion rootProject.ext.android.minSdkVersion
- targetSdkVersion rootProject.ext.android.targetSdkVersion
- versionCode 1
- versionName "2.7.0-beta.1"
- }
- }
- dependencies {
- compile 'com.github.barteksc:pdfium-android:1.7.0'
- }
- //apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
- //apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'
|