Advertisement
Guest User

Untitled

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