-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle
46 lines (39 loc) · 1.23 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
buildscript {
repositories {
google()
mavenCentral()
jcenter()
maven { url 'https://muxinc.jfrog.io/artifactory/default-maven-release-local' }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.2'
classpath 'com.mux.gradle.android:mux-android-distribution:1.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.24"
}
}
allprojects {
apply plugin: "com.jfrog.artifactory"
apply plugin: 'maven-publish'
repositories {
google()
jcenter()
maven { url "https://maven.theoplayer.com/releases" }
maven { url 'https://muxinc.jfrog.io/artifactory/default-maven-release-local' }
maven { url 'https://muxinc.jfrog.io/artifactory/default-maven-local' }
mavenLocal()
}
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
project.ext {
minSdkVersion=16
compileSdkVersion=34
targetSdkVersion=34
releaseWebsite = 'https://github.com/muxinc/mux-stats-sdk-theoplayer-android'
theoplayerVersion = "8.9.0"
muxCoreVersion = "8.2.0"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}