build.gradle 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. defaultConfig {
  6. compileSdk 35
  7. applicationId "com.norman.webviewup.demo"
  8. minSdkVersion 21
  9. targetSdkVersion 35
  10. versionCode 1
  11. versionName "1.0"
  12. }
  13. aaptOptions {
  14. noCompress "apk"
  15. }
  16. signingConfigs {
  17. config {
  18. storeFile file("webup.keystore")
  19. storePassword "12345678"
  20. keyAlias "webup"
  21. keyPassword "12345678"
  22. }
  23. }
  24. buildTypes {
  25. release {
  26. minifyEnabled true
  27. shrinkResources true
  28. debuggable false
  29. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  30. signingConfig signingConfigs.config
  31. }
  32. debug {
  33. debuggable true
  34. minifyEnabled false
  35. signingConfig signingConfigs.config
  36. }
  37. }
  38. sourceSets {
  39. main {
  40. jniLibs.srcDirs = ["libs"]
  41. }
  42. }
  43. namespace 'com.norman.webviewup.demo'
  44. }
  45. dependencies {
  46. implementation 'androidx.appcompat:appcompat:1.3.0'
  47. // implementation 'com.norman.webviewup:core:0.1.1-alpha.01'
  48. // implementation 'com.norman.webviewup:download-source:0.1.0'
  49. implementation project(":core")
  50. implementation project(':download-source')
  51. }