build.gradle 820 B

12345678910111213141516171819202122232425262728
  1. apply plugin: 'com.android.library'
  2. apply from: rootProject.projectDir.absolutePath + "/VideoGradle/video.gradle"
  3. apply plugin: 'com.github.dcendents.android-maven'
  4. android {
  5. compileSdkVersion project.ext.androidCompileSdkVersion
  6. //buildToolsVersion project.ext.androidBuildToolsVersion
  7. defaultConfig {
  8. minSdkVersion project.ext.androidMinSdkVersion
  9. targetSdkVersion project.ext.androidTargetSdkVersion
  10. versionCode 31
  11. versionName "3.0.1"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. dependencies {
  21. implementation fileTree(dir: "libs", include: ["*.jar"])
  22. implementation project.ext.AppDependencies['appcompat']
  23. }