blob: 10fafe26f8697a9a5e496e88d877f6fa1264d4ce [file] [log] [blame]
Morten Krogh-Jespersen1ba55f52020-04-24 12:49:17 +02001# Copyright (c) 2020, the R8 project authors. Please see the AUTHORS file
2# for details. All rights reserved. Use of this source code is governed by a
3# BSD-style license that can be found in the LICENSE file.
4
5import os
6import utils
7
Christoffer Quist Adamsen39929ae2020-06-02 12:47:21 +02008ANDROID_J_API = '16'
Morten Krogh-Jespersen1ba55f52020-04-24 12:49:17 +02009BASE = os.path.join(utils.THIRD_PARTY, 'tachiyomi')
10
11VERSIONS = {
12 'b15d2fe16864645055af6a745a62cc5566629798': {
13 'deploy' : {
Christoffer Quist Adamsen39929ae2020-06-02 12:47:21 +020014 'inputs': [os.path.join(BASE, 'program.jar')],
15 'pgconf': [os.path.join(BASE, 'proguard.config')],
16 'libraries': [os.path.join(BASE, 'library.jar')],
17 'min-api' : ANDROID_J_API,
Morten Krogh-Jespersen1ba55f52020-04-24 12:49:17 +020018 },
19 },
20}