Advertisement
Guest User

Untitled

a guest
Aug 12th, 2019
164
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.  
  35. **DEPS**}
  36.  
  37. android {
  38.     compileSdkVersion **APIVERSION**
  39.     buildToolsVersion '**BUILDTOOLS**'
  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. }**SPLITS_VERSION_CODE****SOURCE_BUILD_SETUP**
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement