forked from zGrav/xtream-iptv-player
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
executable file
·83 lines (71 loc) · 2.08 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
}
}
apply plugin: 'com.android.application'
repositories {
mavenCentral()
jcenter()
google()
}
android {
compileSdkVersion 26
buildToolsVersion '26.0.2'
defaultConfig {
applicationId 'z.xtreamiptv.player'
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
vectorDrawables.useSupportLibrary = true
}
lintOptions {
abortOnError false
}
buildTypes {
debug {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
//v4
compile 'com.android.support:design:26.0.2'
compile 'com.android.support:support-fragment:26.0.2'
compile 'com.android.support:support-v4:26.0.2'
//v7
compile 'com.android.support:appcompat-v7:26.0.2'
compile 'com.android.support:cardview-v7:26.0.2'
compile 'com.android.support:recyclerview-v7:26.0.2'
compile 'com.android.support:preference-v7:26.0.2'
//http
compile group: 'cz.msebera.android' , name: 'httpclient', version: '4.4.1.1'
//exo
compile 'com.google.android.exoplayer:exoplayer:2.6.0'
// //ijk
// //required, enough for most devices.
// compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.8.4'
//
// //optional
// compile 'tv.danmaku.ijk.media:ijkplayer-armv5:0.8.4'
// compile 'tv.danmaku.ijk.media:ijkplayer-arm64:0.8.4'
// compile 'tv.danmaku.ijk.media:ijkplayer-x86:0.8.4'
// compile 'tv.danmaku.ijk.media:ijkplayer-x86_64:0.8.4'
//
// //ExoPlayer as IMediaPlayer: optional, experimental
// compile 'tv.danmaku.ijk.media:ijkplayer-exo:0.8.4'
//volley
compile 'com.android.volley:volley:1.1.0'
//firebase
compile 'com.google.firebase:firebase-core:11.0.4'
}