Advertisement
JoshHeng

Untitled

Dec 17th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 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. **DEPS**}
  34.  
  35. android {
  36. compileSdkVersion **APIVERSION**
  37. buildToolsVersion '**BUILDTOOLS**'
  38.  
  39. defaultConfig {
  40. multiDexEnabled true
  41. minSdkVersion **MINSDKVERSION**
  42. targetSdkVersion **TARGETSDKVERSION**
  43. applicationId '**APPLICATIONID**'
  44. ndk {
  45. abiFilters **ABIFILTERS**
  46. }
  47. versionCode **VERSIONCODE**
  48. versionName '**VERSIONNAME**'
  49. }
  50.  
  51. lintOptions {
  52. abortOnError false
  53. }
  54.  
  55. aaptOptions {
  56. noCompress '.unity3d', '.ress', '.resource', '.obb'**STREAMING_ASSETS**
  57. }**SIGN**
  58.  
  59. buildTypes {
  60. debug {
  61. minifyEnabled **MINIFY_DEBUG**
  62. useProguard **PROGUARD_DEBUG**
  63. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD**
  64. jniDebuggable true
  65. }
  66. release {
  67. minifyEnabled **MINIFY_RELEASE**
  68. useProguard **PROGUARD_RELEASE**
  69. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD****SIGNCONFIG**
  70. }
  71. }**PACKAGING_OPTIONS****SPLITS**
  72. **BUILT_APK_LOCATION**
  73. }**SPLITS_VERSION_CODE****SOURCE_BUILD_SETUP**
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement