Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

고마구의 개발 블로그

241016 26주차 수요일 - 플러터 배포 오류시 본문

KDT풀스택과정 공부

241016 26주차 수요일 - 플러터 배포 오류시

고마구 2024. 10. 16. 11:47

[Android] Gradle 빌드시에 Signing key로 서명하도록 설정하기 — SH's Devlog (tistory.com)

[Android] Gradle 빌드시에 Signing key로 서명하도록 설정하기

이번 포스트에서는 Gradle 빌드시에 Signing key를 서명하도록 설정하는 방법을 정리하겠습니다. Play store에 앱을 업로드하려면 Bundle 혹은 APK에 앱 서명을 해야합니다. 그래서 서명하기 위한 일반적

seosh817.tistory.com

 

// start of Gradle 서명 구성
def keystorePropertiesFile = rootProject.file('key.properties')

def keystoreProperties = [:] // Groovy의 Map을 사용하여 키-값 쌍 저장

if (keystorePropertiesFile.exists()) {
    keystorePropertiesFile.eachLine { line ->
        def (key, value) = line.split('=')
        keystoreProperties[key.trim()] = value.trim() // 키-값 쌍을 Map에 추가
    }
}

// end of Gradle 서명 구성

1.Gradle의 Groovy DSL에서 Java의 Properties 클래스를 직접 사용할 수 없기 때문에 발생하는 Cannot resolve symbol 'Properties'가 발생시 위와 같이 작성하자
 

signingConfigs {
    release {
        storeFile file('') // keystoreProperties에서 경로 가져오기
        storePassword '' // 비밀번호
        keyAlias '' // 키 별칭
        keyPassword '' // 키 비밀번호
    }
}

2.flutter build appbundle 오류
위와 같이 작성되게 없으면 작성