Code Monkey home page Code Monkey logo

contact_picker's Introduction

Schlaubi

Hi, I do Kotlin and pretend to be a Bus.

Current Projects

Feel free to contact me anywhere you find me and you will receive your free digital cookie!

contact_picker's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

contact_picker's Issues

flutter build apk --flavor development --target lib/main_development.dart

FAILURE: Build failed with an exception.

  • What went wrong:
    Execution failed for task ':fluttercontactpicker:processReleaseManifest'.

A failure occurred while executing com.android.build.gradle.tasks.ProcessLibraryManifest$ProcessLibWorkAction
Incorrect package="com.example.fluttercontactpicker" found in source AndroidManifest.xml: /Users/julius/.pub-cache/hosted/pub.dev/fluttercontactpicker-4.7.0/android/src/main/AndroidManifest.xml.
Setting the namespace via the package attribute in the source AndroidManifest.xml is no longer supported.
Recommendation: remove package="com.example.fluttercontactpicker" from the source AndroidManifest.xml: /Users/julius/.pub-cache/hosted/pub.dev/fluttercontactpicker-4.7.0/android/src/main/AndroidManifest.xml.

Can't build, ContactPicker.kt: (48, 280): Unresolved reference: stackTraceToString

I was integrating the plugin in my app and at first, DEBUG build failed with an error

\AppData\Local\Pub\Cache\hosted\pub.dartlang.org\fluttercontactpicker-4.4.0\android\src\main\kotlin\me\schlaubi\fluttercontactpicker\ContactPicker.kt: (48, 280): Unresolved reference: stackTraceToString

FAILURE: Build failed with an exception.

What went wrong:
Execution failed for task ':fluttercontactpicker:compileDebugKotlin'.
> Compilation error. See log for more details

Can this be on my end or a general issue?

Support Custom Relationship Type

The plugin crashes when a user selects a contact with a custom relation type. Newer devices don't allow their users to set a relationship type on a contact, but older phones did. If type is 0 the number for custom, the app will crash.

We should add the ContactsContract.CommonDataKinds.Relation.TYPE_CUSTOM, and return the LABEL column value as indicated at https://developer.android.com/reference/android/provider/ContactsContract.CommonDataKinds.Relation

The crash occurs in ContactPicker.kt's buildRelation method

    private fun buildRelation(cursor: Cursor): Map<String, String> {
        val name = cursor.getString(cursor.getColumnIndex(ContactsContract.CommonDataKinds.Relation.NAME))
        val type = when (val typeInt = cursor.getInt(cursor.getColumnIndex(ContactsContract.CommonDataKinds.Relation.TYPE))) {
            ContactsContract.CommonDataKinds.Relation.TYPE_ASSISTANT -> "assistant"
            ContactsContract.CommonDataKinds.Relation.TYPE_BROTHER -> "brother"
            ContactsContract.CommonDataKinds.Relation.TYPE_CHILD -> "child"
            ContactsContract.CommonDataKinds.Relation.TYPE_DOMESTIC_PARTNER -> "domestic_partner"
            ContactsContract.CommonDataKinds.Relation.TYPE_FATHER -> "father"
            ContactsContract.CommonDataKinds.Relation.TYPE_FRIEND -> "friend"
            ContactsContract.CommonDataKinds.Relation.TYPE_MANAGER -> "manager"
            ContactsContract.CommonDataKinds.Relation.TYPE_MOTHER -> "mother"
            ContactsContract.CommonDataKinds.Relation.TYPE_PARENT -> "parent"
            ContactsContract.CommonDataKinds.Relation.TYPE_PARTNER -> "partner"
            ContactsContract.CommonDataKinds.Relation.TYPE_REFERRED_BY -> "referred_by"
            ContactsContract.CommonDataKinds.Relation.TYPE_RELATIVE -> "relative"
            ContactsContract.CommonDataKinds.Relation.TYPE_SISTER -> "sister"
            ContactsContract.CommonDataKinds.Relation.TYPE_SPOUSE -> "spouse"
            else -> error("Unknown type: $typeInt")
        }

        return mapOf("name" to name, "type" to type)
    }

Below is a stacktrace off the exception.
java.lang.RuntimeException:
at android.app.ActivityThread.deliverResults (ActivityThread.java:5009)
at android.app.ActivityThread.handleSendResult (ActivityThread.java:5050)
at android.app.servertransaction.ActivityResultItem.execute (ActivityResultItem.java:51)
at android.app.servertransaction.TransactionExecutor.executeCallbacks (TransactionExecutor.java:135)
at android.app.servertransaction.TransactionExecutor.execute (TransactionExecutor.java:95)
at android.app.ActivityThread$H.handleMessage (ActivityThread.java:2066)
at android.os.Handler.dispatchMessage (Handler.java:106)
at android.os.Looper.loop (Looper.java:223)
at android.app.ActivityThread.main (ActivityThread.java:7660)
at java.lang.reflect.Method.invoke (Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run (RuntimeInit.java:592)
at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:947)
Caused by: java.lang.IllegalStateException:
at me.schlaubi.fluttercontactpicker.ContactPicker.access$buildPhoneNumber (ContactPicker.java:46)
or .buildPhoneNumber (ContactPicker.java:46)
or .buildRelation (ContactPicker.java:46)
at me.schlaubi.fluttercontactpicker.ContactPicker.access$buildContact (ContactPicker.java:151)
or .access$buildDisplayNamed (ContactPicker.java:151)
or .access$getPickContext$p (ContactPicker.java:151)
or .buildAddress (ContactPicker.java:151)
or .buildContact (ContactPicker.java:151)
or .buildCustomField (ContactPicker.java:151)
or .buildDisplayNamed (ContactPicker.java:151)
or .buildLabeledItem (ContactPicker.java:151)
or .buildPhoto (ContactPicker.java:151)
or .label (ContactPicker.java:151)
or .onActivityResult (ContactPicker.java:151)
or .processContact (ContactPicker.java:151)
or .processDisplayNamed (ContactPicker.java:151)
or .processInput (ContactPicker.java:151)
or .requestPicker (ContactPicker.java:151)
at me.schlaubi.fluttercontactpicker.ContactPicker.access$buildContact (ContactPicker.java)
or .access$buildDisplayNamed (ContactPicker.java)
or .access$getPickContext$p (ContactPicker.java)
or .buildAddress (ContactPicker.java)
or .buildContact (ContactPicker.java)
or .buildCustomField (ContactPicker.java)
or .buildDisplayNamed (ContactPicker.java)
or .buildLabeledItem (ContactPicker.java)
or .buildPhoto (ContactPicker.java)
or .label (ContactPicker.java)
or .onActivityResult (ContactPicker.java)
or .processContact (ContactPicker.java)
or .processDisplayNamed (ContactPicker.java)
or .processInput (ContactPicker.java)
or .requestPicker (ContactPicker.java)
at me.schlaubi.fluttercontactpicker.ContactPicker$onActivityResult$3.invoke (ContactPicker.java:19)
at me.schlaubi.fluttercontactpicker.ContactPicker$onActivityResult$3.invoke (ContactPicker.java:6)
at me.schlaubi.fluttercontactpicker.ContactPicker$processContact$1.invoke (ContactPicker.java:40)
at me.schlaubi.fluttercontactpicker.ContactPicker$processContact$1.invoke (ContactPicker.java:2)
at me.schlaubi.fluttercontactpicker.ContactPicker.access$buildContact (ContactPicker.java:26)
or .access$buildDisplayNamed (ContactPicker.java:26)
or .access$getPickContext$p (ContactPicker.java:26)
or .buildAddress (ContactPicker.java:26)
or .buildContact (ContactPicker.java:26)
or .buildCustomField (ContactPicker.java:26)
or .buildDisplayNamed (ContactPicker.java:26)
or .buildLabeledItem (ContactPicker.java:26)
or .buildPhoto (ContactPicker.java:26)
or .label (ContactPicker.java:26)
or .onActivityResult (ContactPicker.java:26)
or .processContact (ContactPicker.java:26)
or .processDisplayNamed (ContactPicker.java:26)
or .processInput (ContactPicker.java:26)
or .requestPicker (ContactPicker.java:26)
at me.schlaubi.fluttercontactpicker.ContactPicker.access$buildContact (ContactPicker.java:5)
or .access$buildDisplayNamed (ContactPicker.java:5)
or .access$getPickContext$p (ContactPicker.java:5)
or .buildAddress (ContactPicker.java:5)
or .buildContact (ContactPicker.java:5)
or .buildCustomField (ContactPicker.java:5)
or .buildDisplayNamed (ContactPicker.java:5)
or .buildLabeledItem (ContactPicker.java:5)
or .buildPhoto (ContactPicker.java:5)
or .label (ContactPicker.java:5)
or .onActivityResult (ContactPicker.java:5)
or .processContact (ContactPicker.java:5)
or .processDisplayNamed (ContactPicker.java:5)
or .processInput (ContactPicker.java:5)
or .requestPicker (ContactPicker.java:5)
at me.schlaubi.fluttercontactpicker.ContactPicker.access$buildContact (ContactPicker.java:19)
or .access$buildDisplayNamed (ContactPicker.java:19)
or .access$getPickContext$p (ContactPicker.java:19)
or .buildAddress (ContactPicker.java:19)
or .buildContact (ContactPicker.java:19)
or .buildCustomField (ContactPicker.java:19)
or .buildDisplayNamed (ContactPicker.java:19)
or .buildLabeledItem (ContactPicker.java:19)
or .buildPhoto (ContactPicker.java:19)
or .label (ContactPicker.java:19)
or .onActivityResult (ContactPicker.java:19)
or .processContact (ContactPicker.java:19)
or .processDisplayNamed (ContactPicker.java:19)
or .processInput (ContactPicker.java:19)
or .requestPicker (ContactPicker.java:19)
at me.schlaubi.fluttercontactpicker.AbstractPickContext.addActivityResultListener (AbstractPickContext.java:30)
or .onActivityResult (AbstractPickContext.java:30)
at io.flutter.embedding.engine.FlutterEngineConnectionRegistry$FlutterEngineActivityPluginBinding.addActivityResultListener (FlutterEngineConnectionRegistry.java:25)
or .addOnNewIntentListener (FlutterEngineConnectionRegistry.java:25)
or .addRequestPermissionsResultListener (FlutterEngineConnectionRegistry.java:25)
or .getLifecycle (FlutterEngineConnectionRegistry.java:25)
or .onActivityResult (FlutterEngineConnectionRegistry.java:25)
or .onNewIntent (FlutterEngineConnectionRegistry.java:25)
or .onRequestPermissionsResult (FlutterEngineConnectionRegistry.java:25)
or .onRestoreInstanceState (FlutterEngineConnectionRegistry.java:25)
at io.flutter.embedding.engine.FlutterEngineConnectionRegistry.add (FlutterEngineConnectionRegistry.java:15)
or .attachToActivity (FlutterEngineConnectionRegistry.java:15)
or .attachToActivityInternal (FlutterEngineConnectionRegistry.java:15)
or .has (FlutterEngineConnectionRegistry.java:15)
or .onActivityResult (FlutterEngineConnectionRegistry.java:15)
or .onSaveInstanceState (FlutterEngineConnectionRegistry.java:15)
or .onUserLeaveHint (FlutterEngineConnectionRegistry.java:15)
or .remove (FlutterEngineConnectionRegistry.java:15)
at io.flutter.embedding.android.FlutterActivityAndFragmentDelegate.access$000 (FlutterActivityAndFragmentDelegate.java:51)
or .getFlutterEngine (FlutterActivityAndFragmentDelegate.java:51)
or .onActivityResult (FlutterActivityAndFragmentDelegate.java:51)
or .onAttach (FlutterActivityAndFragmentDelegate.java:51)
or .onCreateView (FlutterActivityAndFragmentDelegate.java:51)
or .onNewIntent (FlutterActivityAndFragmentDelegate.java:51)
or .onRequestPermissionsResult (FlutterActivityAndFragmentDelegate.java:51)
or .onRestoreInstanceState (FlutterActivityAndFragmentDelegate.java:51)
or .onTrimMemory (FlutterActivityAndFragmentDelegate.java:51)
at io.flutter.embedding.android.FlutterActivity.onActivityResult (FlutterActivity.java:10)
at android.app.Activity.dispatchActivityResult (Activity.java:8310)
at android.app.ActivityThread.deliverResults (ActivityThread.java:5002)
at android.app.ActivityThread.handleSendResult (ActivityThread.java:5050)
at android.app.servertransaction.ActivityResultItem.execute (ActivityResultItem.java:51)
at android.app.servertransaction.TransactionExecutor.executeCallbacks (TransactionExecutor.java:135)
at android.app.servertransaction.TransactionExecutor.execute (TransactionExecutor.java:95)
at android.app.ActivityThread$H.handleMessage (ActivityThread.java:2066)
at android.os.Handler.dispatchMessage (Handler.java:106)
at android.os.Looper.loop (Looper.java:223)
at android.app.ActivityThread.main (ActivityThread.java:7660)
at java.lang.reflect.Method.invoke (Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run (RuntimeInit.java:592)
at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:947)

