Files
apk/FastDocumentation/app/build.gradle
2025-12-09 11:35:41 +01:00

33 lines
771 B
Groovy

plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}
android {
namespace 'com.example.FastDocumentation' // Replace with your package name
compileSdk 34 // Use the latest stable SDK
defaultConfig {
applicationId "com.example.FastDocumentation"
minSdk 24
targetSdk 34
versionCode 1
versionName "1.0"
}
// Optional: for Kotlin usage
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
// Add necessary dependencies
implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
}