Initial commit: hello-world Android project
Android Build / build (push) Failing after 21s

This commit is contained in:
2026-05-16 15:42:17 +02:00
commit 0668d8631f
12 changed files with 286 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
}
android {
namespace = "com.example.helloworld"
compileSdk = 34
defaultConfig {
applicationId = "com.example.helloworld"
minSdk = 21
targetSdk = 34
versionCode = 1
versionName = "1.0"
}
buildTypes {
release {
isMinifyEnabled = false
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "17"
}
}
dependencies {
implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.appcompat:appcompat:1.6.1")
}