Upstream version 8.37.186.0
[platform/framework/web/crosswalk.git] / src / xwalk / app / tools / android / app_info.py
1 #!/usr/bin/env python
2
3 # Copyright (c) 2014 Intel Corporation. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 class AppInfo:
8   def __init__(self):
9     self.app_root = ''
10     self.app_version = '1.0.0'
11     self.app_versionCode = ''
12     self.fullscreen_flag = ''
13     self.icon = ''
14     # android_name is only composed of alphabetic characters,
15     # it will be used for Android project name,
16     # APK file name and Activity name.
17     self.android_name = 'AppTemplate'
18     self.orientation = 'unspecified'
19     # app_name is human readable string,
20     # it will be used for the Android application name.
21     self.app_name = ''
22     self.package = 'org.xwalk.app.template'
23     self.remote_debugging = ''