You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
768 B
25 lines
768 B
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("com.android.settings") version '8.13.2'
|
|
}
|
|
|
|
def vlcMajorVersion = hasProperty('forceVlc4') && getProperty('forceVlc4') ? 4 : 3
|
|
|
|
android {
|
|
minSdk = vlcMajorVersion == 3 ? 17 : 21
|
|
targetSdk = 36
|
|
compileSdk = 36 // Dockers: 3.0=36 / 4.0=36
|
|
buildToolsVersion = '36.0.0'
|
|
}
|
|
|
|
include ':libvlcjni:libvlc', ':medialibrary'
|
|
include ':application:tools', ':application:resources', ':application:mediadb', ':application:app', ':application:live-plot-graph', ':application:television', ':application:donations', ':application:remote-access-server'
|
|
include ':application:vlc-android'
|
|
include ':application:moviepedia'
|
|
include ':application:remote-access-client'
|
|
|