Forked from
VideoLAN / libvlcjni
2 commits behind the upstream repository.
-
Nicolas Pomepuy authored44ca3af8
build.gradle 801 B
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.android_plugin_version = '7.3.1'
repositories {
flatDir dirs: "gradle/plugins"
google()
mavenCentral()
mavenLocal()
}
dependencies {
classpath "com.android.tools.build:gradle:$android_plugin_version"
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.25.2'
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
ext {
libvlcVersion = '4.0.0-eap19'
minSdkVersion = 17
targetSdkVersion = 30
compileSdkVersion = 31
androidxLegacyVersion = '1.0.0'
androidxAnnotationVersion = '1.3.0'
}