build.gradle 737 B

12345678910111213141516171819202122232425262728
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 26
  4. buildToolsVersion "26.0.1"
  5. defaultConfig {
  6. minSdkVersion 19
  7. targetSdkVersion 22
  8. versionCode 1
  9. versionName "1.0"
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. }
  18. dependencies {
  19. compile 'com.android.support:appcompat-v7:23.0.1'
  20. compile 'com.facebook.react:react-native:+'
  21. compile 'com.madgag.spongycastle:core:1.58.0.0'
  22. compile 'com.madgag.spongycastle:prov:1.54.0.0'
  23. compile 'com.madgag.spongycastle:pkix:1.54.0.0'
  24. compile 'com.madgag.spongycastle:pg:1.54.0.0'
  25. }