达翔pda
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.3 KiB

4 years ago
4 years ago
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 28
  4. buildToolsVersion "30.0.3"
  5. defaultConfig {
  6. applicationId "com.icssoft.icspda"
  7. minSdkVersion 18
  8. targetSdkVersion 28
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. lintOptions {
  16. checkReleaseBuilds false
  17. abortOnError false
  18. }
  19. minifyEnabled false
  20. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  21. }
  22. }
  23. android.applicationVariants.all {
  24. variant ->
  25. variant.outputs.all {
  26. outputFileName = "ICSPDA_v${defaultConfig.versionName}.apk"
  27. }
  28. }
  29. }
  30. dependencies {
  31. implementation fileTree(dir: 'libs', include: ['*.jar'])
  32. implementation 'androidx.appcompat:appcompat:1.0.2'
  33. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  34. testImplementation 'junit:junit:4.12'
  35. androidTestImplementation 'androidx.test.ext:junit:1.1.0'
  36. androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
  37. implementation 'com.google.code.gson:gson:2.8.6'
  38. implementation 'com.github.huangyanbin:SmartTable:2.2.0'
  39. }