build.gradle 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 30
  4. buildToolsVersion "30.0.2"
  5. defaultConfig {
  6. applicationId "com.example.informationkanban"
  7. minSdkVersion 15
  8. targetSdkVersion 30
  9. versionCode 1
  10. versionName "1.6"
  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. sourceSets {
  20. main {
  21. jniLibs.srcDirs = ['libs']
  22. }
  23. }
  24. lintOptions {
  25. checkReleaseBuilds false
  26. abortOnError false
  27. }
  28. }
  29. dependencies {
  30. implementation fileTree(dir: 'libs', include: ['*.jar'])
  31. implementation 'androidx.appcompat:appcompat:1.0.2'
  32. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  33. testImplementation 'junit:junit:4.12'
  34. androidTestImplementation 'androidx.test:runner:1.1.1'
  35. androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
  36. //implementation 'com.blankj:utilcode:1.9.8'
  37. implementation files('libs/xwalk_core_library.jar')
  38. implementation files('libs/com_blankj_utilcode.jar')
  39. }