Unimplemented error

I got this error while trying to pick contacts using this library (4.3.1):

Unhandled Exception: UnimplementedError: pickPhoneContacts() has not been implemented

A similar error is thrown whenever I use some other components from the package, for example, available. I tested it for both iOS and Android devices.

I also tried to use version 4.2.1 but the result is the same.

A proper documentation is required

A proper readme must be maintained describing more on the usage and capabilities of this plugin and also the data it currently returns so that a user can easily understand if this package meets their requirement and whether he should proceed with the package.

Unresolved reference "lowercase"?

image
I found that issue while trying to build Android version of my app with "fluttercontactpicker 4.5.1"
Should it be toLowerCase() method?

MissingPluginException

Not sure why this is occuring.

I/flutter ( 7657): Caught error: MissingPluginException(No implementation found for method pickPhoneContact on channel me.schlaubi.contactpicker)
I/flutter ( 7657): #0 MethodChannel.invokeMethod (package:flutter/src/services/platform_channel.dart:319:7)
I/flutter ( 7657):
I/flutter ( 7657): #1 FlutterContactPicker.pickPhoneContact (package:fluttercontactpicker/fluttercontactpicker.dart:12:22)

My code:

final PhoneContact contact = await FlutterContactPicker.pickPhoneContact();

pubspec.yaml

fluttercontactpicker: ^2.3.0

[✓] Flutter (Channel stable, v1.12.13+hotfix.9, on Linux, locale en_US.UTF-8)
• Flutter version 1.12.13+hotfix.9 at /home/spencer/git/flutter
• Framework revision f139b11009 (4 weeks ago), 2020-03-30 13:57:30 -0700
• Engine revision af51afceb8
• Dart version 2.7.2

[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.3)
• Android SDK at /home/spencer/Android/Sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-29, build-tools 29.0.3
• ANDROID_HOME = /home/spencer/Android/Sdk
• Java binary at: /home/spencer/opt/android-studio/jre/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_212-release-1586-b4-5784211)
• All Android licenses accepted.

[✓] Android Studio (version 3.6)
• Android Studio at /home/spencer/opt/android-studio
• Flutter plugin version 45.1.1
• Dart plugin version 192.7761
• Java version OpenJDK Runtime Environment (build 1.8.0_212-release-1586-b4-5784211)

[✓] Connected device (1 available)
• Pixel 2 • FA7AH1A06907 • android-arm64 • Android 10 (API 29)

• No issues found!

Can not build on Android

I got this error when build on Android:
Android/FlutterSDK/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-3.0.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (52, 280): Unresolved reference: stackTraceToString
FAILURE: Build failed with an exception.

  • What went wrong:
    Execution failed for task ':fluttercontactpicker:compileDebugKotlin'.

Compilation error. See log for more details

Hope you fix it soon, thanks!

Fail to pick contact on Oppo Reno2 F

2022-11-15 13:18:45.364 1520-6273/? E/OplusTrack-ApkInfoUtil: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.Object android.os.Bundle.get(java.lang.String)' on a null object reference
2022-11-15 13:18:45.364 1520-4152/? W/WindowManager: Changing focus fromWindow{6df1ee8 u0 com.android.contacts/com.android.contacts.activities.ContactSelectionActivity} to null displayId=0 Callers=com.android.server.wm.RootWindowContainer.updateFocusedWindowLocked:509 com.android.server.wm.WindowManagerService.updateFocusedWindowLocked:6076 com.android.server.wm.DisplayContent.setFocusedApp:5895 com.android.server.wm.ActivityTaskManagerService.setResumedActivityUncheckLocked:5860 
2022-11-15 13:18:45.364 1520-6273/? W/System.err: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.Object android.os.Bundle.get(java.lang.String)' on a null object reference
2022-11-15 13:18:45.364 1520-6273/? W/System.err:     at com.oplus.statistics.h.b.d(ApkInfoUtil.java:136)
2022-11-15 13:18:45.364 1520-6273/? W/System.err:     at com.oplus.statistics.b.b.a(TrackEvent.java:141)
2022-11-15 13:18:45.364 1520-6273/? W/System.err:     at com.oplus.statistics.b.b.<init>(TrackEvent.java:47)
2022-11-15 13:18:45.364 1520-6273/? W/System.err:     at com.oplus.statistics.b.a.<init>(CommonBean.java:37)
2022-11-15 13:18:45.364 1520-6273/? W/System.err:     at com.oplus.statistics.c.a(OplusTrack.java:223)
2022-11-15 13:18:45.364 1520-6273/? W/System.err:     at com.oplus.statistics.e.a.a$a.a(AppLaunchEventRecorder.java:143)
2022-11-15 13:18:45.364 1520-6273/? W/System.err:     at com.oplus.statistics.e.a.a$a.a(AppLaunchEventRecorder.java:102)
2022-11-15 13:18:45.364 1520-6273/? W/System.err:     at com.oplus.statistics.e.a.-$$Lambda$2fHLmT8JZlr5OzkT2xnqiCVdLEk.onAppSwitch(Unknown Source:2)
2022-11-15 13:18:45.364 1520-6273/? W/System.err:     at com.oplus.statistics.c.b.a(AppSwitchMonitor.java:97)
2022-11-15 13:18:45.364 1520-6273/? W/System.err:     at com.oplus.statistics.c.b.lambda$yF2sSrETF4wpk07pjuI1ubPVnB8(Unknown Source:0)
2022-11-15 13:18:45.364 1520-6273/? W/System.err:     at com.oplus.statistics.c.-$$Lambda$b$yF2sSrETF4wpk07pjuI1ubPVnB8.accept(Unknown Source:4)
2022-11-15 13:18:45.364 1520-6273/? W/System.err:     at java.util.concurrent.CopyOnWriteArrayList.forEach(CopyOnWriteArrayList.java:832)
2022-11-15 13:18:45.364 1520-6273/? W/System.err:     at com.oplus.statistics.c.b.b(AppSwitchMonitor.java:97)
2022-11-15 13:18:45.364 1520-6273/? W/System.err:     at com.oplus.statistics.c.b.lambda$fX4Hi7f3z5t3AW9aa0q-E6iGF5w(Unknown Source:0)
2022-11-15 13:18:45.364 1520-6273/? W/System.err:     at com.oplus.statistics.c.-$$Lambda$b$fX4Hi7f3z5t3AW9aa0q-E6iGF5w.run(Unknown Source:4)
2022-11-15 13:18:45.364 1520-6273/? W/System.err:     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
2022-11-15 13:18:45.364 1520-6273/? W/System.err:     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
2022-11-15 13:18:45.364 1520-6273/? W/System.err:     at java.lang.Thread.run(Thread.java:923)

From dart the await FlutterContactPicker.pickPhoneContact() method call gets stuck and never return. Also I noticed that the permission is asked as expected.

App crashes on Android 11

I am using fluttercontactpicker: ^4.5.1

This line of code

final contact = await FlutterContactPicker.pickPhoneContact();

opens the device contact. On selecting a contact, the app crashes and I get this error logged in the debug console.

I/Timeline( 9137): Timeline: Activity_launch_request time:528607333
D/AndroidRuntime( 9137): Shutting down VM
E/AndroidRuntime( 9137): FATAL EXCEPTION: main
E/AndroidRuntime( 9137): Process: com.mobile.app, PID: 9137
E/AndroidRuntime( 9137): java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=2015, result=-1, data=Intent { dat=content://com.android.contacts/data/441 flg=0x1 }} to activity {com.mobile.app/com.mobile.app.MainActivity}: java.lang.NullPointerException: Attempt to invoke interface method 'void io.flutter.plugin.common.MethodChannel$Result.success(java.lang.Object)' on a null object reference
E/AndroidRuntime( 9137): 	at android.app.ActivityThread.deliverResults(ActivityThread.java:5156)
E/AndroidRuntime( 9137): 	at android.app.ActivityThread.handleSendResult(ActivityThread.java:5197)
E/AndroidRuntime( 9137): 	at android.app.servertransaction.ActivityResultItem.execute(ActivityResultItem.java:51)
E/AndroidRuntime( 9137): 	at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135)
E/AndroidRuntime( 9137): 	at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95)
E/AndroidRuntime( 9137): 	at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2135)
E/AndroidRuntime( 9137): 	at android.os.Handler.dispatchMessage(Handler.java:106)
E/AndroidRuntime( 9137): 	at android.os.Looper.loop(Looper.java:236)
E/AndroidRuntime( 9137): 	at android.app.ActivityThread.main(ActivityThread.java:8059)
E/AndroidRuntime( 9137): 	at java.lang.reflect.Method.invoke(Native Method)
E/AndroidRuntime( 9137): 	at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:656)
E/AndroidRuntime( 9137): 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:967)
E/AndroidRuntime( 9137): Caused by: java.lang.NullPointerException: Attempt to invoke interface method 'void io.flutter.plugin.common.MethodChannel$Result.success(java.lang.Object)' on a null object reference
E/AndroidRuntime( 9137): 	at vn.sendo.flutter.contactpicker.ContactPickerPlugin.onActivityResult(ContactPickerPlugin.java:100)
E/AndroidRuntime( 9137): 	at io.flutter.embedding.engine.FlutterEngineConnectionRegistry$FlutterEngineActivityPluginBinding.onActivityResult(FlutterEngineConnectionRegistry.java:741)
E/AndroidRuntime( 9137): 	at io.flutter.embedding.engine.FlutterEngineConnectionRegistry.onActivityResult(FlutterEngineConnectionRegistry.java:426)
E/AndroidRuntime( 9137): 	at io.flutter.embedding.android.FlutterActivityAndFragmentDelegate.onActivityResult(FlutterActivityAndFragmentDelegate.java:749)
E/AndroidRuntime( 9137): 	at io.flutter.embedding.android.FlutterFragment.onActivityResult(FlutterFragment.java:916)
E/AndroidRuntime( 9137): 	at io.flutter.embedding.android.FlutterFragmentActivity.onActivityResult(FlutterFragmentActivity.java:534)
E/AndroidRuntime( 9137): 	at android.app.Activity.dispatchActivityResult(Activity.java:8524)
E/AndroidRuntime( 9137): 	at android.app.ActivityThread.deliverResults(ActivityThread.java:5149)
E/AndroidRuntime( 9137): 	... 11 more
D/OOMEventManagerFK( 9137): checkEventAndDumpForJE: 0
I/Process ( 9137): Sending signal. PID: 9137 SIG: 9
Lost connection to device.

Whereas,

final contact = await FlutterContactPicker.pickFullContact();

does not crash the app.

  • Flutter version:
Flutter 2.5.3 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 18116933e7 (5 weeks ago) • 2021-10-15 10:46:35 -0700
Engine • revision d3ea636dc5
Tools • Dart 2.14.4

OEM: Xiaomi

Android version 11

compileSdkVersion 30

targetSdkVersion 30

Execution failed for task ':fluttercontactpicker:compileDebugKotlin'.

The Error :

C:\flutter\.pub-cache\hosted\pub.dartlang.org\fluttercontactpicker-4.5.1\android\src\main\kotlin\me\schlaubi\fluttercontactpicker\ContactPicker.kt: (22, 115): This declaration is experimental and its usage must be marked with '@kotlin.ExperimentalStdlibApi' or '@OptIn(kotlin.ExperimentalStdlibApi::class)'

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':fluttercontactpicker:compileDebugKotlin'.
> Compilation error. See log for more details

* 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 15m 52s
Exception: Gradle task assembleDebug failed with exit code 1
Exited (sigterm)

android\build.gradle

buildscript {
    ext.kotlin_version = '1.4.31'
    repositories {
        google()
        jcenter()
        mavenCentral()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:4.1.3'
        classpath 'com.google.gms:google-services:4.3.5'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath 'com.google.firebase:firebase-crashlytics-gradle:2.1.1'
    }
}



allprojects {
    repositories {
        google()
        jcenter()
        mavenCentral()
    }
}

