Fix Android APK building (packaging)

I missed this syntax error during my review, and we don't check that
packaging succeeds in regular build suite, but only as a Nightly build.
This commit is contained in:
Aneesh Agrawal 2016-05-24 23:41:40 -04:00
parent b6e06bd837
commit fa33eefcbd

View file

@ -30,7 +30,7 @@ fn main() {
// Get the target android platform from ANDROID_PLATFORM env. Expecting "android-{version}"
let android_platform = env::var("ANDROID_PLATFORM")
.ok()
.expect("Please set the ANDROID_PLATFORM environment variable")
.expect("Please set the ANDROID_PLATFORM environment variable");
// Get the standalone NDK path from NDK_STANDALONE env.
// let standalone_path = env::var("NDK_STANDALONE").ok().unwrap_or("/opt/ndk_standalone".to_string());