-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
54 lines (48 loc) · 1.26 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
}
}
apply plugin: 'com.android.library'
ext {
PUBLISH_GROUP_ID = 'com.nihaskalam.android'
PUBLISH_ARTIFACT_ID = 'socket-connections'
PUBLISH_VERSION = '1.0.0'
}
android {
compileSdkVersion 24
buildToolsVersion "24.0.0"
defaultConfig {
minSdkVersion 19
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
allprojects {
repositories {
jcenter()
maven {
url 'http://clojars.org/repo'
}
}
}
dependencies {
compile 'com.android.support:appcompat-v7:24.+'
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile "org.java-websocket:java-websocket:1.3.1"
compile "com.google.code.gson:gson:2.4"
compile "org.slf4j:slf4j-api:1.7.5"
}
// or use the remote copy to keep update with latest changes
apply from: 'https://raw.githubusercontent.com/blundell/release-android-library/master/android-release-aar.gradle'