aboutsummaryrefslogtreecommitdiff
path: root/vendor/libadb-android/libadb/build.gradle
blob: e20deafc2dcbadd4589411b77673d448db1a4060 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// SPDX-License-Identifier: GPL-3.0-or-later OR Apache-2.0

plugins {
    id 'com.android.library'
}

android {
    compileSdk 36
    namespace = "io.github.muntashirakon.adb"

    defaultConfig {
        minSdk 31
        targetSdk 36
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_17
        targetCompatibility JavaVersion.VERSION_17
    }
}

dependencies {
    compileOnly "androidx.annotation:annotation:1.9.1"
    implementation 'org.bouncycastle:bcprov-jdk15to18:1.84'
    implementation 'org.conscrypt:conscrypt-android:2.6.1'
    implementation('com.github.MuntashirAkon.spake2-java:spake2-android:2.2.1') {
        exclude group: 'androidx.annotation', module: 'annotation'
    }

    testImplementation 'junit:junit:4.13.2'
}