File tree 3 files changed +12
-9
lines changed
utilities/templates-api/src/main
assets/templates/base/root
java/com/itsaky/androidide/templates
3 files changed +12
-9
lines changed Original file line number Diff line number Diff line change
1
+ # AndroidIDE
2
+ .androidide/
3
+
1
4
# Built application files
2
5
*.apk
3
6
*.aar
Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ package com.itsaky.androidide.templates
21
21
* @author Akash Yadav
22
22
*/
23
23
24
- const val ANDROID_GRADLE_PLUGIN_VERSION = " 8.0 .0"
25
- const val GRADLE_DISTRIBUTION_VERSION = " 8.1.1 "
26
- const val KOTLIN_VERSION = " 1.8.21 "
24
+ const val ANDROID_GRADLE_PLUGIN_VERSION = " 8.6 .0"
25
+ const val GRADLE_DISTRIBUTION_VERSION = " 8.8 "
26
+ const val KOTLIN_VERSION = " 1.9.22 "
27
27
28
- val TARGET_SDK_VERSION = Sdk .Tiramisu
29
- val COMPILE_SDK_VERSION = Sdk .Tiramisu
28
+ val TARGET_SDK_VERSION = Sdk .UpsideDownCake
29
+ val COMPILE_SDK_VERSION = Sdk .UpsideDownCake
30
30
31
- const val JAVA_SOURCE_VERSION = " 11 "
32
- const val JAVA_TARGET_VERSION = " 11 "
31
+ const val JAVA_SOURCE_VERSION = " 17 "
32
+ const val JAVA_TARGET_VERSION = " 17 "
Original file line number Diff line number Diff line change @@ -364,7 +364,7 @@ inline fun <T : Enum<*>> enumParameter(crossinline block: EnumParameterBuilder<T
364
364
inline fun projectNameParameter (crossinline configure : StringParameterBuilder .() -> Unit = {}) =
365
365
stringParameter {
366
366
name = string.project_app_name
367
- default = " My Application "
367
+ default = " MyApplication "
368
368
startIcon = { R .drawable.ic_android }
369
369
constraints = listOf (NONEMPTY )
370
370
@@ -398,7 +398,7 @@ inline fun projectLanguageParameter(
398
398
inline fun minSdkParameter (crossinline configure : EnumParameterBuilder <Sdk >.() -> Unit = {}) =
399
399
enumParameter<Sdk > {
400
400
name = string.minimum_sdk
401
- default = Sdk .Lollipop
401
+ default = Sdk .Naughat
402
402
displayName = Sdk ::displayName
403
403
startIcon = { R .drawable.ic_min_sdk }
404
404
You can’t perform that action at this time.
0 commit comments