Morten Krogh-Jespersen | 1ba55f5 | 2020-04-24 12:49:17 +0200 | [diff] [blame] | 1 | # 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 | |
| 5 | import os |
| 6 | import utils |
| 7 | |
Christoffer Quist Adamsen | 39929ae | 2020-06-02 12:47:21 +0200 | [diff] [blame] | 8 | ANDROID_J_API = '16' |
Morten Krogh-Jespersen | 1ba55f5 | 2020-04-24 12:49:17 +0200 | [diff] [blame] | 9 | BASE = os.path.join(utils.THIRD_PARTY, 'tachiyomi') |
| 10 | |
| 11 | VERSIONS = { |
| 12 | 'b15d2fe16864645055af6a745a62cc5566629798': { |
| 13 | 'deploy' : { |
Christoffer Quist Adamsen | 39929ae | 2020-06-02 12:47:21 +0200 | [diff] [blame] | 14 | '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-Jespersen | 1ba55f5 | 2020-04-24 12:49:17 +0200 | [diff] [blame] | 18 | }, |
| 19 | }, |
| 20 | } |