1
0

build.gradle 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. apply plugin: 'com.android.application'
  2. android {
  3. signingConfigs {
  4. release {
  5. keyAlias 'key0'
  6. keyPassword 'android'
  7. storeFile file('Z:/keys/androidKey.gpg')
  8. storePassword 'android'
  9. }
  10. }
  11. compileSdkVersion 28
  12. defaultConfig {
  13. applicationId "info.knacki.pass"
  14. minSdkVersion 15
  15. targetSdkVersion 28
  16. versionCode 1
  17. versionName "1.0.1"
  18. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  19. vectorDrawables.useSupportLibrary = true
  20. signingConfig signingConfigs.release
  21. }
  22. buildTypes {
  23. release {
  24. minifyEnabled false
  25. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  26. signingConfig signingConfigs.release
  27. }
  28. debug {
  29. applicationIdSuffix ".debug"
  30. }
  31. }
  32. buildToolsVersion '28.0.3'
  33. compileOptions {
  34. sourceCompatibility JavaVersion.VERSION_1_8
  35. targetCompatibility JavaVersion.VERSION_1_8
  36. }
  37. productFlavors {
  38. }
  39. sourceSets {
  40. main { res.srcDirs = ['src/main/res'] }
  41. release { res.srcDirs = ['src/main/res_release'] }
  42. debug { res.srcDirs = ['src/main/res_debug'] }
  43. }
  44. }
  45. dependencies {
  46. implementation fileTree(include: ['*.jar'], dir: 'libs')
  47. implementation 'com.android.support:appcompat-v7:28.0.0'
  48. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  49. implementation 'com.android.support:support-v4:28.0.0'
  50. implementation 'com.android.support:support-vector-drawable:28.0.0'
  51. implementation 'com.android.support:design:28.0.0'
  52. testImplementation 'junit:junit:4.12'
  53. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  54. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  55. implementation 'commons-http:commons-http:1.1'
  56. implementation 'org.bouncycastle:bcpg-jdk15on:1.60'
  57. implementation 'org.bouncycastle:bcprov-jdk15on:1.60'
  58. implementation 'org.bouncycastle:bcprov-jdk15on:1.60'
  59. implementation 'com.jcraft:jsch:0.1.55'
  60. }