rootProject.buildDir = '../build'
subprojects {
    project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
    project.evaluationDependsOn(':app')
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

android\gradle\wrapper\gradle-wrapper.properties

#Fri Jun 23 08:50:38 CEST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip

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 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: 'com.google.gms.google-services'
apply plugin: 'kotlin-android'
apply plugin: 'com.google.firebase.crashlytics'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"


android {
    compileSdkVersion 30

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

    lintOptions {
        disable 'InvalidPackage'
        checkReleaseBuilds false
    }
    defaultConfig {
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
        applicationId "com.klokbox"
        minSdkVersion 21
        targetSdkVersion 30
        versionCode flutterVersionCode.toInteger()
        versionName flutterVersionName
        multiDexEnabled true
    }

    buildTypes {
        release {
            // TODO: Add your own signing config for the release build.
            signingConfig signingConfigs.debug
        }
    }

}

flutter {
    source '../..'
}

dependencies {
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
    compile 'com.android.support:multidex:1.0.1'   
    implementation "com.google.firebase:firebase-analytics:17.2.1"
    implementation "com.google.firebase:firebase-messaging:20.1.0"

}

java.lang.IllegalStateException: Reply already submitted

I use:

final PhoneContact contact = await FlutterContactPicker.pickPhoneContact();

And i found a crash error on some phones:

Fatal Exception: java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=2015, result=-1, data=Intent { dat=content://com.android.contacts/data/4673 flg=0x1 }} to activity {com.xxx.xxx/com.example.xxx.MainActivity}: java.lang.IllegalStateException: Reply already submitted
       at android.app.ActivityThread.deliverResults(ActivityThread.java:5058)
       at android.app.ActivityThread.handleSendResult(ActivityThread.java:5099)
       at android.app.servertransaction.ActivityResultItem.execute(ActivityResultItem.java:51)
       at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135)
       at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95)
       at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2164)
       at android.os.Handler.dispatchMessage(Handler.java:107)
       at android.os.Looper.loop(Looper.java:241)
       at android.app.ActivityThread.main(ActivityThread.java:7582)
       at java.lang.reflect.Method.invoke(Method.java)
       at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:492)
       at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:941)

Get phone number and email on iOS

Is not possible to get this together? I need to create a user in my app and for this I just select the contact once.

I know you mentioned is not possible but any trick to get this automatically? For example, if I get the phone first, make a search for that contact and get his email

Android Crash

fluttercontactpicker: ^3.1.0
crashed my whole app. :(

java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=2029, result=-1, data=Intent { dat=content://com.android.contacts/contacts/lookup/378i47ad7ed089a02a75.3789r3406-2A2E522A44/4149 flg=0x1 }} to activity {com.falsesilver.app/com.falsesilver.app.MainActivity}: java.lang.NullPointerException: it.getString(it.getColum…mmonDataKinds.Note.NOTE)) must not be null
E/AndroidRuntime(18548): 	at android.app.ActivityThread.deliverResults(ActivityThread.java:4905)
E/AndroidRuntime(18548): 	at android.app.ActivityThread.handleSendResult(ActivityThread.java:4946)
E/AndroidRuntime(18548): 	at android.app.servertransaction.ActivityResultItem.execute(ActivityResultItem.java:51)
E/AndroidRuntime(18548): 	at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135)
E/AndroidRuntime(18548): 	at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95)
E/AndroidRuntime(18548): 	at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2040)
E/AndroidRuntime(18548): 	at android.os.Handler.dispatchMessage(Handler.java:107)
E/AndroidRuntime(18548): 	at android.os.Looper.loop(Looper.java:224)
E/AndroidRuntime(18548): 	at android.app.ActivityThread.main(ActivityThread.java:7520)
E/AndroidRuntime(18548): 	at java.lang.reflect.Method.invoke(Native Method)
E/AndroidRuntime(18548): 	at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:539)
E/AndroidRuntime(18548): 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:950)
E/AndroidRuntime(18548): Caused by: java.lang.NullPointerException: it.getString(it.getColum…mmonDataKinds.Note.NOTE)) must not be null
E/AndroidRuntime(18548): 	at me.schlaubi.fluttercontactpicker.ContactPicker.getNote(ContactPicker.kt:112)
E/AndroidRuntime(18548): 	at me.schlaubi.fluttercontactpicker.ContactPicker.buildContact(ContactPicker.kt:99)
E/AndroidRuntime(18548): 	at me.schlaubi.fluttercontactpicker.ContactPicker.access$buildContact(ContactPicker.kt:18)
E/AndroidRuntime(18548): 	at me.schlaubi.fluttercontactpicker.ContactPicker$onActivityResult$3.invoke(ContactPicker.kt:47)
E/AndroidRuntime(18548): 	at me.schlaubi.fluttercontactpicker.ContactPicker$onActivityResult$3.invoke(ContactPicker.kt:18)
E/AndroidRuntime(18548): 	at me.schlaubi.fluttercontactpicker.ContactPicker.processContact(ContactPicker.kt:71)
E/AndroidRuntime(18548): 	at me.schlaubi.fluttercontactpicker.ContactPicker.onActivityResult(ContactPicker.kt:47)
E/AndroidRuntime(18548): 	at me.schlaubi.fluttercontactpicker.AbstractPickContext.onActivityResult(AbstractPickContext.kt:15)
E/AndroidRuntime(18548): 	at io.flutter.embedding.engine.FlutterEnginePluginRegistry$FlutterEngineActivityPluginBinding.onActivityResult(FlutterEnginePluginRegistry.java:691)
E/AndroidRuntime(18548): 	at io.flutter.embedding.engine.FlutterEnginePluginRegistry.onActivityResult(FlutterEnginePluginRegistry.java:378)
E/AndroidRuntime(18548): 	at io.flutter.embedding.android.FlutterActivityAndFragmentDelegate.onActivityResult(FlutterActivityAndFragmentDelegate.java:625)
E/AndroidRuntime(18548): 	at io.flutter.embedding.android.FlutterActivity.onActivityResult(FlutterActivity.java:583)
E/AndroidRuntime(18548): 	at android.app.Activity.dispatchActivityResult(Activity.java:8250)
E/AndroidRuntime(18548): 	at android.app.ActivityThread.deliverResults(ActivityThread.java:4898)
E/AndroidRuntime(18548): 	... 11 more


MissingPluginException on iOS

Using :

if (await FlutterContactPicker.requestPermission(force: true)) {
        final contact = await FlutterContactPicker.pickFullContact();
}

It simply fails on iOS: MissingPluginException(No implementation found for method pickContact on channel me.schlaubi.contactpicker)<…

[android] minimal permission

Recently I switched from contact_picker to this plugin and noticed that it includes "READ_CONTACTS" permission in it's manifest. This permission is only needed if you fetch full contact.

Therefore, I suggest either of following changes to communicate this properly.

  • remove this permission from lib manifest and add note in readme to add it manually if user wants to use full contact.
  • keep this permission and tell user how to remove this permission from app manifest if they are not using this feature.

I would like to make this changes based on which approach is decided.

java.lang.IllegalStateException: Reply already submitted

This is the callstack

Caused by java.lang.IllegalStateException: Reply already submitted
       at io.flutter.embedding.engine.dart.DartMessenger$Reply.reply(DartMessenger.java:35)
       at io.flutter.plugin.common.MethodChannel$IncomingMethodCallHandler$1.error(MethodChannel.java:14)
       at me.schlaubi.fluttercontactpicker.ContactPicker.onActivityResult(ContactPicker.java:70)
       at me.schlaubi.fluttercontactpicker.AbstractPickContext.onActivityResult(AbstractPickContext.java:30)
       at io.flutter.embedding.engine.FlutterEngineConnectionRegistry$FlutterEngineActivityPluginBinding.onActivityResult(FlutterEngineConnectionRegistry.java:25)
       at io.flutter.embedding.engine.FlutterEngineConnectionRegistry.onActivityResult(FlutterEngineConnectionRegistry.java:13)
       at io.flutter.embedding.android.FlutterActivityAndFragmentDelegate.onActivityResult(FlutterActivityAndFragmentDelegate.java:51)
       at io.flutter.embedding.android.FlutterFragment.onActivityResult(FlutterFragment.java:10)
       at io.flutter.embedding.android.FlutterFragmentActivity.onActivityResult(FlutterFragmentActivity.java:5)
       at android.app.Activity.dispatchActivityResult(Activity.java:8309)
       at android.app.ActivityThread.deliverResults(ActivityThread.java:5191)
       at android.app.ActivityThread.handleSendResult(ActivityThread.java:5239)
       at android.app.servertransaction.ActivityResultItem.execute(ActivityResultItem.java:51)
       at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:151)
       at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:111)
       at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2228)
       at android.os.Handler.dispatchMessage(Handler.java:107)
       at android.os.Looper.loop(Looper.java:241)
       at android.app.ActivityThread.main(ActivityThread.java:7888)
       at java.lang.reflect.Method.invoke(Method.java)
       at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:512)
       at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:998)

Unresolved reference: stackTraceToString

e: /Users/oliver/Work/Android/flutter/.pub-cache/hosted/pub.flutter-io.cn/fluttercontactpicker-4.2.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (52, 280): Unresolved reference: stackTraceToString

FAILURE: Build failed with an exception.

  • What went wrong:
    Execution failed for task ':fluttercontactpicker:compileDebugKotlin'.

Compilation error. See log for more details

  • 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 19s

Unresolved reference: lowercase

I am getting the following error while building the project:
fluttercontactpicker-4.6.0\android\src\main\kotlin\me\schlaubi\fluttercontactpicker\ContactPicker.kt: (22, 115): Unresolved reference: lowercase

Any idea how to fix this?

example - pick full contact

Hi.
Thanks for your work.

I'm trying the example project. There is some error happening when I tap "pick full contact"

Syncing files to device iPhone 13...
[VERBOSE-2:ui_dart_state.cc(209)] Unhandled Exception: MissingPluginException(No implementation found for method pickContact on channel me.schlaubi.contactpicker)
#0      MethodChannel._invokeMethod (package:flutter/src/services/platform_channel.dart:165:7)
<asynchronous suspension>
#1      MethodChannelContactPicker._runCancellable (package:contact_picker_platform_interface/src/method_channel_contact_picker.dart:33:23)
<asynchronous suspension>
#2      MethodChannelContactPicker.pickFullContact (package:contact_picker_platform_interface/src/method_channel_contact_picker.dart:23:28)
<asynchronous suspension>
#3      _MainWidgetState._buildChildren.<anonymous closure> (package:example/main.dart:126:16)
<asynchronous suspension>

Can not pick contact in Flutter Web App

Screen Shot 2021-10-28 at 10 30 03 AM

I got the above error when trying to get contact on Flutter Web.

Step:

  • I have create Flutter web app and embed it in iOS Project as a WebView
  • In that WebView on iOS, when button click on Flutter Web App. I call this:
    final PhoneContact contact =
    await FlutterContactPicker.pickPhoneContact();

FlutterContactPicker with and without () confused

Pardon me but I think this can be better for new developer thats still often confused with "()"

Maybe you could rename the "FlutterContactPicker()" so that is not accessible because the right one was "FlutterContactPicker"

Handle null phone numbers and emails

I've seen some crashes on Crashlytics where some users appear to select a full contact (Android of course), and the phone number associated with that contact is null, but the builder function in ContactPicker.kt is non-nullable, which results in the app crashing.

@DRSchlaubi are you open to me opening a pull request for this? I've got a fix for this on my forked repo. The email and phone both share the same builder, so I had to make the email builder value nullable too. From the Dart perspective nothing needed to be changed in contact_picker_platform_interface, as the email and phone fields of the classes that model that contact information are also nullable.

Below are the stack traces related to the exception.

Fatal Exception: java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=2029, result=-1, data=Intent { dat=content://com.android.contacts/contacts/lookup/1396i7a18bd1f087ba1c1.3789r21811-2D45432D31392D29454B392B31394B45.388r22690-2D45432D31392D29454B392B31394B45.2576r27447-2D45432D31392D29454B392B31394B45.1272r30854-2D45432D31392D29454B392B31394B45/31080 flg=0x1 }} to activity {com.roadid.ecrumb.app/com.example.ecrumbs_flutter.MainActivity}: java.lang.NullPointerException: number must not be null
       at android.app.ActivityThread.deliverResults(ActivityThread.java:4491)
       at android.app.ActivityThread.handleSendResult(ActivityThread.java:4534)
       at android.app.ActivityThread.-wrap20(ActivityThread.java)
       at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1752)
       at android.os.Handler.dispatchMessage(Handler.java:105)
       at android.os.Looper.loop(Looper.java:164)
       at android.app.ActivityThread.main(ActivityThread.java:6944)
       at java.lang.reflect.Method.invoke(Method.java)
       at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:327)
       at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1374)
