blob: f5268d844637e618e291ac91381a5e44f996082f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { NativeScriptConfig } from '@nativescript/core';
export default {
id: 'org.nativescript.exampleap',
appPath: 'app',
appResourcesPath: 'App_Resources',
android: {
v8Flags: '--expose_gc',
markingMode: 'none'
}
} as NativeScriptConfig;
|