build.gradle 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 29
  4. buildToolsVersion "29.0.0"
  5. defaultConfig {
  6. applicationId "com.vtpayment.plugin"
  7. minSdkVersion 19
  8. targetSdkVersion 29
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. repositories {
  21. google()
  22. mavenCentral()
  23. flatDir {
  24. dirs 'libs'
  25. }
  26. }
  27. dependencies {
  28. implementation fileTree(include: ['*.jar'], dir: 'libs')
  29. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  30. exclude group: 'com.android.support', module: 'support-annotations'
  31. })
  32. testImplementation 'junit:junit:4.12'
  33. implementation 'androidx.appcompat:appcompat:1.1.0'
  34. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  35. api("io.github.goallpay:allpaysdk:5.2.+")
  36. }