1 /* 2 * Copyright (c) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 package ohos; 17 18 /** 19 * App DeviceConfig info. 20 * 21 */ 22 public class DeviceConfig { 23 /** 24 * Indicates the target request Sdk Version of app DeviceConfig. 25 * @Deprecated 26 */ 27 public String targetReqSdk = ""; 28 29 /** 30 * Indicates the compatible request Sdk Version of app DeviceConfig. 31 * @Deprecated 32 */ 33 public String compatibleReqSdk = ""; 34 35 /** 36 * Indicates the jointUserid of app DeviceConfig. 37 */ 38 public String jointUserid = ""; 39 40 /** 41 * Indicates the process of app DeviceConfig. 42 */ 43 public String process = ""; 44 45 /** 46 * Indicates the arkFlag of app DeviceConfig. 47 * @Deprecated 48 */ 49 public String arkFlag = ""; 50 51 /** 52 * Indicates the targetArkVersion of app DeviceConfig. 53 * @Deprecated 54 */ 55 public String targetArkVersion = ""; 56 57 /** 58 * Indicates the compatibleArkVersion of app DeviceConfig. 59 * @Deprecated 60 */ 61 public String compatibleArkVersion = ""; 62 63 /** 64 * Indicates the directLaunch of app DeviceConfig. 65 */ 66 public boolean directLaunch = false; 67 68 // stage module character 69 /** 70 * Indicates the distributedNotificationEnabled of app AppJson. 71 */ 72 public boolean distributedNotificationEnabled = false; 73 } 74