build.gradle 985 B

123456789101112131415161718192021222324252627282930313233343536
  1. apply plugin: 'com.android.library'
  2. apply from: rootProject.projectDir.absolutePath + "/VideoGradle/video.gradle"
  3. android {
  4. compileSdkVersion project.ext.androidCompileSdkVersion
  5. buildToolsVersion project.ext.androidBuildToolsVersion
  6. defaultConfig {
  7. minSdkVersion project.ext.androidMinSdkVersion
  8. targetSdkVersion project.ext.androidTargetSdkVersion
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. consumerProguardFiles 'consumer-rules.pro'
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. compileOptions {
  21. sourceCompatibility 1.8
  22. targetCompatibility 1.8
  23. }
  24. }
  25. dependencies {
  26. implementation fileTree(dir: 'libs', include: ['*.jar'])
  27. implementation project.ext.AppDependencies['appcompat']
  28. }