Advertisement
Guest User

Untitled

a guest
Jul 17th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 27
  5. defaultConfig {
  6. applicationId "test.appodeal.com.myapplication"
  7. minSdkVersion 19
  8. targetSdkVersion 27
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. defaultConfig {
  20. multiDexEnabled true
  21. }
  22.  
  23. }
  24.  
  25. repositories {
  26. flatDir {
  27. dirs 'libs'
  28. }
  29. }
  30.  
  31. dependencies {
  32. implementation fileTree(dir: 'libs', include: ['*.jar'])
  33. //noinspection GradleCompatible
  34. implementation 'com.android.support:appcompat-v7:27.1.1'
  35. implementation 'com.android.support.constraint:constraint-layout:1.1.2'
  36. testImplementation 'junit:junit:4.12'
  37. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  38. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  39.  
  40. compile 'com.squareup.picasso:picasso:2.5.2' //for Inmobi
  41. compile name: 'adcolony-sdk-3.2.1', ext: 'aar'
  42. compile name: 'mmedia-6.4.0', ext: 'aar'
  43. compile name: 'mobvista_alphab', ext: 'aar'
  44. compile name: 'mobvista_appwall', ext: 'aar'
  45. compile name: 'mobvista_appwallext', ext: 'aar'
  46. compile name: 'mobvista_common', ext: 'aar'
  47. compile name: 'mobvista_interstitial', ext: 'aar'
  48. compile name: 'mobvista_mvdownloads', ext: 'aar'
  49. compile name: 'mobvista_mvjscommon', ext: 'aar'
  50. compile name: 'mobvista_mvnative', ext: 'aar'
  51. compile name: 'mobvista_nativeex', ext: 'aar'
  52. compile name: 'mobvista_offerwall', ext: 'aar'
  53. compile name: 'mobvista_playercommon', ext: 'aar'
  54. compile name: 'mobvista_reward', ext: 'aar'
  55. compile name: 'mobvista_videocommon', ext: 'aar'
  56. compile name: 'mobvista_videofeeds', ext: 'aar'
  57.  
  58. compile 'com.google.android.gms:play-services-ads:10.2.1'
  59. compile 'com.google.android.gms:play-services-location:10.2.1'
  60.  
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement