Skip to content

Instantly share code, notes, and snippets.

@digitallysavvy
Created March 15, 2019 00:38
Show Gist options
  • Save digitallysavvy/dfa6805f71eb081873fbe1db914f4fc7 to your computer and use it in GitHub Desktop.
Save digitallysavvy/dfa6805f71eb081873fbe1db914f4fc7 to your computer and use it in GitHub Desktop.
Tanks!!! - EveryPlay updated build.gradle
// UNITY EXPORT COMPATIBLE
apply plugin: 'com.android.library'
repositories {
mavenCentral()
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}
android {
compileSdkVersion 23
buildToolsVersion "25.0.3"
defaultPublishConfig "release"
defaultConfig {
versionCode 1600
versionName "1.6.0"
minSdkVersion 16
}
buildTypes {
debug {
debuggable true
minifyEnabled false
}
release {
debuggable false
minifyEnabled true
proguardFile getDefaultProguardFile('proguard-android.txt')
proguardFile 'proguard-project.txt'
}
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
jniLibs.srcDirs = ['libs']
}
}
lintOptions {
abortOnError false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment