build.gradle 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. }
  24. dependencies {
  25. implementation fileTree(include: ['*.jar'], dir: 'libs')
  26. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  27. exclude group: 'com.android.support', module: 'support-annotations'
  28. })
  29. testImplementation 'junit:junit:4.12'
  30. implementation 'androidx.appcompat:appcompat:1.1.0'
  31. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  32. api("io.github.goallpay:allpaysdk:+")
  33. }