Caused by java.lang.NullPointerException: number must not be null
       at me.schlaubi.fluttercontactpicker.ContactPicker.buildPhoneNumber(ContactPicker.java:12)
       at me.schlaubi.fluttercontactpicker.ContactPicker.buildContact(ContactPicker.java:214)
       at me.schlaubi.fluttercontactpicker.ContactPicker.access$buildContact(ContactPicker.java)
       at me.schlaubi.fluttercontactpicker.ContactPicker$onActivityResult$3.invoke(ContactPicker.java:19)
       at me.schlaubi.fluttercontactpicker.ContactPicker$onActivityResult$3.invoke(ContactPicker.java:6)
       at me.schlaubi.fluttercontactpicker.ContactPicker$processContact$1.invoke(ContactPicker.java:40)
       at me.schlaubi.fluttercontactpicker.ContactPicker$processContact$1.invoke(ContactPicker.java:2)
       at me.schlaubi.fluttercontactpicker.ContactPicker.processInput(ContactPicker.java:26)
       at me.schlaubi.fluttercontactpicker.ContactPicker.processContact(ContactPicker.java:5)
       at me.schlaubi.fluttercontactpicker.ContactPicker.onActivityResult(ContactPicker.java:19)
       at me.schlaubi.fluttercontactpicker.AbstractPickContext.onActivityResult(AbstractPickContext.java:30)
       at io.flutter.embedding.engine.FlutterEngineConnectionRegistry$FlutterEngineActivityPluginBinding.onActivityResult(FlutterEngineConnectionRegistry.java:25)
       at io.flutter.embedding.engine.FlutterEngineConnectionRegistry.onActivityResult(FlutterEngineConnectionRegistry.java:15)
       at io.flutter.embedding.android.FlutterActivityAndFragmentDelegate.onActivityResult(FlutterActivityAndFragmentDelegate.java:51)
       at io.flutter.embedding.android.FlutterActivity.onActivityResult(FlutterActivity.java:10)
       at android.app.Activity.dispatchActivityResult(Activity.java:7599)
       at android.app.ActivityThread.deliverResults(ActivityThread.java:4487)
       at android.app.ActivityThread.handleSendResult(ActivityThread.java:4534)
       at android.app.ActivityThread.-wrap20(ActivityThread.java)
       at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1752)
       at android.os.Handler.dispatchMessage(Handler.java:105)
       at android.os.Looper.loop(Looper.java:164)
       at android.app.ActivityThread.main(ActivityThread.java:6944)
       at java.lang.reflect.Method.invoke(Method.java)
       at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:327)
       at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1374)

pickEmailContact never completes if pressing BACK on Android

Hi.

Thank you for the useful plugin.

On Android, if I start pickEmailContact and await and the user does not choose a contact but presses BACK, the code hangs indefinitely.

I would suggest you detect BACK press and return a null contact. Otherwise, define an encapsulating object that has a success boolean value along with the contact (if chosen)

request contact picker issue

When i try to open a view controller, i am getting the following warning and the contact book is not opening,

Warning: Attempt to present <CNContactPickerViewController: 0x7fcc1151fb90> on <UINavigationController: 0x7fcc0c858a00> whose view is not in the window hierarchy!

Currently i am using fluttercontactpicker: 2.3.2 but in latest also facing the same issue.

when i gone through the code you are presenting on top of rootViewController, but there may be other view controllers on top of rootViewControllers, so i found the following fix, by presenting it on the top most presented viewController as shown below

private func requestPicker(result: @escaping FlutterResult, type: String, neededProperty: String) {
let controller = CNContactPickerViewController()
pickerDelegate = ContactPickerDelegate(result: result, type: type)
controller.delegate = pickerDelegate
controller.displayedPropertyKeys = [neededProperty]
var viewController = UIApplication.shared.delegate?.window??.rootViewController
while ((viewController?.presentedViewController) != nil) {
viewController = viewController?.presentedViewController;
}
viewController?.present(controller, animated: true, completion: nil)
}

let me know if you have any other points related to this. If you find this fix is needed, please update it in the next release.

Thank you

App not building

Hello,

Since migrating to your lib in 4.5.x, my app can't be built anymore, due to this error:

Running Gradle task 'assembleDebug'...
e: /Users/g123k/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (22, 115): Unresolved reference: lowercase

FAILURE: Build failed with an exception.

Fetch avatar image as Uint8List

Hello there
Is there any possible to get contact avatar as Uint8List? I am trying to get a contact and store it in my local database, including avatar, but I can't retrieve it as non widget nor transform existing formats to Uint8List for example. Thank you for any help with this :)

One method, all info

Hi!
Great plugin! I have two suggestions:

  • could you please divide fullName in name and surname?
  • could you please provide a single method to obtain (in one call) name, surname, phone number and email?

Thanks a lot!

Execution failed for task ':fluttercontactpicker:compileDebugKotlin'.

Am currently running the latest flutter 2.8.1. My code fails to compile the flutter contact picker package.
Below is the error log

Log `declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (237, 99): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (237, 115): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (238, 16): Unresolved reference: mapOf e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (238, 22): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (238, 31): Unresolved reference: to e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (238, 34): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (238, 46): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (241, 30): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (241, 48): Unresolved reference: to e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (241, 51): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (243, 58): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (243, 76): Cannot access built-in declaration 'kotlin.Array'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (243, 86): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (243, 109): Cannot access built-in declaration 'kotlin.IntArray'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (243, 120): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (244, 13): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (244, 25): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (244, 28): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (245, 13): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (245, 17): Cannot access built-in declaration 'kotlin.IntArray'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (245, 30): Unresolved reference: isNotEmpty e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (246, 21): Cannot access built-in declaration 'kotlin.IntArray'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (246, 37): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (246, 55): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (247, 17): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (249, 24): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (261, 40): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (261, 126): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (262, 48): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (262, 66): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (267, 17): Cannot access built-in declaration 'kotlin.collections.MutableList'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (268, 18): Cannot access built-in declaration 'kotlin.Any'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (269, 9): Cannot access built-in declaration 'kotlin.collections.MutableList'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPickingException.kt: (6, 38): Cannot access built-in declaration 'kotlin.Throwable'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPickingException.kt: (6, 68): Cannot access built-in declaration 'kotlin.Throwable'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (18, 9): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (19, 9): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (23, 9): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (24, 9): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (28, 19): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (29, 9): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (32, 90): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (32, 97): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (35, 17): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (36, 17): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (37, 9): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (40, 60): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (40, 67): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (43, 10): Unresolved reference: JvmStatic e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (44, 10): Cannot access built-in declaration 'kotlin.Suppress'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (56, 75): Unresolved reference: error e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (60, 24): Unresolved reference: error e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/LegacyFlutterContactPickerPlugin.kt: (7, 2): Cannot access built-in declaration 'kotlin.Suppress'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/LegacyFlutterContactPickerPlugin.kt: (15, 9): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (12, 29): Unresolved reference: mutableListOf e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (14, 57): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (14, 106): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (14, 121): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (14, 139): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (16, 123): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (16, 152): Cannot access built-in declaration 'kotlin.arrayOf'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (16, 180): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (16, 210): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (16, 230): Unresolved reference: also e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (22, 58): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (22, 76): Cannot access built-in declaration 'kotlin.Array'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (22, 86): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (22, 110): Cannot access built-in declaration 'kotlin.IntArray'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (22, 122): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (23, 29): Unresolved reference: it e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (23, 59): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (23, 72): Cannot access built-in declaration 'kotlin.Array'. Ensure that you have a dependency on the Kotlin standard library e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (23, 85): Cannot access built-in declaration 'kotlin.IntArray'. Ensure that you have a dependency on the Kotlin standard library

FAILURE: Build failed with an exception.

  • What went wrong:
    Execution failed for task ':fluttercontactpicker:compileDebugKotlin'.

Compilation error. See log for more details

  • 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 1m 18s
Running Gradle task 'assembleDebug'... 82.1s
Exception: Gradle task assembleDebug failed with exit code 1`

Flutter doctor
`Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 2.8.1, on Ubuntu 18.04.6 LTS 5.4.0-91-generic, locale en_US.UTF-8)
[✓] Android toolchain - develop for Android devices (Android SDK version 31.0.0)
[✓] Chrome - develop for the web
[✓] Android Studio (version 2020.3)
[✓] VS Code (version 1.62.3)
[✓] VS Code
[✓] Connected device (2 available)

• No issues found!`

Flutter run -v

