Warning, /libraries/kunifiedpush/src/client/android/build.gradle is written in an unsupported language. File is not indexed.

0001 // SPDX-FileCopyrightText: 2022 Volker Krause <vkrause@kde.org>
0002 // SPDX-License-Identifier: BSD-2-Clause
0003 
0004 buildscript {
0005     repositories {
0006         google()
0007         jcenter()
0008     }
0009 
0010     dependencies {
0011         classpath 'com.android.tools.build:gradle:@Gradle_ANDROID_GRADLE_PLUGIN_VERSION@'
0012     }
0013 }
0014 
0015 repositories {
0016     google()
0017     jcenter()
0018 }
0019 
0020 apply plugin: 'com.android.library'
0021 
0022 android {
0023     compileSdkVersion @ANDROID_SDK_COMPILE_API@
0024     buildToolsVersion '@ANDROID_SDK_BUILD_TOOLS_REVISION@'
0025 
0026     sourceSets {
0027         main {
0028             manifest.srcFile '@CMAKE_CURRENT_SOURCE_DIR@/AndroidManifest.xml'
0029             java.srcDirs = ['@CMAKE_CURRENT_SOURCE_DIR@/org']
0030        }
0031     }
0032 
0033     lintOptions {
0034         abortOnError false
0035     }
0036 
0037     defaultConfig {
0038         minSdkVersion @ANDROID_API_LEVEL@
0039         targetSdkVersion @ANDROID_SDK_COMPILE_API@
0040     }
0041 }