LucJosin / on_audio_query

Flutter Plugin used to query audios/songs infos [title, artist, album, etc..] from device storage.
https://pub.dev/packages/on_audio_query
44 stars 34 forks source link

i can't use on_audio_querty #156

Open oktambek2003 opened 1 month ago

oktambek2003 commented 1 month ago

1. this is my mistake

FAILURE: Build failed with an exception.

BUILD FAILED in 41s Running Gradle task 'assembleDebug'... 42.1s Error: Gradle task assembleDebug failed with exit code 1

2. 1. @This is my build.gradle file plugins { id "com.android.application" id "kotlin-android" // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins. id "dev.flutter.flutter-gradle-plugin" }

android { namespace = "com.example.on_audio_query" compileSdk = flutter.compileSdkVersion ndkVersion = flutter.ndkVersion

compileOptions {
    sourceCompatibility = JavaVersion.VERSION_1_8
    targetCompatibility = JavaVersion.VERSION_1_8
}

kotlinOptions {
    jvmTarget = JavaVersion.VERSION_1_8
}

defaultConfig {
    // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
    applicationId = "ccom.example.on_audio_query"
    // You can update the following values to match your application needs.
    // For more information, see: https://flutter.dev/to/review-gradle-config.
    minSdk = flutter.minSdkVersion
    targetSdk = flutter.targetSdkVersion
    versionCode = flutter.versionCode
    versionName = flutter.versionName
}

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 = "../.." }

this is my AndroidManifest.xml file

Please help me

TimSpan commented 2 days ago

That happened to me, too