2021-04-23 07:15:26 +02:00
|
|
|
group 'com.bhikadia.receive_intent'
|
|
|
|
version '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
buildscript {
|
2024-09-15 02:48:54 +02:00
|
|
|
ext.kotlin_version = '1.9.25'
|
2021-04-23 07:15:26 +02:00
|
|
|
repositories {
|
|
|
|
google()
|
2023-12-21 06:42:40 +01:00
|
|
|
mavenCentral()
|
2021-04-23 07:15:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-09-15 02:48:54 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:8.5.2'
|
2021-04-23 07:15:26 +02:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2023-12-21 06:42:40 +01:00
|
|
|
mavenCentral()
|
2021-04-23 07:15:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
|
|
|
|
android {
|
2023-12-21 06:42:40 +01:00
|
|
|
if (project.android.hasProperty("namespace")) {
|
|
|
|
namespace 'com.bhikadia.receive_intent'
|
|
|
|
}
|
2023-12-28 14:00:54 +01:00
|
|
|
|
2024-09-15 02:48:54 +02:00
|
|
|
compileSdk 34
|
2021-04-23 07:15:26 +02:00
|
|
|
|
2023-12-28 14:00:54 +01:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = '1.8'
|
|
|
|
}
|
|
|
|
|
2021-04-23 07:15:26 +02:00
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 16
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-09-15 02:48:54 +02:00
|
|
|
implementation "androidx.annotation:annotation:1.8.2"
|
2023-12-21 06:42:40 +01:00
|
|
|
}
|