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.
48 lines
1.1 KiB
48 lines
1.1 KiB
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:4.1.1'
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
flatDir {
|
|
dirs 'src/main/jniLibs'
|
|
dirs project(':ugckit').file('libs')
|
|
}
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|
|
ext {
|
|
compileSdkVersion = 25
|
|
buildToolsVersion = "25.0.2"
|
|
supportSdkVersion = "25.4.0"
|
|
minSdkVersion = 23
|
|
targetSdkVersion = 23
|
|
versionCode = 1
|
|
versionName = "v1.0"
|
|
proguard = true
|
|
rootPrj = "$projectDir/.."
|
|
ndkAbi = 'armeabi-v7a'
|
|
noffmpeg = false
|
|
noijkplay = false
|
|
aekit_version = '1.0.16-cloud'
|
|
liteavSdk="com.tencent.liteav:LiteAVSDK_Professional:latest.release"
|
|
}
|