2014-11-14 00:17:23 +08:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
2022-09-12 18:02:20 +08:00
|
|
|
ext.android_plugin_version = '7.2.1'
|
|
|
|
ext.kotlin_version = '1.7.10'
|
2022-02-16 16:47:11 +08:00
|
|
|
ext.kotlinx_version = '1.6.0'
|
2014-11-14 00:17:23 +08:00
|
|
|
repositories {
|
2016-03-30 00:21:58 +08:00
|
|
|
flatDir dirs: "gradle/plugins"
|
2017-11-06 23:21:42 +08:00
|
|
|
google()
|
2021-03-23 17:05:09 +08:00
|
|
|
mavenCentral()
|
2021-04-30 20:32:31 +08:00
|
|
|
mavenLocal()
|
2021-03-23 17:05:09 +08:00
|
|
|
}
|
2014-11-14 00:17:23 +08:00
|
|
|
dependencies {
|
2017-11-06 23:55:55 +08:00
|
|
|
classpath "com.android.tools.build:gradle:$android_plugin_version"
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2018-11-21 23:33:22 +08:00
|
|
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
|
2021-03-23 17:05:09 +08:00
|
|
|
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.14.2'
|
2014-11-14 00:17:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-16 23:22:15 +08:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
2017-11-06 23:21:42 +08:00
|
|
|
google()
|
2021-07-20 12:32:01 +08:00
|
|
|
mavenCentral()
|
2016-12-16 23:22:15 +08:00
|
|
|
}
|
2020-04-08 00:30:04 +08:00
|
|
|
tasks.withType(Javadoc) {
|
|
|
|
// Ignores errors from mavenAndroidJavadocs task
|
|
|
|
// (reference: github.com/novoda/bintray-release/issues/71#issuecomment-164324255)
|
|
|
|
options.addStringOption('Xdoclint:none', '-quiet')
|
|
|
|
options.addStringOption('encoding', 'UTF-8')
|
|
|
|
}
|
2022-04-13 13:59:03 +08:00
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
|
|
|
|
kotlinOptions {
|
|
|
|
freeCompilerArgs += ['-opt-in=kotlin.RequiresOptIn']
|
|
|
|
}
|
|
|
|
}
|
2016-12-16 23:22:15 +08:00
|
|
|
}
|
|
|
|
|
2014-11-20 21:12:46 +08:00
|
|
|
ext {
|
2019-12-26 19:21:29 +08:00
|
|
|
appId = "org.videolan.vlc"
|
2022-09-19 18:37:17 +08:00
|
|
|
versionName = '3.5.2'
|
|
|
|
versionCode = 3050200
|
2022-09-13 17:31:46 +08:00
|
|
|
libvlcVersion = '3.5.2-eap1'
|
|
|
|
medialibraryVersion = '0.13.4-eap1'
|
2018-10-18 22:00:22 +08:00
|
|
|
minSdkVersion = 17
|
2022-08-04 16:04:33 +08:00
|
|
|
targetSdkVersion = 32
|
2022-08-04 14:39:48 +08:00
|
|
|
compileSdkVersion = 33
|
2019-07-25 23:09:22 +08:00
|
|
|
androidxLegacyVersion = '1.0.0'
|
2022-02-16 16:43:29 +08:00
|
|
|
androidxCoreVersion = '1.7.0'
|
|
|
|
appCompatVersion = '1.4.1'
|
|
|
|
lifecycleVersion = '2.4.0'
|
2020-04-20 21:59:34 +08:00
|
|
|
androidxPreferencesVersion = '1.1.1'
|
2019-09-10 23:42:23 +08:00
|
|
|
androidxVersion = '1.1.0'
|
2022-02-16 16:43:29 +08:00
|
|
|
androidxActivityVersion = '1.4.0'
|
|
|
|
androidxFragmentVersion = '1.4.1'
|
|
|
|
androidxAnnotationVersion = '1.3.0'
|
|
|
|
androidxRecyclerviewVersion = '1.2.1'
|
2019-12-26 19:21:29 +08:00
|
|
|
androidxMediaVersion = '1.1.0'
|
2019-07-25 23:09:22 +08:00
|
|
|
androidxLeanbackVersion = '1.0.0'
|
2022-02-16 16:43:29 +08:00
|
|
|
androidxMaterialVersion = '1.5.0'
|
|
|
|
constraintLayoutVersion = '2.1.3'
|
2021-01-05 04:29:54 +08:00
|
|
|
viewPager2Version = "1.0.0"
|
2019-09-10 23:42:23 +08:00
|
|
|
archVersion = '2.1.0'
|
2022-02-16 16:43:29 +08:00
|
|
|
roomVersion = '2.4.1'
|
|
|
|
pagingVersion = '3.1.0'
|
|
|
|
junitVersion = '4.13.2'
|
2022-04-08 14:15:04 +08:00
|
|
|
junitExtVersion = '1.1.2'
|
2020-09-30 20:04:30 +08:00
|
|
|
mockito = '2.25.0'
|
2021-04-27 03:51:16 +08:00
|
|
|
//Retrofit 2.7 drops Android 5 support
|
2022-02-16 16:43:29 +08:00
|
|
|
retrofit = '2.7.1'
|
2019-10-18 16:05:28 +08:00
|
|
|
moshi = '1.8.0'
|
2019-03-22 18:52:35 +08:00
|
|
|
powerMock = '2.0.2'
|
2022-02-16 16:43:29 +08:00
|
|
|
espressoVersion = '3.4.0'
|
2021-08-03 21:23:46 +08:00
|
|
|
livedataTest = '1.2.0'
|
2019-12-06 22:37:35 +08:00
|
|
|
robolectric = '4.3.1'
|
2019-05-31 14:36:21 +08:00
|
|
|
mockk = '1.9.3'
|
2022-04-08 14:15:04 +08:00
|
|
|
testRunner = '1.4.0'
|
2020-09-30 20:04:30 +08:00
|
|
|
orchestrator = '1.1.0'
|
2022-02-16 16:43:29 +08:00
|
|
|
testCore = '1.4.0'
|
2017-04-20 15:50:50 +08:00
|
|
|
// versionCode scheme is T M NN RR AA
|
|
|
|
// T: Target/Flavour (1 for Android, 2 for Chrome?)
|
|
|
|
// M: Major version from 0 to 9
|
|
|
|
// NN: Minor version from 00 to 99
|
|
|
|
// RR: Micro/Revision version from 00 to 99
|
|
|
|
// AA: ABI from 0 to 99
|
|
|
|
// 0 is dev
|
|
|
|
// 1 was ARMv5 (deprecated)
|
|
|
|
// 2 was ARMv6-nofpu (deprecated)
|
|
|
|
// 3 was ARMv6-fpu (deprecated)
|
|
|
|
// 4 is ARMv7-A
|
|
|
|
// 5 is x86
|
|
|
|
// 6 is MIPS
|
|
|
|
// 7 is ARMv8
|
|
|
|
// 8 is x86_64
|
|
|
|
// 9 is MIPS64
|
2015-02-08 06:53:30 +08:00
|
|
|
}
|