// GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN 
 | 
buildscript { 
 | 
    repositories { 
 | 
        jcenter() 
 | 
    } 
 | 
  
 | 
    dependencies { 
 | 
        classpath 'com.android.tools.build:gradle:2.1.0' 
 | 
    } 
 | 
} 
 | 
  
 | 
allprojects { 
 | 
   repositories { 
 | 
      flatDir { 
 | 
        dirs 'libs' 
 | 
      } 
 | 
   } 
 | 
} 
 | 
  
 | 
apply plugin: 'com.android.application' 
 | 
  
 | 
dependencies { 
 | 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
 | 
**DEPS**} 
 | 
  
 | 
android { 
 | 
    compileSdkVersion **APIVERSION** 
 | 
    buildToolsVersion '**BUILDTOOLS**' 
 | 
  
 | 
    defaultConfig { 
 | 
        targetSdkVersion **TARGETSDKVERSION** 
 | 
        applicationId '**APPLICATIONID**' 
 | 
        ndk { 
 | 
            abiFilters **ABIFILTERS** 
 | 
        } 
 | 
    } 
 | 
  
 | 
    lintOptions { 
 | 
        abortOnError false 
 | 
    } 
 | 
  
 | 
    aaptOptions { 
 | 
        noCompress '.unity3d', '.ress', '.resource', '.obb' 
 | 
    } 
 | 
  
 | 
**SIGN** 
 | 
    buildTypes { 
 | 
        debug { 
 | 
            jniDebuggable true 
 | 
        } 
 | 
        release { 
 | 
            // Set minifyEnabled to true if you want to run ProGuard on your project 
 | 
            minifyEnabled false 
 | 
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt' 
 | 
            **SIGNCONFIG** 
 | 
        } 
 | 
    } 
 | 
  
 | 
} 
 |