簡體   English   中英

Android Studio 在添加密鑰庫后在 build.gradle 文件中顯示錯誤

[英]Android Studio showing error in build.gradle file after adding keystore

基本上,我在我的 android 應用程序中添加密鑰庫文件以實現谷歌身份驗證,在添加並制作 keystore.properties 文件后,build.gradle:app 文件開始在 Z8ED1A771BC236C287AD93C699BFDD27D 期間顯示一些錯誤。 以下是 build.gradle 的代碼:app 文件


          def localProperties = new Properties()
          def localPropertiesFile = rootProject.file('local.properties')
           if (localPropertiesFile.exists()) {
               localPropertiesFile.withReader('UTF-8') { reader ->
               localProperties.load(reader)
          }
        }

       def flutterRoot = localProperties.getProperty('flutter.sdk')
      if (flutterRoot == null) {
              throw new FileNotFoundException("Flutter SDK not found. Define location with 
           flutter.sdk in the local.properties file.")
          }

         def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
           if (flutterVersionCode == null) {
             flutterVersionCode = '1'
           }

            def flutterVersionName = localProperties.getProperty('flutter.versionName')
               if (flutterVersionName == null) {
                    flutterVersionName = '1.0'
               }

                apply plugin: 'com.android.application'
                apply plugin: 'kotlin-android'
                apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

             def keystoreProperties = new Properties()
             def keystorePropertiesFile = rootProject.file('key.properties')
                 if (keystorePropertiesFile.exists()) {
                 keystoreProperties.load(new FileInputStream(keystorePropertiesFile))

    android {
        signingConfigs {
            debug {
                storeFile file('~\\user\\keystores\\upload-keystore.jks')
                keyAlias 'upload'
                storePassword <pass>
                keyPassword <pass>
            }
        }
        compileSdkVersion 32


        sourceSets {
            main.java.srcDirs += 'src/main/kotlin'
        }

        defaultConfig {
            // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
            applicationId "com.example.flutter_application"
            minSdkVersion 16
            targetSdkVersion 32
            versionCode flutterVersionCode.toInteger()
            versionName flutterVersionName
        }


        buildTypes {
            release {
                // TODO: Add your own signing config for the release build.
                // Signing with the debug keys for now, so `flutter run --release` works.
                signingConfig signingConfigs.debug
            }
        }
    }

    flutter {
        source '../..'
    }

     }

這些是正在顯示的錯誤

錯誤

可以做些什么來解決所有這些錯誤

您可以在 android/app/build.gradle 中將此格式用於 build.gradle

def localProperties = new Properties() 
 def localPropertiesFile = rootProject.file('local.properties') 
 if (localPropertiesFile.exists()) { 
     localPropertiesFile.withReader('UTF-8') { reader -> 
         localProperties.load(reader) 
     } 
 } 
  
 def flutterRoot = localProperties.getProperty('flutter.sdk') 
 if (flutterRoot == null) { 
     throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 
 } 
  
 def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 
 if (flutterVersionCode == null) { 
     flutterVersionCode = '1' 
 } 
  
 def flutterVersionName = localProperties.getProperty('flutter.versionName') 
 if (flutterVersionName == null) { 
     flutterVersionName = '1.0' 
 } 
  
 apply plugin: 'com.android.application' 
 apply plugin: 'com.google.gms.google-services' 
 apply plugin: 'kotlin-android' 
 apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 
  
 def keystoreProperties = new Properties() 
 def keystorePropertiesFile = rootProject.file('key.properties') 
 if (keystorePropertiesFile.exists()) { 
     keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) 
 } 
  
 android { 
     compileSdkVersion 31 
  
     sourceSets { 
         main.java.srcDirs += 'src/main/kotlin' 
     } 
     lintOptions { 
  
         disable 'InvalidPackage' 
     } 
     defaultConfig { 
         // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 
         applicationId "your application package id here" 
         minSdkVersion 21 
         targetSdkVersion 31
         versionCode flutterVersionCode.toInteger() 
         versionName flutterVersionName 
     } 
  
     signingConfigs { 
         release { 
             keyAlias keystoreProperties['keyAlias'] 
             keyPassword keystoreProperties['keyPassword'] 
             storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null 
             storePassword keystoreProperties['storePassword'] 
         } 
     } 
     buildTypes { 
         release { 
             signingConfig signingConfigs.release 
         } 
     } 
 } 
  
 flutter { 
     source '../..' 
 } 
  
 dependencies { 
     implementation 'com.google.android.material:material:1.4.0' 
     implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 

 }

不要忘記更換您的 package id

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM