forked from xl-player-developers/xl_player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
103 lines (90 loc) · 2.5 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
rootProject.copy {
from "CMakeLists.txt"
into "xl-player-armv7a"
}
rootProject.copy {
from "CMakeLists.txt"
into "xl-player-armv7a-21"
}
rootProject.copy {
from "CMakeLists.txt"
into "xl-player-armeabi"
}
rootProject.copy {
from "CMakeLists.txt"
into "xl-player-armeabi-21"
}
rootProject.copy {
from "CMakeLists.txt"
into "xl-player-arm64v8a"
}
rootProject.copy {
from "CMakeLists.txt"
into "xl-player-arm64v8a-21"
}
rootProject.copy {
from "cpp"
into "xl-player-armv7a/src/main/cpp"
}
rootProject.copy {
from "cpp"
into "xl-player-armv7a-21/src/main/cpp"
}
rootProject.copy {
from "cpp"
into "xl-player-armeabi/src/main/cpp"
}
rootProject.copy {
from "cpp"
into "xl-player-armeabi-21/src/main/cpp"
}
rootProject.copy {
from "cpp"
into "xl-player-arm64v8a/src/main/cpp"
}
rootProject.copy {
from "cpp"
into "xl-player-arm64v8a-21/src/main/cpp"
}
repositories {
jcenter()
maven { url 'https://maven.google.com' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-alpha9'
classpath 'com.novoda:bintray-release:0.5.0'
}
}
allprojects {
repositories {
jcenter()
maven { url 'https://maven.google.com' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
delete "xl-player-armv7a/src/main/cpp"
delete "xl-player-armv7a-21/src/main/cpp"
delete "xl-player-arm64v8a/src/main/cpp"
delete "xl-player-arm64v8a-21/src/main/cpp"
delete "xl-player-armeabi/src/main/cpp"
delete "xl-player-armeabi-21/src/main/cpp"
delete "xl-player-armv7a/CMakeLists.txt"
delete "xl-player-armv7a-21/CMakeLists.txt"
delete "xl-player-armeabi/CMakeLists.txt"
delete "xl-player-armeabi-21/CMakeLists.txt"
delete "xl-player-arm64v8a/CMakeLists.txt"
delete "xl-player-arm64v8a-21/CMakeLists.txt"
}
ext {
userOrg = 'xl-player-developers'
groupId = 'com.xl.media.library'
publishVersion = '0.0.6'
desc = 'A high performance Android media player, base on ffmpeg and MediaCodec, support VR video.'
//
website = 'https://github.com/xl-player-developers/xl_player'
licences = ['LGPL-3.0']
repo = 'xl-player-library'
}