`[ +8 ms] /home/astroboy/Android/Sdk/platform-tools/adb -s HZQL1838LAL30610746
shell getprop
[ +119 ms] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required,
skipping update.
[ +1 ms] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping
update.
[ +6 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required,
skipping update.
[ ] Artifact Instance of 'WindowsUwpEngineArtifacts' is not required,
skipping update.
[ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping
update.
[ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping
update.
[ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required,
skipping update.
[ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required,
skipping update.
[ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required,
skipping update.
[ +1 ms] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required,
skipping update.
[ +157 ms] Skipping pub get: version match.
[ +66 ms] Found plugin contact_picker_web at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/co
ntact_picker_web-4.5.1/
[ +14 ms] Found plugin device_info_plus at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/de
vice_info_plus-3.2.0/
[ +8 ms] Found plugin device_info_plus_macos at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/de
vice_info_plus_macos-2.2.0/
[ +5 ms] Found plugin device_info_plus_web at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/de
vice_info_plus_web-2.1.0/
[ +4 ms] Found plugin device_information at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/de
vice_information-0.0.4/
[ +16 ms] Found plugin fluttercontactpicker at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fl
uttercontactpicker-4.5.1/
[ +3 ms] Found plugin fluttertoast at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fl
uttertoast-8.0.8/
[ +16 ms] Found plugin libphonenumber at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/li
bphonenumber-2.0.2/
[ +5 ms] Found plugin libphonenumber_plugin at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/li
bphonenumber_plugin-0.2.3/
[ +5 ms] Found plugin libphonenumber_web at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/li
bphonenumber_web-0.2.0+1/
[ +15 ms] Found plugin path_provider at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/pa
th_provider-2.0.8/
[ +6 ms] Found plugin path_provider_android at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/pa
th_provider_android-2.0.9/
[ +12 ms] Found plugin path_provider_ios at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/pa
th_provider_ios-2.0.7/
[ +3 ms] Found plugin path_provider_linux at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/pa
th_provider_linux-2.1.4/
[ +5 ms] Found plugin path_provider_macos at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/pa
th_provider_macos-2.0.4/
[ +7 ms] Found plugin path_provider_windows at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/pa
th_provider_windows-2.0.4/
[ +249 ms] Found plugin contact_picker_web at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/co
ntact_picker_web-4.5.1/
[ +4 ms] Found plugin device_info_plus at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/de
vice_info_plus-3.2.0/
[ +2 ms] Found plugin device_info_plus_macos at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/de
vice_info_plus_macos-2.2.0/
[ +14 ms] Found plugin device_info_plus_web at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/de
vice_info_plus_web-2.1.0/
[ +3 ms] Found plugin device_information at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/de
vice_information-0.0.4/
[ +15 ms] Found plugin fluttercontactpicker at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fl
uttercontactpicker-4.5.1/
[ +2 ms] Found plugin fluttertoast at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fl
uttertoast-8.0.8/
[ +10 ms] Found plugin libphonenumber at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/li
bphonenumber-2.0.2/
[ +1 ms] Found plugin libphonenumber_plugin at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/li
bphonenumber_plugin-0.2.3/
[ ] Found plugin libphonenumber_web at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/li
bphonenumber_web-0.2.0+1/
[ +11 ms] Found plugin path_provider at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/pa
th_provider-2.0.8/
[ +3 ms] Found plugin path_provider_android at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/pa
th_provider_android-2.0.9/
[ +5 ms] Found plugin path_provider_ios at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/pa
th_provider_ios-2.0.7/
[ +3 ms] Found plugin path_provider_linux at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/pa
th_provider_linux-2.1.4/
[ +2 ms] Found plugin path_provider_macos at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/pa
th_provider_macos-2.0.4/
[ +5 ms] Found plugin path_provider_windows at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/pa
th_provider_windows-2.0.4/
[ +36 ms] Generating /home/astroboy/Man of
Code/ViewTech/sasa/v2/user-app-version2-main/android/app/src/main/java/io/flutte
r/plugins/GeneratedPluginRegistrant.java
[ +119 ms] ro.hardware = qcom
[ +110 ms] Initializing file store
[ +26 ms] Skipping target: gen_localizations
[ +15 ms] gen_dart_plugin_registrant: Starting due to
{InvalidatedReasonKind.inputChanged: The following inputs have updated contents:
/home/astroboy/Man of
Code/ViewTech/sasa/v2/user-app-version2-main/.dart_tool/package_config_subset,/h
ome/astroboy/Man of
Code/ViewTech/sasa/v2/user-app-version2-main/.dart_tool/flutter_build/generated_
main.dart}
[ +32 ms] Found plugin contact_picker_web at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/co
ntact_picker_web-4.5.1/
[ +11 ms] Found plugin device_info_plus at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/de
vice_info_plus-3.2.0/
[ +7 ms] Found plugin device_info_plus_macos at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/de
vice_info_plus_macos-2.2.0/
[ +2 ms] Found plugin device_info_plus_web at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/de
vice_info_plus_web-2.1.0/
[ +2 ms] Found plugin device_information at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/de
vice_information-0.0.4/
[ +8 ms] Found plugin fluttercontactpicker at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fl
uttercontactpicker-4.5.1/
[ +1 ms] Found plugin fluttertoast at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fl
uttertoast-8.0.8/
[ +17 ms] Found plugin libphonenumber at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/li
bphonenumber-2.0.2/
[ +1 ms] Found plugin libphonenumber_plugin at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/li
bphonenumber_plugin-0.2.3/
[ +1 ms] Found plugin libphonenumber_web at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/li
bphonenumber_web-0.2.0+1/
[ +5 ms] Found plugin path_provider at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/pa
th_provider-2.0.8/
[ ] Found plugin path_provider_android at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/pa
th_provider_android-2.0.9/
[ ] Found plugin path_provider_ios at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/pa
th_provider_ios-2.0.7/
[ +2 ms] Found plugin path_provider_linux at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/pa
th_provider_linux-2.1.4/
[ +1 ms] Found plugin path_provider_macos at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/pa
th_provider_macos-2.0.4/
[ +1 ms] Found plugin path_provider_windows at
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/pa
th_provider_windows-2.0.4/
[ +24 ms] gen_dart_plugin_registrant: Complete
[ +1 ms] Skipping target: _composite
[ +5 ms] complete
[ +17 ms] Launching lib/main.dart on Nokia 3 4 in debug mode...
[ +9 ms]
/home/astroboy/snap/flutter/common/flutter/bin/cache/dart-sdk/bin/dart
--disable-dart-dev
/home/astroboy/snap/flutter/common/flutter/bin/cache/artifacts/engine/linux-x64/
frontend_server.dart.snapshot --sdk-root
/home/astroboy/snap/flutter/common/flutter/bin/cache/artifacts/engine/common/flu
tter_patched_sdk/ --incremental --target=flutter --debugger-module-names
--experimental-emit-debug-metadata -DFLUTTER_WEB_AUTO_DETECT=true --output-dill
/tmp/flutter_tools.PKNUZR/flutter_tool.SCQYFE/app.dill --packages
/home/astroboy/Man of
Code/ViewTech/sasa/v2/user-app-version2-main/.dart_tool/package_config.json
-Ddart.vm.profile=false -Ddart.vm.product=false --enable-asserts
--track-widget-creation --filesystem-scheme org-dartlang-root
--initialize-from-dill
build/c075001b96339384a97db4862b8ab8db.cache.dill.track.dill
--enable-experiment=alternative-invalidation-strategy
[ +38 ms] executing: /home/astroboy/Android/Sdk/platform-tools/adb -s
HZQL1838LAL30610746 shell -x logcat -v time -t 1
[ +48 ms] <- compile
file:///home/astroboy/Man%20of%20Code/ViewTech/sasa/v2/user-app-version2-main/.d
art_tool/flutter_build/generated_main.dart
[ +106 ms] --------- beginning of main
12-24 12:06:02.523 E/SELinux ( 540): avc: denied { find }
for pid=3750 uid=10167 name=tethering
scontext=u:r:vendor_systemhelper_app:s0:c512,c768
tcontext=u:object_r:tethering_service:s0
tclass=service_manager permissive=0
[ +51 ms] executing: /home/astroboy/Android/Sdk/platform-tools/adb version
[ +13 ms] Android Debug Bridge version 1.0.41
Version 31.0.3-7562133
Installed as /home/astroboy/Android/Sdk/platform-tools/adb
[ +4 ms] executing: /home/astroboy/Android/Sdk/platform-tools/adb start-server
[ +14 ms] Building APK
[ +31 ms] Running Gradle task 'assembleDebug'...
[ +19 ms] Using gradle from /home/astroboy/Man of
Code/ViewTech/sasa/v2/user-app-version2-main/android/gradlew.
[ +73 ms] executing: /snap/android-studio/115/android-studio/jre/bin/java
-version
[ +271 ms] Exit code 0 from: /snap/android-studio/115/android-studio/jre/bin/java -version
[ ] openjdk version "11.0.10" 2021-01-19
OpenJDK Runtime Environment (build 11.0.10+0-b96-7249189)
OpenJDK 64-Bit Server VM (build 11.0.10+0-b96-7249189, mixed mode)
[ +4 ms] executing: [/home/astroboy/Man of Code/ViewTech/sasa/v2/user-app-version2-main/android/] /home/astroboy/Man of Code/ViewTech/sasa/v2/user-app-version2-main/android/gradlew -Pverbose=true
-Ptarget-platform=android-arm64 -Ptarget=/home/astroboy/Man of Code/ViewTech/sasa/v2/user-app-version2-main/lib/main.dart -Pbase-application-name=android.app.Application
-Pdart-defines=RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ== -Pdart-obfuscation=false -Ptrack-widget-creation=true -Ptree-shake-icons=false -Pfilesystem-scheme=org-dartlang-root assembleDebug
[+3586 ms] > Configure project :fluttercontactpicker
[ +5 ms] WARNING: The option setting 'android.enableR8=true' is deprecated.
[ ] It will be removed in version 5.0 of the Android Gradle plugin.
[ ] You will no longer be able to disable R8
[+3387 ms] > Task :app:compileFlutterBuildDebug
[ ] [ +193 ms] executing: uname -m
[ ] [ +82 ms] Exit code 0 from: uname -m
[ ] [ +1 ms] x86_64
[ ] [ +12 ms] executing: [/home/astroboy/snap/flutter/common/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[ ] [ +12 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[ ] [ ] 77d935af4db863f6abd0b9c31c7e6df2a13de57b
[ +6 ms] [ +2 ms] executing: [/home/astroboy/snap/flutter/common/flutter/] git tag --points-at 77d935af4db863f6abd0b9c31c7e6df2a13de57b
[ ] [ +30 ms] Exit code 0 from: git tag --points-at 77d935af4db863f6abd0b9c31c7e6df2a13de57b
[ ] [ ] 2.8.1
[ ] [ +26 ms] executing: [/home/astroboy/snap/flutter/common/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +1 ms] [ +23 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] [ ] origin/stable
[ +2 ms] [ ] executing: [/home/astroboy/snap/flutter/common/flutter/] git ls-remote --get-url origin
[ +1 ms] [ +16 ms] Exit code 0 from: git ls-remote --get-url origin
[ +2 ms] [ ] https://github.com/flutter/flutter.git
[ ] [ +179 ms] executing: [/home/astroboy/snap/flutter/common/flutter/] git rev-parse --abbrev-ref HEAD
[ ] [ +54 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] [ ] stable
[ ] [ +230 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[ ] [ +17 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ ] [ +1 ms] Artifact Instance of 'WindowsUwpEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ ] [ +1 ms] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ ] [ +1 ms] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] [ +4 ms] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ ] [ +3 ms] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ +4 ms] [ +325 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update.
[ ] [ +1 ms] Artifact Instance of 'GradleWrapper' is not required, skipping update.
[ ] [ +4 ms] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update.
[ ] [ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ +8 ms] [ +1 ms] Artifact Instance of 'WindowsUwpEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] [ +1 ms] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] [ +1 ms] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ +1 ms] [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'PubDependencies' is not required, skipping update.
[ +153 ms] [ +146 ms] Initializing file store
[ ] [ +50 ms] Done initializing file store
[ +199 ms] [ +162 ms] Skipping target: gen_localizations
[ ] [ +31 ms] Skipping target: gen_dart_plugin_registrant
[+1498 ms] [+1500 ms] Skipping target: kernel_snapshot
[ +103 ms] [ +36 ms] invalidated build due to missing files: /home/astroboy/Man of Code/ViewTech/sasa/v2/user-app-version2-main/DOES_NOT_EXIST_RERUN_FOR_WILDCARD108678776
[ +897 ms] [ +907 ms] debug_android_application: Starting due to {InvalidatedReasonKind.inputMissing: The following inputs were missing: /home/astroboy/Man of
Code/ViewTech/sasa/v2/user-app-version2-main/DOES_NOT_EXIST_RERUN_FOR_WILDCARD108678776}
[+3298 ms] [+3338 ms] Manifest contained wildcard assets. Inserting missing file into build graph to force rerun. for more information see #56466.
[ +299 ms] [ +270 ms] debug_android_application: Complete
[+1001 ms] [+1005 ms] Persisting file store
[ ] [ +33 ms] Done persisting file store
[ +99 ms] [ +40 ms] build succeeded.
[ ] [ +52 ms] "flutter assemble" took 8,052ms.
[ +299 ms] [ +294 ms] ensureAnalyticsSent: 284ms
[ ] [ +1 ms] Running shutdown hooks
[ ] [ ] Shutdown hooks complete
[ ] [ +5 ms] exiting with code 0
[ +499 ms] > Task :app:packLibsflutterBuildDebug UP-TO-DATE
[ ] > Task :app:preBuild UP-TO-DATE
[ +2 ms] > Task :app:preDebugBuild UP-TO-DATE
[ +2 ms] > Task :device_info_plus:preBuild UP-TO-DATE
[ ] > Task :device_info_plus:preDebugBuild UP-TO-DATE
[ ] > Task :device_info_plus:compileDebugAidl NO-SOURCE
[ ] > Task :device_information:preBuild UP-TO-DATE
[ ] > Task :device_information:preDebugBuild UP-TO-DATE
[ ] > Task :device_information:compileDebugAidl NO-SOURCE
[ ] > Task :fluttercontactpicker:preBuild UP-TO-DATE
[ ] > Task :fluttercontactpicker:preDebugBuild UP-TO-DATE
[ +92 ms] > Task :fluttercontactpicker:compileDebugAidl NO-SOURCE
[ ] > Task :fluttertoast:preBuild UP-TO-DATE
[ ] > Task :fluttertoast:preDebugBuild UP-TO-DATE
[ ] > Task :fluttertoast:compileDebugAidl NO-SOURCE
[ +2 ms] > Task :libphonenumber:preBuild UP-TO-DATE
[ ] > Task :libphonenumber:preDebugBuild UP-TO-DATE
[ +3 ms] > Task :libphonenumber:compileDebugAidl NO-SOURCE
[ ] > Task :libphonenumber_plugin:preBuild UP-TO-DATE
[ ] > Task :libphonenumber_plugin:preDebugBuild UP-TO-DATE
[ ] > Task :libphonenumber_plugin:compileDebugAidl NO-SOURCE
[ ] > Task :path_provider_android:preBuild UP-TO-DATE
[ +7 ms] > Task :path_provider_android:preDebugBuild UP-TO-DATE
[ ] > Task :path_provider_android:compileDebugAidl NO-SOURCE
[ ] > Task :app:compileDebugAidl NO-SOURCE
[ ] > Task :device_info_plus:packageDebugRenderscript NO-SOURCE
[ ] > Task :device_information:packageDebugRenderscript NO-SOURCE
[ ] > Task :fluttercontactpicker:packageDebugRenderscript NO-SOURCE
[ ] > Task :fluttertoast:packageDebugRenderscript NO-SOURCE
[ ] > Task :libphonenumber:packageDebugRenderscript NO-SOURCE
[ ] > Task :libphonenumber_plugin:packageDebugRenderscript NO-SOURCE
[ ] > Task :path_provider_android:packageDebugRenderscript NO-SOURCE
[ ] > Task :app:compileDebugRenderscript NO-SOURCE
[ ] > Task :app:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :device_info_plus:writeDebugAarMetadata UP-TO-DATE
[ ] > Task :device_information:writeDebugAarMetadata UP-TO-DATE
[ ] > Task :fluttercontactpicker:writeDebugAarMetadata UP-TO-DATE
[ ] > Task :fluttertoast:writeDebugAarMetadata UP-TO-DATE
[ ] > Task :libphonenumber:writeDebugAarMetadata UP-TO-DATE
[ ] > Task :libphonenumber_plugin:writeDebugAarMetadata UP-TO-DATE
[ ] > Task :path_provider_android:writeDebugAarMetadata UP-TO-DATE
[ +178 ms] > Task :app:checkDebugAarMetadata UP-TO-DATE
[ ] > Task :app:cleanMergeDebugAssets
[ ] > Task :app:mergeDebugShaders UP-TO-DATE
[ ] > Task :app:compileDebugShaders NO-SOURCE
[ ] > Task :app:generateDebugAssets UP-TO-DATE
[ ] > Task :device_info_plus:mergeDebugShaders UP-TO-DATE
[ ] > Task :device_info_plus:compileDebugShaders NO-SOURCE
[ ] > Task :device_info_plus:generateDebugAssets UP-TO-DATE
[ ] > Task :device_info_plus:packageDebugAssets UP-TO-DATE
[ ] > Task :device_information:mergeDebugShaders UP-TO-DATE
[ ] > Task :device_information:compileDebugShaders NO-SOURCE
[ ] > Task :device_information:generateDebugAssets UP-TO-DATE
[ ] > Task :device_information:packageDebugAssets UP-TO-DATE
[ ] > Task :fluttercontactpicker:mergeDebugShaders UP-TO-DATE
[ ] > Task :fluttercontactpicker:compileDebugShaders NO-SOURCE
[ ] > Task :fluttercontactpicker:generateDebugAssets UP-TO-DATE
[ ] > Task :fluttercontactpicker:packageDebugAssets UP-TO-DATE
[ ] > Task :fluttertoast:mergeDebugShaders UP-TO-DATE
[ ] > Task :fluttertoast:compileDebugShaders NO-SOURCE
[ +1 ms] > Task :fluttertoast:generateDebugAssets UP-TO-DATE
[ +1 ms] > Task :fluttertoast:packageDebugAssets UP-TO-DATE
[ +1 ms] > Task :libphonenumber:mergeDebugShaders UP-TO-DATE
[ +25 ms] > Task :libphonenumber:compileDebugShaders NO-SOURCE
[ +2 ms] > Task :libphonenumber:generateDebugAssets UP-TO-DATE
[ +6 ms] > Task :libphonenumber:packageDebugAssets UP-TO-DATE
[ +1 ms] > Task :libphonenumber_plugin:mergeDebugShaders UP-TO-DATE
[ +1 ms] > Task :libphonenumber_plugin:compileDebugShaders NO-SOURCE
[ ] > Task :libphonenumber_plugin:generateDebugAssets UP-TO-DATE
[ ] > Task :libphonenumber_plugin:packageDebugAssets UP-TO-DATE
[ ] > Task :path_provider_android:mergeDebugShaders UP-TO-DATE
[ ] > Task :path_provider_android:compileDebugShaders NO-SOURCE
[ ] > Task :path_provider_android:generateDebugAssets UP-TO-DATE
[ ] > Task :path_provider_android:packageDebugAssets UP-TO-DATE
[ +52 ms] > Task :app:mergeDebugAssets
[ +697 ms] > Task :app:copyFlutterAssetsDebug
[ ] > Task :app:generateDebugResValues UP-TO-DATE
[ ] > Task :app:generateDebugResources UP-TO-DATE
[ +3 ms] > Task :device_info_plus:compileDebugRenderscript NO-SOURCE
[ ] > Task :device_info_plus:generateDebugResValues UP-TO-DATE
[ ] > Task :device_info_plus:generateDebugResources UP-TO-DATE
[ ] > Task :device_info_plus:packageDebugResources UP-TO-DATE
[ ] > Task :device_information:compileDebugRenderscript NO-SOURCE
[ ] > Task :device_information:generateDebugResValues UP-TO-DATE
[ ] > Task :device_information:generateDebugResources UP-TO-DATE
[ ] > Task :device_information:packageDebugResources UP-TO-DATE
[ ] > Task :fluttercontactpicker:compileDebugRenderscript NO-SOURCE
[ ] > Task :fluttercontactpicker:generateDebugResValues UP-TO-DATE
[ ] > Task :fluttercontactpicker:generateDebugResources UP-TO-DATE
[ ] > Task :fluttercontactpicker:packageDebugResources UP-TO-DATE
[ ] > Task :fluttertoast:compileDebugRenderscript NO-SOURCE
[ ] > Task :fluttertoast:generateDebugResValues UP-TO-DATE
[ ] > Task :fluttertoast:generateDebugResources UP-TO-DATE
[ ] > Task :fluttertoast:packageDebugResources UP-TO-DATE
[ ] > Task :libphonenumber:compileDebugRenderscript NO-SOURCE
[ ] > Task :libphonenumber:generateDebugResValues UP-TO-DATE
[ ] > Task :libphonenumber:generateDebugResources UP-TO-DATE
[ ] > Task :libphonenumber:packageDebugResources UP-TO-DATE
[ ] > Task :libphonenumber_plugin:compileDebugRenderscript NO-SOURCE
[ ] > Task :libphonenumber_plugin:generateDebugResValues UP-TO-DATE
[ ] > Task :libphonenumber_plugin:generateDebugResources UP-TO-DATE
[ ] > Task :libphonenumber_plugin:packageDebugResources UP-TO-DATE
[ ] > Task :path_provider_android:compileDebugRenderscript NO-SOURCE
[ ] > Task :path_provider_android:generateDebugResValues UP-TO-DATE
[ ] > Task :path_provider_android:generateDebugResources UP-TO-DATE
[ ] > Task :path_provider_android:packageDebugResources UP-TO-DATE
[ ] > Task :app:mergeDebugResources UP-TO-DATE
[ +95 ms] > Task :app:createDebugCompatibleScreenManifests UP-TO-DATE
[ ] > Task :app:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :device_info_plus:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :device_info_plus:processDebugManifest UP-TO-DATE
[ ] > Task :device_information:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :device_information:processDebugManifest UP-TO-DATE
[ +3 ms] > Task :fluttercontactpicker:extractDeepLinksDebug UP-TO-DATE
[ +1 ms] > Task :fluttercontactpicker:processDebugManifest UP-TO-DATE
[ +1 ms] > Task :fluttertoast:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :fluttertoast:processDebugManifest UP-TO-DATE
[ +1 ms] > Task :libphonenumber:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :libphonenumber:processDebugManifest UP-TO-DATE
[ +4 ms] > Task :libphonenumber_plugin:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :libphonenumber_plugin:processDebugManifest UP-TO-DATE
[ ] > Task :path_provider_android:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :path_provider_android:processDebugManifest UP-TO-DATE
[ +3 ms] > Task :app:processDebugMainManifest UP-TO-DATE
[ ] > Task :app:processDebugManifest UP-TO-DATE
[ ] > Task :app:processDebugManifestForPackage UP-TO-DATE
[ ] > Task :device_info_plus:compileDebugLibraryResources UP-TO-DATE
[ +75 ms] > Task :device_info_plus:parseDebugLocalResources UP-TO-DATE
[ ] > Task :device_info_plus:generateDebugRFile UP-TO-DATE
[ ] > Task :device_information:compileDebugLibraryResources UP-TO-DATE
[ ] > Task :device_information:parseDebugLocalResources UP-TO-DATE
[ +99 ms] > Task :device_information:generateDebugRFile UP-TO-DATE
[ ] > Task :fluttercontactpicker:compileDebugLibraryResources UP-TO-DATE
[ ] > Task :fluttercontactpicker:parseDebugLocalResources UP-TO-DATE
[ ] > Task :fluttercontactpicker:generateDebugRFile UP-TO-DATE
[ ] > Task :fluttertoast:compileDebugLibraryResources UP-TO-DATE
[ ] > Task :fluttertoast:parseDebugLocalResources UP-TO-DATE
[ +98 ms] > Task :fluttertoast:generateDebugRFile UP-TO-DATE
[ ] > Task :libphonenumber:compileDebugLibraryResources UP-TO-DATE
[ ] > Task :libphonenumber:parseDebugLocalResources UP-TO-DATE
[ +101 ms] > Task :libphonenumber:generateDebugRFile UP-TO-DATE
[ +1 ms] > Task :libphonenumber_plugin:compileDebugLibraryResources UP-TO-DATE
[ +1 ms] > Task :libphonenumber_plugin:parseDebugLocalResources UP-TO-DATE
[ +1 ms] > Task :libphonenumber_plugin:generateDebugRFile UP-TO-DATE
[ ] > Task :path_provider_android:compileDebugLibraryResources UP-TO-DATE
[ ] > Task :path_provider_android:parseDebugLocalResources UP-TO-DATE
[ +1 ms] > Task :path_provider_android:generateDebugRFile UP-TO-DATE
[ +94 ms] > Task :app:processDebugResources UP-TO-DATE
[ +3 ms] > Task :device_info_plus:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :device_info_plus:javaPreCompileDebug UP-TO-DATE
[ +97 ms] > Task :device_info_plus:compileDebugJavaWithJavac UP-TO-DATE
[ +7 ms] > Task :device_info_plus:bundleLibCompileToJarDebug UP-TO-DATE
[ +3 ms] > Task :device_information:generateDebugBuildConfig UP-TO-DATE
[ +1 ms] > Task :device_information:javaPreCompileDebug UP-TO-DATE
[ ] > Task :device_information:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :device_information:bundleLibCompileToJarDebug UP-TO-DATE
[ ] > Task :fluttercontactpicker:generateDebugBuildConfig UP-TO-DATE
[+4091 ms] > Task :fluttercontactpicker:compileDebugKotlin
[ +1 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(16, 9): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +14 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(16, 83): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +9 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(17, 24): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +9 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(21, 24): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(22, 9): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ ] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(25, 6): Cannot access built-in declaration 'kotlin.Suppress'. Ensure that you have a dependency on the Kotlin standard library
[ +26 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(27, 9): Cannot access built-in declaration 'kotlin.Any'. Ensure that you have a dependency on the Kotlin standard library
[ ] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(27, 20): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(28, 90): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +11 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(28, 176): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(28, 185): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ +15 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(28, 213): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ ] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(29, 90): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(29, 176): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(29, 185): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(29, 213): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ +17 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(30, 85): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +6 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(30, 160): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ +19 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(30, 169): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ +5 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(30, 197): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(31, 39): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(31, 62): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(33, 70): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(33, 88): Cannot access built-in declaration 'kotlin.Array'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(33, 98): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +4 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(33, 121): Cannot access built-in declaration 'kotlin.IntArray'. Ensure that you have a dependency on the Kotlin standard library
[ +4 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(33, 132): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(34, 25): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +13 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(34, 37): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +6 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(34, 54): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(35, 32): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(35, 40): Cannot access built-in declaration 'kotlin.IntArray'. Ensure that you have a dependency on the Kotlin standard library
[ +8 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(35, 53): Unresolved reference: isNotEmpty
[ ] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(35, 69): Cannot access built-in declaration 'kotlin.IntArray'. Ensure that you have a dependency on the Kotlin standard library
[ +11 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(35, 82): Unresolved reference: first
[ +1 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(35, 108): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +4 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractFlutterContactPickerPlugin.kt:
(42, 28): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractPickContext.kt: (8,
29): Unresolved reference: mutableListOf
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractPickContext.kt: (14,
48): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractPickContext.kt: (14,
65): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractPickContext.kt: (14,
86): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ +5 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractPickContext.kt: (15,
32): Unresolved reference: it
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractPickContext.kt: (15,
52): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/AbstractPickContext.kt: (15,
65): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +10 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (19, 139):
Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (19, 173):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (22, 44):
Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (22, 102):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (22, 115):
Unresolved reference: lowercase
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (24, 96):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (24, 104):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (24, 127):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (24, 132):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (24, 144):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (24, 174):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +6 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (25, 9):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +4 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (25, 13):
Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ +10 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (25, 14):
Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (25, 31):
Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (27, 16):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (27, 20):
Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (28, 13):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (30, 20):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (35, 42):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (36, 21):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (37, 30):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (37, 67):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (40, 48):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (40, 65):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (40, 86):
Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ +8 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (42, 13):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (42, 19):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (43, 44):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (43, 58):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +11 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (43, 95):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (44, 44):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (44, 58):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (44, 101):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (45, 44):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (45, 60):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (45, 83):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (49, 13):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (49, 19):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (49, 27):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (50, 29):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (50, 280):
Unresolved reference: stackTraceToString
[ +4 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (56, 54):
Cannot access built-in declaration 'kotlin.Function1'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (56, 63):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +12 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (58, 18):
Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (59, 25):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (60, 20):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (63, 9):
Cannot access built-in declaration 'kotlin.Function1'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (66, 64):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (66, 87):
Cannot access built-in declaration 'kotlin.Function3'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (66, 114):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (66, 118):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +31 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (66, 126):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (68, 13):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (68, 39):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (68, 49):
Cannot access built-in declaration 'kotlin.Function3'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (70, 16):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (70, 39):
Cannot access built-in declaration 'kotlin.Function3'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (73, 64):
Cannot access built-in declaration 'kotlin.Function3'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (73, 91):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (73, 95):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +8 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (73, 103):
Cannot access built-in declaration 'kotlin.Any'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (74, 9):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (76, 74):
Unresolved reference: use
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (77, 17):
Unresolved reference: require
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (77, 25):
Unresolved reference: it
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (78, 17):
Unresolved reference: it
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (79, 37):
Cannot access built-in declaration 'kotlin.Function3'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (79, 51):
Unresolved reference: it
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (80, 29):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (80, 37):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (82, 25):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (86, 78):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (86, 82):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (86, 90):
Cannot access built-in declaration 'kotlin.Any'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (87, 32):
Cannot access built-in declaration 'kotlin.Long'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (87, 47):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (87, 88):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (88, 19):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +7 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (88, 23):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (88, 31):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (89, 33):
Unresolved reference: mutableListOf
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (89, 47):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (89, 51):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (89, 59):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (90, 22):
Unresolved reference: mutableListOf
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (90, 36):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (90, 40):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (90, 48):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (91, 22):
Unresolved reference: mutableListOf
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (91, 36):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +4 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (91, 40):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +25 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (91, 48):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (92, 25):
Unresolved reference: mutableListOf
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (92, 39):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (92, 43):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (92, 51):
Cannot access built-in declaration 'kotlin.Any'. Ensure that you have a dependency on the Kotlin standard library
[ +4 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (93, 19):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (94, 22):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +4 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (95, 18):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (96, 25):
Unresolved reference: mutableListOf
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (96, 39):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (96, 43):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +12 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (96, 51):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (97, 28):
Unresolved reference: mutableListOf
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (97, 42):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +8 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (97, 46):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (97, 54):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (98, 21):
Cannot access built-in declaration 'kotlin.ByteArray'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (99, 119):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (99, 137):
Cannot access built-in declaration 'kotlin.arrayOf'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (99, 145):
Cannot access built-in declaration 'kotlin.Long'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (99, 155):
Cannot access built-in declaration 'kotlin.Long'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (99, 180):
Unresolved reference: use
[ +14 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (100, 13):
Unresolved reference: require
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (100, 21):
Unresolved reference: it
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (100, 35):
Unresolved reference: it
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (102, 17):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (102, 23):
Unresolved reference: it
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (102, 36):
Unresolved reference: it
[ +5 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (102, 89):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (103, 57):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (103, 78):
Val cannot be reassigned
[ +16 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (103, 96):
Function '' should return Unit to be used by corresponding operator '+='
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (103, 99):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (103,
121): Unresolved reference: it
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (104, 60):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (104, 99):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (104,
117): Unresolved reference: it
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (105, 71):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (105, 92):
Val cannot be reassigned
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (105,
102): Function '' should return Unit to be used by corresponding operator '+='
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (105,
105): Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (105,
118): Unresolved reference: it
[ +4 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (106, 60):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (106, 99):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (106,
116): Unresolved reference: it
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (107, 69):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (107, 90):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (107, 97):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +12 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (107,
107): Unresolved reference: it
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (108, 59):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (108, 80):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (108, 87):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (108, 95):
Unresolved reference: it
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (109, 67):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (109, 88):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (109, 98):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (109,
109): Unresolved reference: it
[ +10 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (110, 63):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (110, 84):
Val cannot be reassigned
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (110, 94):
Function '' should return Unit to be used by corresponding operator '+='
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (110, 97):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (110,
111): Unresolved reference: it
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (111, 65):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (111, 86):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (111, 92):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (111, 99):
Unresolved reference: it
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (112, 80):
Val cannot be reassigned
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (112, 93):
Function '' should return Unit to be used by corresponding operator '+='
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (112, 96):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (112,
113): Unresolved reference: it
[ +18 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (114, 22):
Unresolved reference: it
[ +10 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (116, 16):
Unresolved reference: mapOf
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (116, 29):
Unresolved reference: to
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (116, 32):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (116, 58):
Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (116, 89):
Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (116,
112): Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (116,
135): Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (116,
154): Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (116,
157): Cannot access built-in declaration 'kotlin.ByteArray'. Ensure that you have a dependency on the Kotlin standard library
[ +5 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (116,
171): Unresolved reference: to
[ +4 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (116,
174): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (116,
190): Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (116,
193): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (116,
208): Unresolved reference: to
[ +6 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (116,
211): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +9 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (116,
228): Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (116,
258): Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (119, 41):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (119, 54):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (119, 67):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (119,
128): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (121, 38):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (121, 51):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (121, 64):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (121,
117): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (123, 37):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +7 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (123, 50):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (123, 63):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (123,
122): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (125, 74):
Cannot access built-in declaration 'kotlin.ByteArray'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (128, 34):
Unresolved reference: use
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (129, 40):
Unresolved reference: use
[ +4 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (130, 61):
Unresolved reference: it
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (132, 13):
Unresolved reference: it
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (136, 51):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (136, 55):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (136, 63):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (137, 28):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (137, 45):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (138, 28):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (138, 45):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (140, 16):
Unresolved reference: mapOf
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (140, 30):
Unresolved reference: to
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (140, 33):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (140, 48):
Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (140, 51):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +6 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (143, 76):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (143, 80):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (143, 88):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (144, 27):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (144, 41):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (144, 92):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (145, 34):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (145, 51):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (145,
102): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (147, 57):
Cannot access built-in declaration 'kotlin.CharSequence'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (147, 90):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (147, 96):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (147,
109): Cannot access built-in declaration 'kotlin.CharSequence'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (148, 25):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (148, 42):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (148, 93):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (150, 31):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (150, 45):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (150, 96):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +7 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (151, 37):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (151, 54):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (151,
105): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (152, 66):
Cannot access built-in declaration 'kotlin.CharSequence'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (152,
103): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (152,
113): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (152,
129): Cannot access built-in declaration 'kotlin.CharSequence'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (153, 16):
Unresolved reference: mapOf
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (153, 28):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (154, 22):
Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (154, 25):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (155, 28):
Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (155, 31):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (159, 48):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (159, 52):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (159, 60):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (160, 27):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (160, 44):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (160,
101): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (161, 26):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (161, 47):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (161, 61):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +5 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (161,
118): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (162, 55):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (162, 77):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (162, 94):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (162,
151): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (163, 55):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (164, 55):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (165, 55):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (166, 55):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (167, 55):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (168, 55):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (169, 55):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (170, 55):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +8 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (171, 55):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (172, 55):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (173, 55):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (174, 55):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (175, 55):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (176, 55):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (177, 21):
Unresolved reference: error
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (177, 43):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (180, 16):
Unresolved reference: mapOf
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (180, 29):
Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (180, 32):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (180, 45):
Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (180, 48):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (183, 67):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (183, 71):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (183, 79):
Cannot access built-in declaration 'kotlin.Any'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (184, 27):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +9 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (184, 41):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (184,
106): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (185, 34):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (185, 51):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (185,
116): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (187, 71):
Cannot access built-in declaration 'kotlin.CharSequence'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (187,
104): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (187,
110): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (187,
123): Cannot access built-in declaration 'kotlin.CharSequence'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (188, 27):
Unresolved reference: listOf
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (188, 41):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (188, 58):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (188,
123): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (189, 28):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (189, 45):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (189,
110): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (190, 35):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (190, 52):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (190,
117): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (191, 27):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (191, 44):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (191,
109): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (192, 29):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +4 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (192, 46):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (192,
111): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (193, 31):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (193, 48):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (193,
113): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (194, 30):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (194, 47):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (194,
112): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +12 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (196, 16):
Unresolved reference: mapOf
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (197, 23):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (198, 31):
Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (199, 25):
Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (199, 28):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (200, 32):
Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (200, 35):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (201, 24):
Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (201, 27):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (202, 26):
Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (202, 29):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (203, 28):
Unresolved reference: to
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (203, 31):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (204, 27):
Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (204, 30):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (208, 44):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (208, 48):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (208, 56):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (209, 32):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (209, 49):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (209,
112): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (210, 33):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (210, 50):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (210,
113): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (211, 31):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (211, 48):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (211,
105): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (212, 31):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (212, 48):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (212,
111): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (213, 16):
Unresolved reference: mapOf
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (213, 34):
Unresolved reference: to
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (213, 37):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +8 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (213, 61):
Unresolved reference: to
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (213, 64):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (213, 87):
Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (213, 90):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (213,
111): Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (213,
114): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (216, 61):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (216, 75):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (216, 79):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (216, 87):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (216, 98):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (216,
102): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (216,
110): Cannot access built-in declaration 'kotlin.Any'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (217, 13):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (217, 18):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (220, 31):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +5 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (220, 48):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (220,
105): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (220,
120): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +8 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (221, 16):
Unresolved reference: mapOf
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (221, 33):
Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (221, 36):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (221, 46):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (221, 55):
Unresolved reference: to
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (221, 58):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (224, 71):
Cannot access built-in declaration 'kotlin.Suppress'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (224,
112): Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (224,
116): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (224,
124): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (225, 29):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +34 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (225, 46):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +11 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (225,
100): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (225,
109): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (226, 16):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (226, 90):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (226,
135): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (226,
157): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (229, 72):
Cannot access built-in declaration 'kotlin.Suppress'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (229,
113): Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (229,
117): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (229,
125): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (230, 30):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (230, 47):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +4 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (230,
101): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (230,
108): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +8 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (231, 16):
Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (231, 90):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +8 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (231,
135): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +7 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (231,
151): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (234, 84):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (234,
107): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +9 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (234,
125): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (234,
139): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (234,
148): Cannot access built-in declaration 'kotlin.collections.Map'. Ensure that you have a dependency on the Kotlin standard library
[ +6 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (234,
152): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (234,
160): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (235, 27):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (235, 41):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (235, 56):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (236, 34):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (236, 51):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (236, 66):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (237, 60):
Cannot access built-in declaration 'kotlin.CharSequence'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (237, 93):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (237, 99):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (237,
115): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +5 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (238, 16):
Unresolved reference: mapOf
[ +15 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (238, 22):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (238, 31):
Unresolved reference: to
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (238, 34):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (238, 46):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (241, 30):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (241, 48):
Unresolved reference: to
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (241, 51):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (243, 58):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (243, 76):
Cannot access built-in declaration 'kotlin.Array'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (243, 86):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ +14 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (243,
109): Cannot access built-in declaration 'kotlin.IntArray'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (243,
120): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (244, 13):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (244, 25):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (244, 28):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (245, 13):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +4 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (245, 17):
Cannot access built-in declaration 'kotlin.IntArray'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (245, 30):
Unresolved reference: isNotEmpty
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (246, 21):
Cannot access built-in declaration 'kotlin.IntArray'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (246, 37):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (246, 55):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (247, 17):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (249, 24):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (261, 40):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (261,
126): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (262, 48):
Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (262, 66):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (267, 17):
Cannot access built-in declaration 'kotlin.collections.MutableList'. Ensure that you have a dependency on the Kotlin standard library
[ +11 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (268, 18):
Cannot access built-in declaration 'kotlin.Any'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (269, 9):
Cannot access built-in declaration 'kotlin.collections.MutableList'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPickingException.kt:
(6, 38): Cannot access built-in declaration 'kotlin.Throwable'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPickingException.kt:
(6, 68): Cannot access built-in declaration 'kotlin.Throwable'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (18, 9):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (19, 9):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ ] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (23, 9):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (24, 9):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (28, 19):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (29, 9):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (32, 90):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (32, 97):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (35, 17):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (36, 17):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (37, 9):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +3 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (40, 60):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (40, 67):
Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ ] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (43, 10):
Unresolved reference: JvmStatic
[ ] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (44, 10):
Cannot access built-in declaration 'kotlin.Suppress'. Ensure that you have a dependency on the Kotlin standard library
[ ] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (56, 75):
Unresolved reference: error
[ ] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/FlutterContactPickerPlugin.kt: (60, 24):
Unresolved reference: error
[ ] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/LegacyFlutterContactPickerPlugin.kt: (7,
2): Cannot access built-in declaration 'kotlin.Suppress'. Ensure that you have a dependency on the Kotlin standard library
[ ] e:
/home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/LegacyFlutterContactPickerPlugin.kt: (15,
9): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ +6 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (12, 29):
Unresolved reference: mutableListOf
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (14, 57):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (14,
106): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (14,
121): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (14,
139): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (16,
123): Cannot access built-in declaration 'kotlin.Unit'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (16,
152): Cannot access built-in declaration 'kotlin.arrayOf'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (16,
180): Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (16,
210): Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +2 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (16,
230): Unresolved reference: also
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (22, 58):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ +1 ms] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (22, 76):
Cannot access built-in declaration 'kotlin.Array'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (22, 86):
Cannot access built-in declaration 'kotlin.String'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (22,
110): Cannot access built-in declaration 'kotlin.IntArray'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (22,
122): Cannot access built-in declaration 'kotlin.Boolean'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (23, 29):
Unresolved reference: it
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (23, 59):
Cannot access built-in declaration 'kotlin.Int'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (23, 72):
Cannot access built-in declaration 'kotlin.Array'. Ensure that you have a dependency on the Kotlin standard library
[ ] e: /home/astroboy/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.5.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/PermissionUtil.kt: (23, 85):
Cannot access built-in declaration 'kotlin.IntArray'. Ensure that you have a dependency on the Kotlin standard library
[ ] FAILURE: Build failed with an exception.
[ ] * What went wrong:
[ ] Execution failed for task ':fluttercontactpicker:compileDebugKotlin'.
[ ] > Compilation error. See log for more details
[ ] * 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
[ +3 ms] > Task :fluttercontactpicker:compileDebugKotlin FAILED
[ +1 ms] Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
[ +1 ms] Use '--warning-mode all' to show the individual deprecation warnings.
[ +1 ms] See https://docs.gradle.org/6.7/userguide/command_line_interface.html#sec:command_line_warnings
[ ] 96 actionable tasks: 5 executed, 91 up-to-date
[ +35 ms] Running Gradle task 'assembleDebug'... (completed in 22.9s)
[+15241 ms] Exception: Gradle task assembleDebug failed with exit code 1
[ +4 ms] "flutter run" took 40,193ms.
[ +13 ms]
#0 throwToolExit (package:flutter_tools/src/base/common.dart:10:3)
#1 RunCommand.runCommand (package:flutter_tools/src/commands/run.dart:674:9)

#2 FlutterCommand.run. (package:flutter_tools/src/runner/flutter_command.dart:1140:27)

#3 AppContext.run. (package:flutter_tools/src/base/context.dart:150:19)

#4 CommandRunner.runCommand (package:args/command_runner.dart:209:13)

#5 FlutterCommandRunner.runCommand. (package:flutter_tools/src/runner/flutter_command_runner.dart:288:9)

#6 AppContext.run. (package:flutter_tools/src/base/context.dart:150:19)

#7 FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:236:5)

#8 run.. (package:flutter_tools/runner.dart:62:9)

#9 AppContext.run. (package:flutter_tools/src/base/context.dart:150:19)

#10 main (package:flutter_tools/executable.dart:94:3)

[ +338 ms] ensureAnalyticsSent: 333ms
[ +5 ms] Running shutdown hooks
[ +3 ms] Shutdown hooks complete
[ +31 ms] exiting with code 1
`

