receive_intent_android34/android/build.gradle
Felisp 93f70e9ed5
Some checks failed
analysis / package-analysis (push) Has been cancelled
Apply patch from https://github.com/daadu/receive_intent/pull/29
2024-09-15 02:48:54 +02:00

53 lines
No EOL
1,018 B
Groovy

group 'com.bhikadia.receive_intent'
version '1.0-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.9.25'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
rootProject.allprojects {
repositories {
google()
mavenCentral()
}
}
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
if (project.android.hasProperty("namespace")) {
namespace 'com.bhikadia.receive_intent'
}
compileSdk 34
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
defaultConfig {
minSdkVersion 16
}
}
dependencies {
implementation "androidx.annotation:annotation:1.8.2"
}