blob: eff9a9a5b50383aa57c19b6e512475bdbd990ea5 [file] [log] [blame]
Abodunrinwa Tokibb957d12017-04-12 14:40:46 +01001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.updates;
18
19public class SmartSelectionInstallReceiver extends ConfigUpdateInstallReceiver {
20
21 public SmartSelectionInstallReceiver() {
22 super(
23 "/data/misc/textclassifier/",
Jan Althaus67d234d2018-01-26 17:53:31 +010024 "textclassifier.model",
25 "metadata/classification",
Abodunrinwa Tokibb957d12017-04-12 14:40:46 +010026 "version");
27 }
Abodunrinwa Tokibb957d12017-04-12 14:40:46 +010028
Abodunrinwa Toki78b6a562017-04-19 22:00:34 +010029 @Override
30 protected boolean verifyVersion(int current, int alternative) {
31 return true;
32 }
33}