Compatibility Issues with Flutter 3.0

Hi there,

first let me thank you for your cool contact picker project!

With Flutter 3.0 and fluttercontactpicker: ^4.6.0 I get the following compilation errors:

e: C:\Users\User\flutter\.pub-cache\hosted\pub.dartlang.org\fluttercontactpicker-4.6.0\android\src\main\kotlin\me\schlaubi\fluttercontactpicker\LegacyFlutterContactPickerPlugin.kt: (20, 21): Type mismatch: inferred type is Activity? but Activity was expected
e: C:\Users\User\flutter\.pub-cache\hosted\pub.dartlang.org\fluttercontactpicker-4.6.0\android\src\main\kotlin\me\schlaubi\fluttercontactpicker\PermissionUtil.kt: (11, 1): Object 'PermissionUtil' is not abstract and does not implement abstract member public abstract fun onRequestPermissionsResult(p0: Int, p1: Array<(out) String!>, p2: IntArray): Boolean defined in io.flutter.plugin.common.PluginRegistry.RequestPermissionsResultListener
e: C:\Users\User\flutter\.pub-cache\hosted\pub.dartlang.org\fluttercontactpicker-4.6.0\android\src\main\kotlin\me\schlaubi\fluttercontactpicker\PermissionUtil.kt: (22, 5): 'onRequestPermissionsResult' overrides nothing
e: C:\Users\User\flutter\.pub-cache\hosted\pub.dartlang.org\fluttercontactpicker-4.6.0\android\src\main\kotlin\me\schlaubi\fluttercontactpicker\PermissionUtil.kt: (23, 72): Type mismatch: inferred type is Array<CapturedType(out String)>? but Array<(out) String!> was expected
e: C:\Users\User\flutter\.pub-cache\hosted\pub.dartlang.org\fluttercontactpicker-4.6.0\android\src\main\kotlin\me\schlaubi\fluttercontactpicker\PermissionUtil.kt: (23, 85): Type mismatch: inferred type is IntArray? but IntArray was expected

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':fluttercontactpicker:compileReleaseKotlin'.
> Compilation error. See log for more details

