build.gradle 470 B

1234567891011121314151617181920212223242526
  1. apply plugin: 'com.android.library'
  2. apply plugin: 'com.github.dcendents.android-maven'
  3. group = 'com.github.pedroSG94'
  4. android {
  5. compileSdkVersion 30
  6. defaultConfig {
  7. minSdkVersion 16
  8. targetSdkVersion 30
  9. versionCode 195
  10. versionName "1.9.5"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. consumerProguardFiles 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. api project(':encoder')
  21. api project(':rtmp')
  22. api project(':rtsp')
  23. }