Warning, /pim/itinerary/src/calendarextras/android/build.gradle is written in an unsupported language. File is not indexed.
0001 /*
0002 SPDX-FileCopyrightText: 2022 Volker Krause <vkrause@kde.org>
0003 SPDX-License-Identifier: BSD-3-Clause
0004 */
0005
0006 buildscript {
0007 repositories {
0008 google()
0009 jcenter()
0010 }
0011
0012 dependencies {
0013 classpath 'com.android.tools.build:gradle:@Gradle_ANDROID_GRADLE_PLUGIN_VERSION@'
0014 }
0015 }
0016
0017 repositories {
0018 google()
0019 jcenter()
0020 }
0021
0022 apply plugin: 'com.android.library'
0023
0024 android {
0025 buildToolsVersion '@ANDROID_SDK_BUILD_TOOLS_REVISION@'
0026 compileSdkVersion @ANDROID_SDK_COMPILE_API@
0027
0028 sourceSets {
0029 main {
0030 manifest.srcFile '@CMAKE_CURRENT_SOURCE_DIR@/AndroidManifest.xml'
0031 java.srcDirs = ['@CMAKE_CURRENT_SOURCE_DIR@/org']
0032 }
0033 }
0034
0035 compileOptions {
0036 sourceCompatibility JavaVersion.VERSION_1_8
0037 targetCompatibility JavaVersion.VERSION_1_8
0038 }
0039
0040 lintOptions {
0041 abortOnError false
0042 }
0043
0044 defaultConfig {
0045 minSdkVersion @ANDROID_API_LEVEL@
0046 targetSdkVersion @ANDROID_SDK_COMPILE_API@
0047 }
0048 }