build.gradle 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 false
  25. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  26. }
  27. }
  28. compileOptions {
  29. sourceCompatibility JavaVersion.VERSION_11
  30. targetCompatibility JavaVersion.VERSION_11
  31. }
  32. }
  33. dependencies {
  34. implementation 'androidx.appcompat:appcompat:1.6.1'
  35. implementation 'com.google.android.material:material:1.9.0'
  36. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  37. testImplementation 'junit:junit:4.13.2'
  38. androidTestImplementation 'androidx.test.ext:junit:1.1.5'
  39. androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
  40. }