Upstream version 9.37.195.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     # generated from the last segment of input package name.
16     # It will be used for Android project name,
17     # APK file name and Activity name.
18     self.android_name = 'AppTemplate'
19     self.orientation = 'unspecified'
20     # app_name is human readable string,
21     # it will be used for the Android application name.
22     self.app_name = ''
23     self.package = 'org.xwalk.app.template'
24     self.remote_debugging = ''