-
Notifications
You must be signed in to change notification settings - Fork 353
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (31 loc) · 1.01 KB
/
Copy pathbuild.gradle
File metadata and controls
37 lines (31 loc) · 1.01 KB
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 25
buildToolsVersion '25.0.3'
defaultConfig {
applicationId "com.fy.md360player4android"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'net.alhazmy13.MediaPicker:libary:2.3.2'
compile 'com.tbruyelle.rxpermissions2:rxpermissions:0.9.1@aar'
compile 'io.reactivex.rxjava2:rxjava:2.0.5'
compile 'com.leon:lfilepickerlibrary:1.2.0'
compile 'com.squareup.picasso:picasso:2.5.2'
//required, enough for most devices.
compile 'tv.danmaku.ijk.media:ijkplayer-java:0.6.0'
compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.6.0'
compile project(path: ':vrlib')
}