- Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathClient.java
More file actions
Latest commit
19 lines (16 loc) · 459 Bytes
/
Copy pathClient.java
File metadata and controls
19 lines (16 loc) · 459 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
packageu010;
/**
* Created by HuGuodong on 11/22/19.
*/
publicclassClient {
publicstaticvoidmain(String[] args) {
CrossCompileriphoneCompiler = newIPhoneCompiler();
iphoneCompiler.compile();
CrossCompilerandroidCompiler = newAandroidCompiler();
androidCompiler.compile();
// IPhoneCompiler collectSource
// IPhoneCompiler compileToTarget
// AandroidCompiler collectSource
// AandroidCompiler compileToTarget
}
}