java.lang.NullPointerException when calling pickFullContact()

Hi there,

Thanks for this great plug-in. I am using this plug in with my flutter app. When I am calling pickFullContact then I am getting the following exception:

DE/AndroidRuntime(28970): at io.flutter.embedding.engine.FlutterEnginePluginRegistry.onActivityResult(FlutterEnginePluginRegistry.java:378)
E/AndroidRuntime(28970): at io.flutter.embedding.android.FlutterActivityAndFragmentDelegate.onActivityResult(FlutterActivityAndFragmentDelegate.java:625)
E/AndroidRuntime(28970): at io.flutter.embedding.android.FlutterActivity.onActivityResult(FlutterActivity.java:583)
E/AndroidRuntime(28970): at android.app.Activity.dispatchActivityResult(Activity.java:8301)
E/AndroidRuntime(28970): at android.app.ActivityThread.deliverResults(ActivityThread.java:4839)
E/AndroidRuntime(28970): ... 11 more
I/Process (28970): Sending signal. PID: 28970 SIG: 9

And then the application hard crash. Not sure what I am doing wrong here. I am having Android 10 Nokia device.

Can you please help?

Thanks,
Binoy

Cast exception when import contact

I got this cast error when import contact:
Unhandled Exception: type 'Future<Map<dynamic, dynamic>?>' is not a subtype of type 'FutureOr<Map<dynamic, dynamic>>' in type cast
[ ] E/flutter ( 5697): #0 MethodChannelContactPicker.pickPhoneContact (package:contact_picker_platform_interface/src/method_channel_contact_picker.dart:17:11)
[ ] E/flutter ( 5697): #1 FlutterContactPicker.pickPhoneContact (package:fluttercontactpicker/src/interface.dart:29:12)

