build.gradle 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 25
  4. buildToolsVersion "26.0.0"
  5. defaultConfig {
  6. applicationId "com.vtpayment.plugin"
  7. minSdkVersion 16
  8. targetSdkVersion 25
  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. dependencies {
  21. compile fileTree(include: ['*.jar'], dir: 'libs')
  22. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  23. exclude group: 'com.android.support', module: 'support-annotations'
  24. })
  25. compile 'com.android.support:appcompat-v7:25.3.1'
  26. compile 'com.android.support.constraint:constraint-layout:1.0.0-beta1'
  27. testCompile 'junit:junit:4.12'
  28. compile(name: 'allpaysdk', ext: 'aar')
  29. compile(name: 'alipaySdk', ext: 'aar')
  30. compile 'com.tencent.mm.opensdk:wechat-sdk-android-without-mta:+'
  31. }
  32. repositories {
  33. flatDir {
  34. dirs 'libs'
  35. }
  36. }