Advertisement
Guest User

Untitled

a guest
Jul 5th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.88 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.         maven {
  8.             url ' https://maven.google.com '
  9.         }
  10.        
  11.     }
  12.  
  13.     dependencies {
  14.         classpath 'com.android.tools.build:gradle:2.3.0'
  15.     }
  16. }
  17.  
  18. allprojects {
  19.     repositories {
  20.         jcenter ()
  21.          google()
  22.         flatDir {
  23.             dirs 'libs'
  24.         }
  25.        
  26.     }
  27. }
  28.  
  29. apply plugin: 'com.android.application'
  30.  
  31. dependencies {
  32.     implementation fileTree(dir: 'libs', include: ['*.jar'])
  33.       implementation 'com.android.support:multidex:1.0.3'
  34. **DEPS**}
  35.  
  36. android {
  37.     compileSdkVersion **APIVERSION**
  38.     buildToolsVersion '**BUILDTOOLS**'
  39.  
  40.     defaultConfig {
  41.         minSdkVersion **MINSDKVERSION**
  42.         targetSdkVersion **TARGETSDKVERSION**
  43.         applicationId '**APPLICATIONID**'
  44.         ndk {
  45.             abiFilters **ABIFILTERS**
  46.         }
  47.         versionCode **VERSIONCODE**
  48.         versionName '**VERSIONNAME**'
  49.         multiDexEnabled true
  50.     }
  51.  
  52.     lintOptions {
  53.         abortOnError false
  54.     }
  55.  
  56.     aaptOptions {
  57.         noCompress '.unity3d', '.ress', '.resource', '.obb'**STREAMING_ASSETS**
  58.     }**SIGN**
  59.  
  60.     buildTypes {
  61.         debug {
  62.             minifyEnabled **MINIFY_DEBUG**
  63.             useProguard **PROGUARD_DEBUG**
  64.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD**
  65.             jniDebuggable true
  66.         }
  67.         release {
  68.             minifyEnabled **MINIFY_RELEASE**
  69.             useProguard **PROGUARD_RELEASE**
  70.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD****SIGNCONFIG**
  71.         }
  72.     }**PACKAGING_OPTIONS****SPLITS**
  73. **BUILT_APK_LOCATION**
  74. }**SPLITS_VERSION_CODE****SOURCE_BUILD_SETUP**
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement