Reputation: 1
hear is my console after running my main.dart. flutter doctor flutter doctor -v returns no issues
FAILURE: Build failed with an exception.
Where: Build file '/home/user/DevMobile/klicker/android/app/build.gradle' line: 24
What went wrong: A problem occurred evaluating project ':app'.
Failed to apply plugin 'com.android.internal.version-check'. Could not create plugin of type 'VersionCheckPlugin'. > Could not initialize class com.android.build.gradle.internal.plugins.VersionCheckPlugin
Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
Get more help at https://help.gradle.org
BUILD FAILED in 5s
my android/app/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: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion 30
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.klicker"
minSdkVersion 16
targetSdkVersion 30
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 '../..'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}
Upvotes: 0
Views: 455
Reputation: 1
thanks for the answer it didn't run well now i have:
FAILURE: Build failed with an exception.
Where: Build file '/home/kamal/DevMobile/klicker/android/app/build.gradle' line: 24
What went wrong: A problem occurred evaluating project ':app'.
Failed to apply plugin 'com.android.internal.version-check'. Could not create plugin of type 'VersionCheckPlugin'. > com/google/common/base/Splitter
Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
Get more help at https://help.gradle.org
BUILD FAILED in 21s Exception: Gradle task assembleDebug failed with exit code 1 Exited (sigterm)
Upvotes: 0