Advertisement
JoshHeng

Untitled

Dec 24th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 KB | None | 0 0
  1. buildscript {
  2. repositories {
  3. google()
  4. jcenter()
  5. mavenCentral()
  6. maven {
  7. url "https://jitpack.io"}
  8. }
  9.  
  10. dependencies {
  11. classpath 'com.android.tools.build:gradle:3.2.1'
  12.  
  13. }
  14. }
  15.  
  16. allprojects {
  17. repositories {
  18. google()
  19. flatDir {
  20. dirs 'libs'
  21. }
  22. jcenter()
  23. maven {
  24. url "https://jitpack.io"}
  25. }
  26. }
  27.  
  28. apply plugin: 'com.android.application'
  29.  
  30. dependencies {
  31. implementation fileTree(dir: 'libs', include: ['*.jar'])
  32. implementation 'com.android.support:multidex:1.0.3'
  33. implementation 'com.squareup.picasso:picasso:2.5.2' //for Inmobi
  34. implementation name: 'adcolony-3.3.4', ext: 'aar'
  35. implementation name: 'mobvista-9.0.0-alphab', ext: 'aar'
  36. implementation name: 'mobvista-9.0.0-common', ext: 'aar'
  37. implementation name: 'mobvista-9.0.0-interstitial', ext: 'aar'
  38. implementation name: 'mobvista-9.0.0-interstitialvideo', ext: 'aar'
  39. implementation name: 'mobvista-9.0.0-mtgdownloads', ext: 'aar'
  40. implementation name: 'mobvista-9.0.0-mtgjscommon', ext: 'aar'
  41. implementation name: 'mobvista-9.0.0-mtgnative', ext: 'aar'
  42. implementation name: 'mobvista-9.0.0-nativeex', ext: 'aar'
  43. implementation name: 'mobvista-9.0.0-playercommon', ext: 'aar'
  44. implementation name: 'mobvista-9.0.0-reward', ext: 'aar'
  45. implementation name: 'mobvista-9.0.0-videocommon', ext: 'aar'
  46. implementation name: 'mobvista-9.0.0-videojs', ext: 'aar'
  47. implementation name: 'ogury-3.0.13', ext: 'aar'
  48. **DEPS**}
  49.  
  50. android {
  51. compileSdkVersion **APIVERSION**
  52. buildToolsVersion '**BUILDTOOLS**'
  53.  
  54. defaultConfig {
  55. multiDexEnabled true
  56. minSdkVersion **MINSDKVERSION**
  57. targetSdkVersion **TARGETSDKVERSION**
  58. applicationId '**APPLICATIONID**'
  59. ndk {
  60. abiFilters **ABIFILTERS**
  61. }
  62. versionCode **VERSIONCODE**
  63. versionName '**VERSIONNAME**'
  64. }
  65.  
  66. lintOptions {
  67. abortOnError false
  68. }
  69.  
  70. aaptOptions {
  71. noCompress '.unity3d', '.ress', '.resource', '.obb'**STREAMING_ASSETS**
  72. }**SIGN**
  73.  
  74. buildTypes {
  75. debug {
  76. minifyEnabled **MINIFY_DEBUG**
  77. useProguard **PROGUARD_DEBUG**
  78. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD**
  79. jniDebuggable true
  80. }
  81. release {
  82. minifyEnabled **MINIFY_RELEASE**
  83. useProguard **PROGUARD_RELEASE**
  84. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD****SIGNCONFIG**
  85. }
  86. }**PACKAGING_OPTIONS****SPLITS**
  87. **BUILT_APK_LOCATION**
  88. }**SPLITS_VERSION_CODE****SOURCE_BUILD_SETUP**
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement