mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-10 13:05:05 +00:00
64 lines
1.8 KiB
Groovy
64 lines
1.8 KiB
Groovy
|
/*
|
||
|
* SPDX-FileCopyrightText: 2021 microG Project Team
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
apply plugin: 'com.android.library'
|
||
|
apply plugin: 'kotlin-android'
|
||
|
apply plugin: 'maven-publish'
|
||
|
apply plugin: 'signing'
|
||
|
|
||
|
dependencies {
|
||
|
api project(':play-services-safetynet-api')
|
||
|
|
||
|
implementation project(':play-services-base-core')
|
||
|
implementation project(':play-services-droidguard')
|
||
|
implementation project(':play-services-droidguard-core')
|
||
|
implementation project(':play-services-safetynet-core-proto')
|
||
|
|
||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"
|
||
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutineVersion"
|
||
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutineVersion"
|
||
|
|
||
|
implementation "androidx.appcompat:appcompat:$appcompatVersion"
|
||
|
implementation "androidx.core:core-ktx:$coreVersion"
|
||
|
implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycleVersion"
|
||
|
implementation "androidx.lifecycle:lifecycle-service:$lifecycleVersion"
|
||
|
implementation "androidx.webkit:webkit:$webkitVersion"
|
||
|
|
||
|
implementation "com.android.volley:volley:$volleyVersion"
|
||
|
implementation "com.squareup.wire:wire-runtime:$wireVersion"
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion androidCompileSdk
|
||
|
buildToolsVersion "$androidBuildVersionTools"
|
||
|
|
||
|
defaultConfig {
|
||
|
versionName version
|
||
|
minSdkVersion androidMinSdk
|
||
|
targetSdkVersion androidTargetSdk
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
main.java.srcDirs += 'src/main/kotlin'
|
||
|
}
|
||
|
|
||
|
lintOptions {
|
||
|
disable 'MissingTranslation'
|
||
|
}
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility = 1.8
|
||
|
targetCompatibility = 1.8
|
||
|
}
|
||
|
|
||
|
kotlinOptions {
|
||
|
jvmTarget = 1.8
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply from: '../gradle/publish-android.gradle'
|
||
|
|
||
|
description = 'microG service implementation for play-services-safetynet'
|