Last active
April 5, 2020 14:18
-
-
Save mattbajorek/c053e5fda0543bbf6b5e265e1e6cd818 to your computer and use it in GitHub Desktop.
Dependencies section of build.gradle for Native Calculations Android Library
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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