build.gradle 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 29
  4. buildToolsVersion "29.0.3"
  5. defaultConfig {
  6. applicationId 'com.citycloud.androidweb'
  7. minSdkVersion 29
  8. targetSdkVersion 29
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. dependencies {
  21. implementation fileTree(dir: 'libs', include: ['*.jar'])
  22. implementation 'androidx.appcompat:appcompat:1.2.0'
  23. implementation 'androidx.constraintlayout:constraintlayout:2.0.0'
  24. testImplementation 'junit:junit:4.12'
  25. androidTestImplementation 'androidx.test.ext:junit:1.1.1'
  26. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  27. implementation 'com.just.agentweb:agentweb:4.1.4' // (必选)
  28. implementation 'com.just.agentweb:filechooser:4.1.4'// (可选)
  29. //implementation 'com.download.library:Downloader:4.1.4'// (可选)
  30. implementation 'com.lcodecorex:tkrefreshlayout:1.0.7'
  31. implementation 'com.coolindicator.sdk:coolindicator:1.0.0-beta'
  32. //noinspection GradleCompatible
  33. compile 'com.android.support:support-v4:latestVersion'
  34. compile 'cn.bingoogolapple:bga-banner:2.2.7@aar'
  35. implementation 'com.facebook.fresco:fresco:0.12.0'
  36. implementation 'androidx.cardview:cardview:1.0.0'
  37. }