Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
2,240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.03 KB | None | 0 0
  1. // GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
  2. buildscript {
  3.     repositories {
  4.         jcenter()
  5.     }
  6.  
  7.     dependencies {
  8.         classpath 'com.android.tools.build:gradle:2.1.0'
  9.     }
  10. }
  11.  
  12. allprojects {
  13.    repositories {
  14.       flatDir {
  15.         dirs 'libs'
  16.       }
  17.    }
  18. }
  19.  
  20. apply plugin: 'com.android.application'
  21.  
  22. dependencies {
  23.     compile 'com.android.support:multidex:1.0.1'
  24.     compile fileTree(dir: 'libs', include: ['*.jar'])
  25. **DEPS**}
  26.  
  27. android {
  28.     compileSdkVersion **APIVERSION**
  29.     buildToolsVersion '**BUILDTOOLS**'
  30.  
  31.     defaultConfig {
  32.         multiDexEnabled true
  33.         targetSdkVersion **TARGETSDKVERSION**
  34.     }
  35.  
  36.     lintOptions {
  37.         abortOnError false
  38.     }
  39. **SIGN**
  40.     buildTypes {
  41.         debug {
  42.             jniDebuggable true
  43.         }
  44.         release {
  45.             // Set minifyEnabled to true if you want to run ProGuard on your project
  46.             minifyEnabled false
  47.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'
  48.             **SIGNCONFIG**
  49.         }
  50.     }
  51.  
  52.      dexOptions {
  53.         javaMaxHeapSize "4g"
  54.     }
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement