Last active
February 21, 2017 01:58
-
-
Save daj/9d7ab620cf2d1be540fc4015550b9ca8 to your computer and use it in GitHub Desktop.
WORKSPACE configuration for building TensorFlow Android demo in a Docker container
This file contains 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
# My example WORKSPACE configuration, based on following the instructions in the TensorFlow README: | |
# https://github.com/tensorflow/tensorflow/blob/master/tensorflow/examples/android/README.md#edit-workspace | |
# The lines below have already been uncommented | |
android_sdk_repository( | |
name = "androidsdk", | |
api_level = 23, | |
build_tools_version = "25.0.2", | |
path = "/android", | |
) | |
android_ndk_repository( | |
name="androidndk", | |
path="/android/android-ndk-r12b", | |
api_level=21) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment