Added Android code
[wl-app.git] / Android / webViewMarker / build.gradle
1 apply plugin: 'com.android.library'
2
3 ext {
4     bintrayRepo = 'maven'
5     bintrayName = 'folioreader'
6
7     publishedGroupId = 'com.folioreader'
8     libraryName = 'WebViewMarker'
9     artifact = 'webViewMarker'
10
11     libraryDescription = 'An epub reader for Android'
12
13     siteUrl = 'https://github.com/FolioReader/FolioReader-Android'
14     gitUrl = 'https://github.com/FolioReader/FolioReader-Android.git'
15
16     libraryVersion = '0.3.1'
17
18     developerId = 'mobisystech'
19     developerName = 'Folio Reader'
20     developerEmail = 'mahavir@codetoart.com'
21
22     licenseName = 'FreeBSD License'
23     licenseUrl = 'https://en.wikipedia.org/wiki/FreeBSD_Documentation_License#License'
24     allLicenses = ["FreeBSD"]
25 }
26
27 android {
28     compileSdkVersion 27
29     buildToolsVersion '27.0.3'
30
31     defaultConfig {
32         minSdkVersion 14
33         targetSdkVersion 27
34         versionCode 1
35         versionName "1.0"
36     }
37
38     buildTypes {
39         release {
40             minifyEnabled false
41             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
42         }
43     }
44 }
45
46 apply from: '../folioreader/bintray/installv1.gradle'
47 apply from: '../folioreader/bintray/bintrayv1.gradle'