feat: 알림 권한 처리 개선 및 빌드 시스템 업데이트
- Android NDK 버전을 27.0.12077973으로 업데이트 - Core library desugaring 설정 추가 - POST_NOTIFICATIONS 권한 추가 (Android 13+) - flutter_local_notifications 17.2.4로 업데이트 - iOS/Android 알림 권한 요청 메서드 개선 - 권한 상태 확인 메서드 추가
This commit is contained in:
@@ -8,11 +8,12 @@ plugins {
|
||||
android {
|
||||
namespace = "com.example.submanager"
|
||||
compileSdk = flutter.compileSdkVersion
|
||||
ndkVersion = flutter.ndkVersion
|
||||
ndkVersion = "27.0.12077973"
|
||||
|
||||
compileOptions {
|
||||
sourceCompatibility = JavaVersion.VERSION_11
|
||||
targetCompatibility = JavaVersion.VERSION_11
|
||||
isCoreLibraryDesugaringEnabled = true
|
||||
}
|
||||
|
||||
kotlinOptions {
|
||||
@@ -42,3 +43,7 @@ android {
|
||||
flutter {
|
||||
source = "../.."
|
||||
}
|
||||
|
||||
dependencies {
|
||||
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.4")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user