forked from shivasurya/FeedbackDialog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
57 lines (42 loc) · 1.51 KB
/
build.gradle
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
apply plugin: 'com.android.library'
android {
compileSdkVersion 23
defaultConfig {
minSdkVersion 16
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:23.4.0'
}
ext {
bintrayRepo = 'FeedbackDialog'
bintrayName = 'FeedbackDialog'
publishedGroupId = 'design.ivisionblog.apps'
libraryName = 'FeedbackDialog'
artifact = 'FeedbackDialog'
libraryDescription = 'An Interactive Feedback Dialog for Android inspired from Google Maps Review section'
siteUrl = 'https://github.com/shivasurya/FeedbackDialog'
gitUrl = 'https://github.com/shivasurya/FeedbackDialog.git'
libraryVersion = '0.0.1-alpha'
developerId = 'shivasurya'
developerName = 's shivasurya'
developerEmail = '[email protected]'
licenseName = 'MIT'
licenseUrl = 'https://github.com/shivasurya/FeedbackDialog/blob/master/LICENSE'
allLicenses = ["MIT"]
}
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'