(String name)
| 196 | } |
| 197 | |
| 198 | static public File getContentFile(String name) { |
| 199 | String appDir = System.getProperty("APP_DIR"); |
| 200 | if (appDir == null || appDir.length() == 0) { |
| 201 | appDir = currentDirectory; |
| 202 | } |
| 203 | File installationFolder = new File(appDir); |
| 204 | return new File(installationFolder, name); |
| 205 | } |
| 206 | |
| 207 | static public TargetPlatform getCurrentTargetPlatformFromPackage(String pack) { |
| 208 | return getTargetPlatform(pack, PreferencesData.get("target_platform")); |
no outgoing calls
no test coverage detected