You are currently viewing java – Error when generate signed apk

java – Error when generate signed apk

Spread the love

Android Studio Apk oluşturmasında  bu Tarz bir hata alırsanız

Error:Gradle: Execution failed for task ':app:lintVitalRelease'.
Lint found fatal errors while assembling a release target.
  To proceed, either fix the issues identified by lint, or modify your build script as follows:
  ...
  android {
      lintOptions {
          checkReleaseBuilds false
          // Or, if you prefer, you can continue to check for errors in release builds,
          // but continue the build even when errors are found:
          abortOnError false
      }
  } bluid.gradle içinde android satırı içine bu bölüme ///bu satırı eklemeniz yeterli olacaktır.. lintOptions { checkReleaseBuilds false abortOnError false }
android {
    compileSdkVersion 23
    buildToolsVersion '27.0.3'

    defaultConfig {
        applicationId "com.orhsoft.currencyconverter"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
  ///bu satırı eklemeniz yeterli olacaktır..
    lintOptions {
        checkReleaseBuilds false
        abortOnError false
    }
}

Bir yanıt yazın

Bu site, istenmeyenleri azaltmak için Akismet kullanıyor. Yorum verilerinizin nasıl işlendiği hakkında daha fazla bilgi edinin.