Skip to content

Instantly share code, notes, and snippets.

@mattbajorek
Last active April 5, 2020 14:18
Show Gist options
  • Save mattbajorek/c053e5fda0543bbf6b5e265e1e6cd818 to your computer and use it in GitHub Desktop.
Save mattbajorek/c053e5fda0543bbf6b5e265e1e6cd818 to your computer and use it in GitHub Desktop.
Dependencies section of build.gradle for Native Calculations Android Library
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
// TODO: Change to local Unity classes jar location
compileOnly files('/Applications/Unity/Hub/Editor/2018.4.19f1/PlaybackEngines/AndroidPlayer/Variations/mono/Release/Classes/classes.jar')
api 'androidx.appcompat:appcompat:1.1.0'
implementation files('libs/gson-2.8.6.jar')
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment