Guest User

Untitled

a guest
Aug 30th, 2017
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 25
  5. buildToolsVersion "25.0.3"
  6. defaultConfig {
  7. multiDexEnabled true
  8. applicationId "com.skyse.someapp"
  9. minSdkVersion 23
  10. targetSdkVersion 25
  11. versionCode 5
  12. versionName "1.0"
  13. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled true
  18. shrinkResources true
  19. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. }
  23.  
  24. dependencies {
  25. compile fileTree(dir: 'libs', include: ['*.jar'])
  26. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  27. exclude group: 'com.android.support', module: 'support-annotations'
  28. })
  29.  
  30. /*compile 'com.android.billingclient:billing:dp-1'*/
  31. compile 'com.android.support:appcompat-v7:25.3.1'
  32. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  33. compile 'com.android.support:design:25.3.1'
  34. compile 'com.facebook.android:audience-network-sdk:4.25.0'
  35. compile 'com.android.support:support-v13:25.3.1'
  36. compile 'com.google.firebase:firebase-crash:11.2.0'
  37. testCompile 'junit:junit:4.12'
  38. }
  39.  
  40.  
  41. apply plugin: 'com.google.gms.google-services'
Add Comment
Please, Sign In to add comment