We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efa6d6b commit 3481c75Copy full SHA for 3481c75
lib/definitions/platform.d.ts
@@ -9,5 +9,4 @@ interface IPlatformService {
9
10
interface IPlatformCapabilities {
11
targetedOS?: string[];
12
- frameworkUrl: string;
13
}
lib/services/platform-service.ts
@@ -10,11 +10,9 @@ export class PlatformService implements IPlatformService {
private platformCapabilities: { [key: string]: IPlatformCapabilities } = {
ios: {
- targetedOS: ['darwin'],
14
- frameworkUrl: ""
+ targetedOS: ['darwin']
15
},
16
android: {
17
18
19
};
20
0 commit comments