-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (32 loc) · 771 Bytes
/
build.gradle
File metadata and controls
37 lines (32 loc) · 771 Bytes
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
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "20.0.0"
defaultConfig {
applicationId "me.kevingleason.androidrtc"
minSdkVersion 17
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
flatDir {
dirs 'libs'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.pubnub:pubnub-android:3.7.4'
compile 'io.pristine:libjingle:9694@aar'
compile project(':pnwebrtc')
}
android {
useLibrary 'org.apache.http.legacy'
}