Files
a3270/build.gradle
T
rudi cf58b5c72c
Build and Test a3270 / Build Android APK (push) Successful in 4m25s
Debug input 2
2026-08-21 01:03:14 -04:00

66 lines
1.5 KiB
Groovy

plugins {
id 'com.android.application' version '8.2.2'
id 'org.jetbrains.kotlin.android' version '1.9.22'
}
android {
namespace 'org.pubvm.a3270'
compileSdk 34
defaultConfig {
applicationId "org.pubvm.a3270"
minSdk 24
targetSdk 34
versionCode 4
versionName "0.1.3"
}
buildTypes {
release {
minifyEnabled false
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = '11'
}
buildFeatures {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion '1.5.8'
}
}
if (findProject(':lib3270j') != null) {
project(':lib3270j') {
apply plugin: 'java-library'
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
}
}
dependencies {
implementation project(':lib3270j')
implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.7.0'
implementation 'androidx.activity:activity-compose:1.8.2'
implementation platform('androidx.compose:compose-bom:2024.02.00')
implementation 'androidx.compose.ui:ui'
implementation 'androidx.compose.ui:ui-graphics'
implementation 'androidx.compose.ui:ui-tooling-preview'
implementation 'androidx.compose.material3:material3'
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.7.0'
}