Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. apply plugin: 'com.android.library'
  2.  
  3. android {
  4. compileSdkVersion 23
  5. buildToolsVersion "23.0.1"
  6.  
  7. defaultConfig {
  8. minSdkVersion 16
  9. targetSdkVersion 22
  10. versionCode 1
  11. versionName "1.0"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false // Set this to true to enable Proguard
  16. proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
  17. }
  18. }
  19. }
  20.  
  21. repositories {
  22. mavenCentral()
  23. }
  24.  
  25. dependencies {
  26. compile 'com.facebook.react:react-native:0.18.+'
  27. compile 'com.paypal.sdk:paypal-android-sdk:2.13.3'
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement