Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. buildscript {
  2. repositories {
  3. google()
  4. jcenter()
  5. }
  6.  
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:3.2.1'
  9. classpath 'com.google.gms:google-services:4.2.0'
  10. }
  11. }
  12.  
  13. allprojects {
  14. repositories {
  15. google()
  16. jcenter()
  17. flatDir {
  18. dirs 'libs'
  19. }
  20. }
  21. }
  22.  
  23. apply plugin: 'com.android.application'
  24.  
  25. dependencies {
  26. implementation fileTree(dir: 'libs', include: ['*.jar'])
  27. **DEPS**}
  28.  
  29. android {
  30. compileSdkVersion **APIVERSION**
  31. buildToolsVersion '**BUILDTOOLS**'
  32.  
  33. defaultConfig {
  34. minSdkVersion 16
  35. targetSdkVersion **TARGETSDKVERSION**
  36. applicationId '**APPLICATIONID**'
  37. ndk {
  38. abiFilters **ABIFILTERS**
  39. }
  40. versionCode **VERSIONCODE**
  41. versionName '**VERSIONNAME**'
  42. }
  43.  
  44. lintOptions {
  45. abortOnError false
  46. }
  47.  
  48. aaptOptions {
  49. noCompress '.unity3d', '.ress', '.resource', '.obb'**STREAMING_ASSETS**
  50. }
  51.  
  52. **SIGN**
  53. buildTypes {
  54. debug {
  55. minifyEnabled **MINIFY_DEBUG**
  56. useProguard **PROGUARD_DEBUG**
  57. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD**
  58. jniDebuggable true
  59. }
  60. release {
  61. minifyEnabled **MINIFY_RELEASE**
  62. useProguard **PROGUARD_RELEASE**
  63. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD**
  64. **SIGNCONFIG**
  65. }
  66. }
  67. **PACKAGING_OPTIONS**
  68. bundle {
  69. language {
  70. enableSplit = false
  71. }
  72. density {
  73. enableSplit = false
  74. }
  75. abi {
  76. enableSplit = true
  77. }
  78. }
  79. }
  80.  
  81. apply plugin: 'com.google.gms.google-services'
  82.  
  83. **SOURCE_BUILD_SETUP**
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement