Skip to content

Commit 0d056e2

Browse files
committed
Forbid MNC SDK
Programs built with it can run only on MNC devices. We disable it until we create a good UI for the user to select target/min SDK
1 parent 6f101ce commit 0d056e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/android-project-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import fs = require("fs");
1010
import os = require("os");
1111

1212
class AndroidProjectService implements IPlatformProjectService {
13-
private SUPPORTED_TARGETS = ["android-17", "android-18", "android-19", "android-21", "android-MNC"];
13+
private SUPPORTED_TARGETS = ["android-17", "android-18", "android-19", "android-21"]; // forbidden for now: "android-MNC"
1414
private static RES_DIRNAME = "res";
1515
private static VALUES_DIRNAME = "values";
1616
private static VALUES_VERSION_DIRNAME_PREFIX = AndroidProjectService.VALUES_DIRNAME + "-v";

0 commit comments

Comments
 (0)