Skip to content

Instantly share code, notes, and snippets.

@ObjSal
Created August 21, 2017 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ObjSal/a3e71d6321942df34965d360d5777e67 to your computer and use it in GitHub Desktop.
Save ObjSal/a3e71d6321942df34965d360d5777e67 to your computer and use it in GitHub Desktop.
Tango's GoogleUnityWrapper
apply plugin: 'com.android.library'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
}
}
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
minSdkVersion 17
targetSdkVersion 25
}
lintOptions {
abortOnError false
}
}
repositories {
flatDir {
dirs 'aar'
}
}
dependencies {
provided files('unity-classes.jar')
compile (name: 'tango-cloud-lib', ext: 'aar')
compile (name: 'tango-ux-support-library', ext: 'aar')
compile (name: 'tango_java_lib', ext: 'aar')
compile (name: 'tango_unity_helper', ext: 'aar')
compile (name: 'unity_ux_helper', ext: 'aar')
compile 'com.android.support:support-v4:25.3.1'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment