build.gradle 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. compileSdk 33
  6. signingConfigs {
  7. release {
  8. storeFile file('proxydroid.jks')
  9. storePassword 'RBQteCVd'
  10. keyAlias 'key0'
  11. keyPassword 'RBQteCVd'
  12. }
  13. }
  14. defaultConfig {
  15. applicationId "io.github.jianboy.proxydroid"
  16. minSdk 21
  17. targetSdk 32
  18. versionCode 10001
  19. versionName "1.0.1"
  20. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  21. }
  22. buildTypes {
  23. release {
  24. minifyEnabled true
  25. shrinkResources true
  26. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  27. }
  28. }
  29. compileOptions {
  30. sourceCompatibility JavaVersion.VERSION_11
  31. targetCompatibility JavaVersion.VERSION_11
  32. }
  33. }
  34. dependencies {
  35. implementation 'androidx.appcompat:appcompat:1.6.1'
  36. implementation 'com.google.android.material:material:1.9.0'
  37. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  38. testImplementation 'junit:junit:4.13.2'
  39. androidTestImplementation 'androidx.test.ext:junit:1.1.5'
  40. androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
  41. }