build.gradle 541 B

12345678910111213141516171819202122232425
  1. apply plugin: 'com.android.library'
  2. apply plugin: 'com.github.dcendents.android-maven'
  3. group = 'com.github.pedroSG94'
  4. android {
  5. compileSdkVersion 27
  6. buildToolsVersion "27.0.3"
  7. defaultConfig {
  8. minSdkVersion 9
  9. targetSdkVersion 27
  10. versionCode 1
  11. versionName "1.0"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. dependencies {
  21. compile project(':libvlc')
  22. }