alann-maulana / flutter_beacon

An hybrid iBeacon scanner and transmitter SDK for Flutter Android and iOS.
Apache License 2.0
117 stars 144 forks source link

Versions problem #26

Closed MapiFer closed 4 years ago

MapiFer commented 4 years ago

Hi, I was working with flutter_beacon: ^0.2.4 without any problem.

I change in my Android/build.gradle file the following: change kotlin_version from 1.2.71 to 1.3.0 change gradle version from 3.2.1 to 3.3.2

now it gives me this message:

Running Gradle task 'assembleDebug'... Note: D:\src\flutter.pub-cache\hosted\pub.dartlang.org\flutter_beacon-0.2.4\android\src\main\java\com\flutterbeacon\FlutterBeaconPlugin.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details.

It is still working but I'm a little concern about this message

alann-maulana commented 4 years ago

Hi @MapiFer

It's not a big deal to solving these warning, for now. As long it can still running without problem 😄I have using this little library for almost all of my projects, dozen of them.

If you found something trouble, error maybe. You can from change dependency from

dependencies:
  flutter_beacon: ^0.2.4 // the latest version

to

dependencies:
  flutter_beacon: 
    git: https://github.com/alann-maulana/flutter_beacon

Somehow I patching some little issue directly to master branch, without publishing to pub server yet. Or if you have some fix to this library, feel free to send me PR.

MapiFer commented 4 years ago

Thanks a lot for your answer. I did continue working even with the warning, I was worry if maybe it could give me problems later.