uni_android_plugin_project
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

3 years ago
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. google()
  5. jcenter()
  6. }
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:4.1.1'
  9. // NOTE: Do not place your application dependencies here; they belong
  10. // in the individual module build.gradle files
  11. }
  12. }
  13. allprojects {
  14. repositories {
  15. google()
  16. jcenter()
  17. flatDir {
  18. dirs 'src/main/jniLibs'
  19. dirs project(':ugckit').file('libs')
  20. }
  21. }
  22. }
  23. task clean(type: Delete) {
  24. delete rootProject.buildDir
  25. }
  26. ext {
  27. compileSdkVersion = 25
  28. buildToolsVersion = "25.0.2"
  29. supportSdkVersion = "25.4.0"
  30. minSdkVersion = 23
  31. targetSdkVersion = 23
  32. versionCode = 1
  33. versionName = "v1.0"
  34. proguard = true
  35. rootPrj = "$projectDir/.."
  36. ndkAbi = 'armeabi-v7a'
  37. noffmpeg = false
  38. noijkplay = false
  39. aekit_version = '1.0.16-cloud'
  40. liteavSdk="com.tencent.liteav:LiteAVSDK_Professional:latest.release"
  41. }