Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame] | 1 | // Copyright (c) 2016, 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 | apply plugin: 'java' |
| 5 | apply plugin: 'idea' |
| 6 | |
| 7 | repositories { |
| 8 | mavenCentral() |
| 9 | } |
| 10 | |
| 11 | dependencies { |
| 12 | compile group: 'com.google.guava', name: 'guava', version: '19.0' |
| 13 | compile group: 'org.smali', name: 'smali', version: '2.2b4' |
| 14 | } |
Ian Zerny | 5fffb0a | 2019-02-11 13:54:22 +0100 | [diff] [blame] | 15 | |
| 16 | sourceCompatibility = JavaVersion.VERSION_1_8 |
| 17 | targetCompatibility = JavaVersion.VERSION_1_8 |