It cause by this code:

Future<FullContact> pickFullContact({bool askForPermission = true}) async => FullContact.fromMap((await (_channel.invokeMethod<Map<dynamic, dynamic>>( 'pickContact', {'askForPermission': askForPermission}) as FutureOr<Map<dynamic, dynamic>>)));

java.lang.IllegalStateException

java.lang.RuntimeException:Failure delivering result ResultInfo{who=null, request=2015, result=-1, data=Intent { dat=content://com.android.contacts/contacts/lookup/2368id8aa0058db56238/100 flg=0x1 }} to activity {..xxx.MainActivity}: java.lang.IllegalStateException: Couldn't read row 0, col -1 from CursorWindow. Make sure the Cursor is initialized correctly before accessing data from it.

android.app.ActivityThread.deliverResults(ActivityThread.java:4583)

......

Caused by:

java.lang.IllegalStateException:Couldn't read row 0, col -1 from CursorWindow. Make sure the Cursor is initialized correctly before accessing data from it.

android.database.CursorWindow.nativeGetString(Native Method)

android.database.CursorWindow.getString(CursorWindow.java:465)

android.database.AbstractWindowedCursor.getString(AbstractWindowedCursor.java:51)

android.database.CursorWrapper.getString(CursorWrapper.java:137)

me.schlaubi.fluttercontactpicker.I1I.Lil(ContactPicker.kt:1)

me.schlaubi.fluttercontactpicker.I1I.I丨L(ContactPicker.kt:1)

me.schlaubi.fluttercontactpicker.I1I$I1I.ILil(ContactPicker.kt:1)

me.schlaubi.fluttercontactpicker.I1I$I1I.invoke(ContactPicker.kt:1)

me.schlaubi.fluttercontactpicker.I1I$iI丨LLL1.IL1Iii(ContactPicker.kt:1)

me.schlaubi.fluttercontactpicker.I1I$iI丨LLL1.invoke(ContactPicker.kt:1)

me.schlaubi.fluttercontactpicker.I1I$l丨Li1LL.IL1Iii(ContactPicker.kt:4)

me.schlaubi.fluttercontactpicker.I1I$l丨Li1LL.invoke(ContactPicker.kt:1)

me.schlaubi.fluttercontactpicker.I1I.llliI(ContactPicker.kt:4)

me.schlaubi.fluttercontactpicker.I1I.丨lL(ContactPicker.kt:1)

me.schlaubi.fluttercontactpicker.I1I.I11L(ContactPicker.kt:2)

me.schlaubi.fluttercontactpicker.I1I.onActivityResult(ContactPicker.kt:3)

me.schlaubi.fluttercontactpicker.ILil.onActivityResult(AbstractPickContext.kt:4)

io.flutter.embedding.engine.FlutterEngineConnectionRegistry$FlutterEngineActivityPluginBinding.onActivityResult(FlutterEngineConnectionRegistry.java:2)

io.flutter.embedding.engine.FlutterEngineConnectionRegistry.onActivityResult(FlutterEngineConnectionRegistry.java:4)

io.flutter.embedding.android.FlutterActivityAndFragmentDelegate.onActivityResult(FlutterActivityAndFragmentDelegate.java:4)

io.flutter.embedding.android.FlutterActivity.onActivityResult(FlutterActivity.java:2)

android.app.Activity.dispatchActivityResult(Activity.java:8946)

android.app.ActivityThread.deliverResults(ActivityThread.java:4576)

android.app.ActivityThread.handleSendResult(ActivityThread.java:4625)

android.app.servertransaction.ActivityResultItem.execute(ActivityResultItem.java:49)

android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:108)

android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:68)

android.app.ActivityThread$H.handleMessage(ActivityThread.java:1892)

android.os.Handler.dispatchMessage(Handler.java:106)

android.os.Looper.loop(Looper.java:192)

android.app.ActivityThread.main(ActivityThread.java:7163)

java.lang.reflect.Method.invoke(Native Method)

com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:504)

com.android.internal.os.ZygoteInit.main(ZygoteInit.java:858)

Kotlin Experimental Feature Issue

Hello, thanks for the time taken to make this amazing library.

However, I couldn't get it to work.

This is what I keep getting:

e: C:\flutter\.pub-cache\hosted\pub.dartlang.org\fluttercontactpicker-4.5.0\android\src\main\kotlin\me\schlaubi\fluttercontactpicker\ContactPicker.kt: (22, 115): This declaration is experimental and its usage must be marked with '@kotlin.ExperimentalStdlibApi' or '@OptIn(kotlin.ExperimentalStdlibApi::class)'

I always fail to run with an error description in the flutter contact picker

This problem only exists when I run it on Android, for iOS there is no problem, I run it smoothly.
This is an error display when I try to run it :

e: /Users/yohanescatur/Documents/Development/flutter/.pub-cache/hosted/pub.dartlang.org/fluttercontactpicker-4.2.1/android/src/main/kotlin/me/schlaubi/fluttercontactpicker/ContactPicker.kt: (52, 280): Unresolved reference: stackTraceToString

FAILURE: Build failed with an exception.

  • What went wrong:
    Execution failed for task ':fluttercontactpicker:compileDebugKotlin'.

Compilation error. See log for more details

  • 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 28s
Exception: Gradle task assembleDebug failed with exit code 1
Exited (sigterm)

can you help me find this problem?

flutter build apk --flavor development --target lib/main_development.dart

FAILURE: Build failed with an exception.

  • What went wrong:
    A problem occurred configuring project ':fluttercontactpicker'.

Could not create an instance of type com.android.build.api.variant.impl.LibraryVariantBuilderImpl.
Namespace not specified. Specify a namespace in the module's build file. See https://d.android.com/r/tools/upgrade-assistant/set-namespace for information about setting the namespace.

 If you've specified the package attribute in the source AndroidManifest.xml, you can use the AGP Upgrade Assistant to migrate to the namespace value in the build file. Refer to https://d.android.com/r/tools/upgrade-assistant/agp-upgrade-assistant for general information about using the AGP Upgrade Assistant.
  • 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 1m 54s

Null check operator used on a null value

Used the below line of code to pick a phone contact.

PhoneContact _contact = await FlutterContactPicker.pickPhoneContact();

If it is cancelled it throws an error "Null check operator used on a null value".
I can't even check for null too.
Please fix.

这是啥原因

Compiler message:
../lib/fluttercontactpicker.dart:209:88: Error: The getter 'nicktName' isn't defined for the class 'StructuredName'.

  • 'StructuredName' is from 'package:fluttercontactpicker/fluttercontactpicker.dart' ('../lib/fluttercontactpicker.dart').
    Try correcting the name to the name of an existing getter, or defining a getter or field named 'nicktName'.
    return 'StructuredName{firstName: $firstName, middleName: $middleName, nicktName: $nicktName, lastName: $lastName}';

No implementation found error

E/flutter (18603): [ERROR:flutter/lib/ui/ui_dart_state.cc(209)] Unhandled Exception: MissingPluginException(No implementation found for method pickPhoneContact on channel me.schlaubi.contactpicker)
E/flutter (18603): #0 MethodChannel._invokeMethod
package:flutter/…/services/platform_channel.dart:175
E/flutter (18603):
E/flutter (18603): #1 MethodChannelContactPicker._runCancellable (package:contact_picker_platform_interface/src/method_channel_contact_picker.dart:33:23)
E/flutter (18603):
E/flutter (18603): #2 MethodChannelContactPicker.pickPhoneContact (package:contact_picker_platform_interface/src/method_channel_contact_picker.dart:11:29)
E/flutter (18603):
E/flutter (18603):

my phone is xiaominote 10

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.