new printer integration!

This commit is contained in:
OnlyPapy98
2025-11-28 16:35:53 +01:00
parent 1031307b3a
commit 87a3e952aa
49 changed files with 7088 additions and 301 deletions

View File

@@ -11,7 +11,7 @@ android {
defaultConfig {
applicationId = "com.example.quiz"
minSdk = 16
minSdk = 29
targetSdk = 34
versionCode = 1
versionName = "1.0"
@@ -29,14 +29,14 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
buildFeatures {
viewBinding = true
}
kotlinOptions {
jvmTarget = "11"
jvmTarget = "17"
}
}
@@ -59,8 +59,9 @@ dependencies {
implementation(libs.navigation.fragment)
implementation(libs.navigation.ui)
implementation(libs.play.services.maps)
implementation(project(":printama"))
testImplementation(libs.junit)
androidTestImplementation(libs.ext.junit)
androidTestImplementation(libs.espresso.core)
}
}