Merge "Allow `unversioned_until: "current"`."
diff --git a/cc/ndk_library.go b/cc/ndk_library.go
index aea0d52..da3d5c7 100644
--- a/cc/ndk_library.go
+++ b/cc/ndk_library.go
@@ -162,6 +162,14 @@
 		return true, nil
 	}
 
+	if stub.properties.Unversioned_until == "current" {
+		if stub.properties.ApiLevel == "current" {
+			return true, nil
+		} else {
+			return false, nil
+		}
+	}
+
 	if stub.properties.ApiLevel == "current" {
 		return true, nil
 	}