build.gradle 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. namespace 'com.vinno.sdk.demo'
  6. compileSdkVersion 33
  7. defaultConfig {
  8. applicationId "com.vinno.sdk.demo"
  9. minSdkVersion 26
  10. targetSdkVersion 33
  11. versionCode 1
  12. versionName "1.0"
  13. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  19. debuggable true
  20. }
  21. }
  22. compileOptions {
  23. sourceCompatibility JavaVersion.VERSION_1_8
  24. targetCompatibility JavaVersion.VERSION_1_8
  25. }
  26. }
  27. dependencies {
  28. implementation fileTree(dir: 'libs', include: ['*.jar'])
  29. // implementation fileTree(dir: 'libs', include: ['*.aar'])
  30. implementation 'androidx.appcompat:appcompat:1.4.1'
  31. implementation 'com.google.android.material:material:1.6.0'
  32. testImplementation 'junit:junit:4.13.2'
  33. androidTestImplementation 'androidx.test.ext:junit:1.1.5'
  34. androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
  35. implementation 'androidx.multidex:multidex:2.0.1'
  36. //permissions
  37. implementation 'com.github.getActivity:XXPermissions:13.5'
  38. implementation 'com.github.kongzue.DialogX:DialogX:0.0.41'
  39. implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
  40. api project(':app')
  41. }