Commit 34d78140 by 王宇航

1、去除指定jdk版本

parent 9dec64e1
...@@ -26,13 +26,13 @@ android { ...@@ -26,13 +26,13 @@ android {
) )
} }
} }
compileOptions { // compileOptions {
sourceCompatibility = JavaVersion.VERSION_17 // sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17 // targetCompatibility = JavaVersion.VERSION_17
} // }
kotlinOptions { // kotlinOptions {
jvmTarget = "17" // jvmTarget = "17"
} // }
} }
dependencies { dependencies {
......
...@@ -81,7 +81,7 @@ class MainActivity : Activity() { ...@@ -81,7 +81,7 @@ class MainActivity : Activity() {
isFirstSendOrder = true isFirstSendOrder = true
flyPrintInfo = "K1-L2" flyPrintInfo = "K1-L2"
foodInfoBeanList = mutableListOf<FoodInfoBean>().apply { foodInfoBeanList = mutableListOf<FoodInfoBean>().apply {
for (i in 0 until 10) { for (i in 0 until 50) {
add(FoodInfoBean().apply { add(FoodInfoBean().apply {
foodId = "${1 + i}" foodId = "${1 + i}"
printId = "1166$i" printId = "1166$i"
......
...@@ -24,13 +24,13 @@ android { ...@@ -24,13 +24,13 @@ android {
) )
} }
} }
compileOptions { // compileOptions {
sourceCompatibility = JavaVersion.VERSION_17 // sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17 // targetCompatibility = JavaVersion.VERSION_17
} // }
kotlinOptions { // kotlinOptions {
jvmTarget = "17" // jvmTarget = "17"
} // }
} }
dependencies { dependencies {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment