build.gradle 826 B

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