feat(build): kotlin 2.2.20, agp 8.11.1 업그레이드
This commit is contained in:
		
							
								
								
									
										10
									
								
								build.gradle
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								build.gradle
									
									
									
									
									
								
							@@ -1,7 +1,7 @@
 | 
				
			|||||||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
 | 
					// Top-level build file where you can add configuration options common to all sub-projects/modules.
 | 
				
			||||||
buildscript {
 | 
					buildscript {
 | 
				
			||||||
    ext {
 | 
					    ext {
 | 
				
			||||||
        kotlin_version = '2.1.21'
 | 
					        kotlin_version = '2.2.20'
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    repositories {
 | 
					    repositories {
 | 
				
			||||||
        google()
 | 
					        google()
 | 
				
			||||||
@@ -16,10 +16,10 @@ buildscript {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
plugins {
 | 
					plugins {
 | 
				
			||||||
    id 'com.android.application' version '8.7.2' apply false
 | 
					    id 'com.android.application' version '8.11.1' apply false
 | 
				
			||||||
    id 'com.android.library' version '8.7.2' apply false
 | 
					    id 'com.android.library' version '8.11.1' apply false
 | 
				
			||||||
    id 'org.jetbrains.kotlin.android' version '2.1.21' apply false
 | 
					    id 'org.jetbrains.kotlin.android' version '2.2.20' apply false
 | 
				
			||||||
    id 'com.google.devtools.ksp' version '2.1.21-2.0.2' apply false
 | 
					    id 'com.google.devtools.ksp' version '2.2.20-2.0.4' apply false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    id "org.jlleitschuh.gradle.ktlint" version "11.2.0"
 | 
					    id "org.jlleitschuh.gradle.ktlint" version "11.2.0"
 | 
				
			||||||
    id 'com.google.gms.google-services' version '4.3.15' apply false
 | 
					    id 'com.google.gms.google-services' version '4.3.15' apply false
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,7 +6,7 @@
 | 
				
			|||||||
# http://www.gradle.org/docs/current/userguide/build_environment.html
 | 
					# http://www.gradle.org/docs/current/userguide/build_environment.html
 | 
				
			||||||
# Specifies the JVM arguments used for the daemon process.
 | 
					# Specifies the JVM arguments used for the daemon process.
 | 
				
			||||||
# The setting is particularly useful for tweaking memory settings.
 | 
					# The setting is particularly useful for tweaking memory settings.
 | 
				
			||||||
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
 | 
					org.gradle.jvmargs=-Xmx4g -Dfile.encoding=UTF-8
 | 
				
			||||||
# When configured, Gradle will run in incubating parallel mode.
 | 
					# When configured, Gradle will run in incubating parallel mode.
 | 
				
			||||||
# This option should only be used with decoupled projects. More details, visit
 | 
					# This option should only be used with decoupled projects. More details, visit
 | 
				
			||||||
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
 | 
					# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										2
									
								
								gradle/wrapper/gradle-wrapper.properties
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								gradle/wrapper/gradle-wrapper.properties
									
									
									
									
										vendored
									
									
								
							@@ -1,6 +1,6 @@
 | 
				
			|||||||
#Sun Jul 23 18:26:44 KST 2023
 | 
					#Sun Jul 23 18:26:44 KST 2023
 | 
				
			||||||
distributionBase=GRADLE_USER_HOME
 | 
					distributionBase=GRADLE_USER_HOME
 | 
				
			||||||
distributionPath=wrapper/dists
 | 
					distributionPath=wrapper/dists
 | 
				
			||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
 | 
					distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
 | 
				
			||||||
zipStoreBase=GRADLE_USER_HOME
 | 
					zipStoreBase=GRADLE_USER_HOME
 | 
				
			||||||
zipStorePath=wrapper/dists
 | 
					zipStorePath=wrapper/dists
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -9,10 +9,10 @@ dependencyResolutionManagement {
 | 
				
			|||||||
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
 | 
					    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
 | 
				
			||||||
    repositories {
 | 
					    repositories {
 | 
				
			||||||
        google()
 | 
					        google()
 | 
				
			||||||
        jcenter()
 | 
					 | 
				
			||||||
        mavenCentral()
 | 
					        mavenCentral()
 | 
				
			||||||
        maven { url 'https://jitpack.io' }
 | 
					        maven { url 'https://jitpack.io' }
 | 
				
			||||||
        maven { url = "https://devrepo.kakao.com/nexus/content/groups/public/" }
 | 
					        maven { url = "https://devrepo.kakao.com/nexus/content/groups/public/" }
 | 
				
			||||||
 | 
					        gradlePluginPortal()
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
rootProject.name = "SodaLive"
 | 
					rootProject.name = "SodaLive"
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user